Archived OpenModelica forums. Posting is disabled.

Alternative forums include GitHub discussions or StackOverflow (make sure to read the Stack Overflow rules; you need to have well-formed questions)


Forgot password? | Forgot username? | Register

Type of rungekutta solver

Type of rungekutta solver

Of which type is the Runge-Kutta solver?

Re: Type of rungekutta solver

Standard order 4

Code:

const int rungekutta_s = 4;

const double rungekutta_b[4] = { 1.0 / 6.0, 1.0 / 3.0, 1.0 / 3.0, 1.0 / 6.0 };
const double rungekutta_c[4] = { 0.0, 0.5, 0.5, 1.0 };

There are 0 guests and 0 other users also viewing this topic