A Modular Arbitrary-Order Ocean-Atmosphere Model -- Stochastic implementation
Modules | Functions/Subroutines | Variables
rk2_integrator.f90 File Reference

Go to the source code of this file.

Modules

module  integrator
 Module with the integration routines.
 

Functions/Subroutines

subroutine, public integrator::init_integrator
 Routine to initialise the integration buffers. More...
 
subroutine integrator::tendencies (t, y, res)
 Routine computing the tendencies of the model. More...
 
subroutine, public integrator::step (y, t, dt, res)
 Routine to perform an integration step (Heun algorithm). The incremented time is returned. More...
 

Variables

real(kind=8), dimension(:), allocatable integrator::buf_y1
 Buffer to hold the intermediate position (Heun algorithm) More...
 
real(kind=8), dimension(:), allocatable integrator::buf_f0
 Buffer to hold tendencies at the initial position. More...
 
real(kind=8), dimension(:), allocatable integrator::buf_f1
 Buffer to hold tendencies at the intermediate position. More...