An open API service indexing awesome lists of open source software.

https://github.com/mkierzenka/Racket_NumericalMethods

A collection of Numerical Methods implemented in Racket. Includes Root Finders, ODE Solvers, Linear System Solvers, etc. as well as Applications/Demos.
https://github.com/mkierzenka/Racket_NumericalMethods

3bodyproblem continued-fractions differential-equations linear-system-solver methods newtons-method numerical numerical-integration ode ode-solver pi racket racket-numericalmethods runge-kutta runge-kutta-4 runge-kutta-adaptive-step-size runge-kutta-methods

Last synced: 16 days ago
JSON representation

A collection of Numerical Methods implemented in Racket. Includes Root Finders, ODE Solvers, Linear System Solvers, etc. as well as Applications/Demos.

Awesome Lists containing this project

README

          

# Racket_NumericalMethods
A collection of Numerical Methods implemented in Racket. Includes Root Finders, ODE Solvers, Linear System Solvers, Polynomial Interpolation, etc. as well as Applications/Demos.
The different methods are mostly split into individual files.

The "Experimenting" files include demos to show the different methods through examples.

Restricted_3_Body.rkt has a few examples of Restricted Three Body Problems. These are designed to test Numerical ODE's, since each set of initial conditions is calculated to a very high accuracy to be precisely periodic (returns to start). Thus, one may look at the solutions from particular ODE solvers and compare their accuracy based on how close they return to the start.