euler Module Procedure

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

Euler (1st order) integration method.

Arguments

Type IntentOptional Attributes Name
class(euler_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~~euler~~CallsGraph proc~euler rklib_fixed_steps::euler f f proc~euler->f funcs funcs proc~euler->funcs