You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+105-1Lines changed: 105 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,8 +48,112 @@ end program
48
48
```text
49
49
The solution is: 789.97089E-03, the integrator computed: 789.97089E-03.
50
50
```
51
-
52
51
## Example 2
52
+
The following example illustrates solution of the Van Der Pol equation comparing two different integrators, an implicit Runge-Kutta integrator (ODE_IRK) and an integrator that automatically switches between an Adams method and a BDF method (ODE_AUTO).
The following example illustrates how to compute the solution to a system of ODEs modeling the bouncing of a ball. The example also utilizes the [FPLOT](https://github.com/jchristopherson/fplot) library in order to plot the solution.
0 commit comments