Skip to content

Commit

Permalink
Added time stepping variants for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
nagelt authored and endJunction committed Jul 20, 2023
1 parent 2fff18b commit 3018ea1
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<OpenGeoSysProjectDiff base_file="model_triaxial_test.prj">
<remove sel="/*/time_loop/processes/process/time_stepping"/>
<add sel="/*/time_loop/processes/process/time_discretization" pos="after">
<time_stepping>
<type>IterationNumberBasedTimeStepping</type>
<t_initial>0</t_initial>
<t_end>0.34</t_end>
<initial_dt>1e-4</initial_dt>
<minimum_dt>1.e-6</minimum_dt>
<maximum_dt>1.e-2</maximum_dt>
<number_iterations>1 5 10 15</number_iterations>
<multiplier>1.2 1.05 0.8 0.6</multiplier>
</time_stepping>
</add>
</OpenGeoSysProjectDiff>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<OpenGeoSysProjectDiff base_file="model_triaxial_test.prj">
<remove sel="/*/time_loop/processes/process/time_stepping"/>
<add sel="/*/time_loop/processes/process/time_discretization" pos="after">
<time_stepping>
<type>FixedTimeStepping</type>
<t_initial>0</t_initial>
<t_end>0.34</t_end>
<timesteps>
<pair>
<repeat>1000</repeat>
<delta_t>1e-4</delta_t>
</pair>
</timesteps>
</time_stepping>
</add>
</OpenGeoSysProjectDiff>

0 comments on commit 3018ea1

Please sign in to comment.