https://github.com/ziaeemehr/ode_solver
ode/sde solver, using boost odeint, scipy, gsl, sde.
https://github.com/ziaeemehr/ode_solver
boost-libraries ode-solver ordinary-differential-equations scipy
Last synced: about 1 month ago
JSON representation
ode/sde solver, using boost odeint, scipy, gsl, sde.
- Host: GitHub
- URL: https://github.com/ziaeemehr/ode_solver
- Owner: Ziaeemehr
- Created: 2019-10-25T15:30:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-10T16:19:58.000Z (about 3 years ago)
- Last Synced: 2025-02-07T13:51:53.929Z (3 months ago)
- Topics: boost-libraries, ode-solver, ordinary-differential-equations, scipy
- Language: C++
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ode_solver
- This repository provide simple examples using ordinary differential equation solvers in python, C/C++.
#### Camparing the results:
|method | time | x0 | x1 |
| :--- | :---: | :---: | :---: |
|intro/euler | 99.990000 |-0.069638927 |0.117734245|
|intro/rk4 | 99.990000 |-0.044473790 |0.070138180|
|scipy.integrate.odeint | 99.990000 | -0.04447404 | 0.07013844|
| boost euler | 99.990000 | -0.070809774 | 0.117084690|
|boost rk4 | 99.990000 | -0.044473790 | 0.070138180|