ode-toolbox

ODE integration tools
git clone https://git.0xfab.ch/ode-toolbox.git
Log | Files | Refs | README | LICENSE

README (420B)


      1 # ODE integrators
      2 
      3 Explicit Runge-Kutta (RK) integrators.
      4 
      5 Implemented schemes:
      6 
      7 * Forward Euler
      8 * Low-storage RK3
      9 * Classical RK4
     10 * RKF45 (variable step)
     11 * RKV56 (variable step)
     12 
     13 
     14 # Build and install
     15 
     16 The `meson` build system is required (https://mesonbuild.com/).
     17 
     18 ```bash
     19 meson setup build --buildtype release --prefix /usr/local -Dtest=true
     20 meson compile -C build
     21 meson test -C build
     22 sudo meson install -C build
     23 ```