Skip to content

Commit ccab702

Browse files
Add example for SecondOrderODEProblem
Some consistensy could problably be worked harder on. But this form also needs documentation.
1 parent 5726f30 commit ccab702

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/src/solvers/dynamical_solve.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ These correspond to partitioned equations of motion:
1818
\frac{du}{dt} = f_2(v) \\
1919
```
2020

21+
or, for `SecondOrderODEProblem`,
22+
```math
23+
\frac{d^u}{dt^2} = f(d0,u,p,t)
24+
```
25+
2126
The functions should be specified as `f1(dv,v,u,p,t)` and `f2(du,v,u,p,t)`
2227
(in the inplace form), where `f1` is independent of `v` (unless
2328
specified by the solver), and `f2` is independent of `t` and `u`. This includes

0 commit comments

Comments
 (0)