Hello everyone,
I am currently using Fastscape to simulate the surface processes of ASPECT, aiming to understand the erosion-deposition processes in orogenic belts. I have a question regarding the model results.
The thickness of the sediment on the surface in ASPECT does not match the thickness of the total_erosion generated by Fastscape. The sediment in ASPECT is noticeably thicker and continuously increasing, which clearly violates the law of conservation of mass.
To figure out if the issue was with the Boundary composition model, I turned off sediment_1&2. However, ASPECT no longer had any sediment-related items, meaning the erosion produced by Fastscape was not reflected in ASPECT.
subsection Boundary composition model
set Model name = function
set Fixed composition boundary indicators = top, bottom
set Allow fixed composition on outflow boundaries = true
subsection Function
set Coordinate system = cartesian
set Variable names = x,y,t
set Function constants = tsed=2e6 # duration of sedimentation switch time intervall
set Function expression = if(y>580e3, t/1e6, 0); \
0; \
0; \
0; \
if(y>580e3 && sign( sin( t/tsed * pi) ) == 1,1,0); \
if(y>580e3 && sign( sin( t/tsed * pi) ) == -1,1,0); \
if(y>580e3 && t==0, 1,0); \
0; \
0; \
0; \
0; \
0; \
0; \
0; \
0; \
0; \
0
end
end
After:
subsection Boundary composition model
set Model name = function
set Fixed composition boundary indicators = top, bottom
set Allow fixed composition on outflow boundaries = true
subsection Function
set Coordinate system = cartesian
set Variable names = x,y,t
set Function constants = tsed=2e6 # duration of sedimentation switch time intervall
set Function expression = 0; \
0; \
0; \
0; \
0; \
0; \
if(y>580e3, 1,0); \
0; \
0; \
0; \
0; \
0; \
0; \
0; \
0; \
0; \
0
end
end
I would like to inquire about the data transfer between Fastscape and ASPECT software. I understand that ASPECT provides conditions such as velocity and elevation to Fastscape. Apart from returning the deformation of the ASPECT grid, will Fastscape also return the thickness of the eroded material and how can I obtain the correct deposition model?
this is my current .prm file:
0316test1.prm (33.4 KB)
Thank you very much for taking your time to read this and for your valuable guidance.![]()
Bests,
Yushun