-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
@namespace: integrator | ||
|
||
# do we do the 2nd or 4th order version of the ROCK integrator | ||
rock_order integer 2 | ||
|
||
# do we scale the ODE system we integrate to make it O(1)? | ||
# for Strang, this simply means scaling e by the initial energy? | ||
scale_system integer 1 100 | ||
|
||
# use the Gershgorin circle theorem to estimate the spectral radius? | ||
# note: requires integrator.scale_system = 1 | ||
use_circle_theorem integer 0 | ||
use_circle_theorem integer 1 |