Skip to content

smirko-dev/ode-solver

Repository files navigation

Ordinary Differential Equations Solver

languages version Build Actions Status

Description

The ode header only template library comes with the following implementations:

How to build

git clone git@github.com:smirko-dev/ode-solver.git
cmake -B build -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 16 2019"
cmake --build build --config Release

Examples

Calculate Lorenz attractor by using Runge Kutta algorithm.

With the Lennard Jones Potential the movements of molecules in a system can be calculated. This ODE 2nd order can be solved by using the Velocity Verlet algorithm.

With the Newton's law of universal gravitation planet movement can be calculated. This ODE 1st order can be solved by using the Runge Kutta algorithm.