Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation for Rodas23W and Rodas3P #720

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/src/solvers/ode_solve.md
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,9 @@ to be thread safe. It parallelizes the `nlsolve` calls inside the method.
- `ROS3P` - 3rd order A-stable and stiffly stable Rosenbrock method. Keeps high
accuracy on discretizations of nonlinear parabolic PDEs.
- `Rodas3` - 3rd order A-stable and stiffly stable Rosenbrock method.
- `Rodas3P` - 3rd order A-stable and stiffly stable Rosenbrock method with a
stiff-aware 3rd order interpolant and additional error test for interpolation.
Keeps accuracy on discretizations of linear parabolic PDEs.
- `RosShamp4`- An A-stable 4th order Rosenbrock method.
- `Veldd4` - A 4th order D-stable Rosenbrock method.
- `Velds4` - A 4th order A-stable Rosenbrock method.
Expand Down Expand Up @@ -557,6 +560,9 @@ to be thread safe. It parallelizes the `nlsolve` calls inside the method.
stiff equations without oscillations at low tolerances. Note that this method
is prone to instability in the presence of oscillations, so use with caution.
2nd order stiff-aware interpolation.
- `Rodas23W` - An Order 2/3 L-Stable Rosenbrock-W method for stiff ODEs and DAEs
in mass matrix form. 2nd order stiff-aware interpolation and additional error
test for interpolation.
- `RosenbrockW6S4OS` - A 4th order L-stable Rosenbrock-W method (fixed step only).
- `ROS34PW1a` - A 4th order L-stable Rosenbrock-W method.
- `ROS34PW1b` - A 4th order L-stable Rosenbrock-W method.
Expand Down
Loading