Hello,
I am currently studying the tutorial on Prescribing Velocities from Global Convection Models as Boundary Conditions in Regional Models — ASPECT 3.1.0-pre. and I have a question regarding time-dependent boundary velocity input.
Actually, I have already successfully run the example model. The regional_velocity_files
directory contains four files (e.g., chunk_3d_east.0.txt
), which appear to provide velocity data only for the initial time step (t = 0
).
subsection Boundary velocity model
set Tangential velocity boundary indicators = outer
set Prescribed velocity boundary indicators = south:ascii data, west:ascii data, east:ascii data, north:ascii data
subsection Ascii data model
set Data directory = $ASPECT_SOURCE_DIR/contrib/python/scripts/regional_velocity_files/
set Data file name = chunk_3d_%s.%d.txt
end
end
My question is: How can I extend this setup to provide time-varying boundary velocities over the full duration of a long simulation (e.g., end time = 200e3 years)?
Specifically:
-
Should I generate multiple data files with different time step indices (e.g.,
chunk_3d_east.0.txt
,chunk_3d_east.1.txt
, etc.)? -
Or, could I instead use a single file (e.g., rename
chunk_3d_east.0.txt
tochunk_3d_east.txt
)
Any help is appreciated.
Thanks,
Haolin