Skip to content

Commit

Permalink
update timestepper comments
Browse files Browse the repository at this point in the history
  • Loading branch information
juliasloan25 committed Nov 25, 2024
1 parent 5462eef commit 1766a48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion experiments/long_runs/soil.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Soil depth: 50 m
# Simulation duration: 365 d
# Timestep: 900 s
# Timestepper: ARS343
# Timestepper: ARS111
# Fixed number of iterations: 1
# Jacobian update: every new timestep
# Atmos forcing update: every 3 hours
Expand Down
6 changes: 3 additions & 3 deletions lib/ClimaLandSimulations/src/utilities/make_timestepper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export make_timestepper
make_timestepper(site_setup_out;
N_spinup_days = 30,
N_days_sim = 30,
timestepper = CTS.ARS343(),
timestepper = CTS.ARS111(),
ode_algo = CTS.IMEXAlgorithm(
timestepper,
CTS.NewtonsMethod(
Expand All @@ -15,8 +15,8 @@ export make_timestepper
)
Define the setup for the simulation timestepper.
The default timestepper (ARS343) is an IMEX ARK algorithm with
3 implicit stages, 4 implicit stages, and 3rd order accuracy.
The default timestepper (ARS111) is an IMEX ARK algorithm with
1 implicit stage, 1 explicit stages, and 1st order accuracy.
Other IMEX timesteppers from ClimaTimeSteppers.jl can be used.
"""
function make_timestepper(
Expand Down

0 comments on commit 1766a48

Please sign in to comment.