Skip to content

gdetor/CRKMethods

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CRKMethods

CRKMEthods provides some of the most used Runge-Kutta methods in the C Programming Language. The algorithms that have been implemented as one-step are:

  • Forward Euler
  • RK4
  • RK4 refined
  • RK - Fehlberg

More information about those solvers can be found on Runge-Kutta's Wikipedia web-page and Fehlberg's wikipedia webpage.

Numerical precision

The user can define the numerical precision from the solver.h file. They can define the macro REAL to either float or double.

Compile an example

The given example can be compiled from the parent directory by executing the following command:

$ gcc -I./include src/solvers.c src/main.c

About

A C-implementation of several Runge-Kutta methods

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages