rk3 Module Procedure

module procedure rk3 module subroutine rk3(me, t, x, h, xf)

3rd order, 3 steps RK integration method

Arguments

Type IntentOptional Attributes Name
class(rk3_class), intent(inout) :: me
real(kind=wp), intent(in) :: t

initial time

real(kind=wp), intent(in), dimension(me%n) :: x

initial state

real(kind=wp), intent(in) :: h

time step

real(kind=wp), intent(out), dimension(me%n) :: xf

state at time t+h


Calls

proc~~rk3~~CallsGraph proc~rk3 rklib_fixed_steps::rk3 f f proc~rk3->f funcs funcs proc~rk3->funcs