By default, the following explicit Runge-Kutta methods are provided:
Eul-Exp
: Explicit Euler,Richard
: Explicit Euler with Richardson extrapolation,RK-S 23
: Simpson rule (Runge-Kutta 2/3),RK-BS23
: Bogacki-Shampine (Runge-Kutta 2/3),RK-F 45
: Runge-Kutta-Fehlberg (4/5),RK-CK45
: Cash-Karp (Runge Kutta 4/5), andRK-DP45
: Dormand-Prince (Runge Kutta 4/5)
To select an integration scheme, edit the line
character(len=7), parameter :: setting_solver_default = 'Eul-Exp'
in the module
General_Settings
of the xMat. Replace
Eul-Exp
with the identifier of the integration method of your choice.