Skip to content

slrodini/runge-kutta

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Runge Kutta

This is a small collection of a general solver for the Runge Kutta algorithm in different languages. For the moment, only C/C++ are implemented, with typically the C++ being the first updated with new features. The utility of this solver is that is agnostic about the actual structure of the Solution. It can be any structure that the user wishes, with the only constraint of providing some basics operations for it (which are needed by algorithm itself).

The main aim is didactical. However, some care went into the design of the interface, which can be used reliably for a number of problems. At the moment, the algorithm as they are implemented suffer from some limitations (how severe they are, really depends on what you want from this implementations):

  1. Implicit methods are not supported (will probably never change in the future)
  2. Constrained evolution is not supported (if I will implement this, will be only for the case of a vector-like solution, so it will not be terribly general, but it will be probably good enough for most applications)

Implicit methods I will never support because they require a bit too much work to be set up reliably.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors