source: CPL/oasis3/trunk/src/mod/oasis3/src/mod_timestep.F90 @ 1677

Last change on this file since 1677 was 1677, checked in by aclsce, 12 years ago

Imported oasis3 (tag ipslcm5a) from cvs server to svn server (igcmg project).

File size: 1.1 KB
Line 
1MODULE mod_timestep
2!
3! -- timestep.h   29-08-95   Version 2.0beta   Author: Laurent Terray
4!    **********   01-02-96   Version 2.0 : addition of nitfn (L. Terray)
5!                 18-03-02   Version 2.5   changed in module
6!@
7!@  Contents : variables controlling timestepping
8!@  --------
9!@
10!@   OASIS information :
11!@   -----------------
12!@
13!@ -- ntime : total simulated time (in seconds)
14!@
15!@ -- niter : number of iterations
16!@
17!@ -- nitfn : last iteration number
18!@
19!@ -- nstep : timestep value (in seconds)
20!@
21!@   Remote models information :
22!@   -------------------------
23!@
24!@ -- mstep : number of time steps (1D)
25!@
26!@ -- mfcpl : frequency of coupling in timesteps (1D)
27!@
28!@ -- mdt   : length of timesteps in seconds (1D)
29!@
30!     -------------------------------------------------------------------
31!
32  USE mod_kinds_oasis
33  INTEGER (kind=ip_intwp_p) :: ntime, niter, nitfn, nstep
34  INTEGER (kind=ip_intwp_p), DIMENSION(:), ALLOCATABLE :: mstep, mfcpl, mdt
35!
36!     -------------------------------------------------------------------
37!
38END MODULE mod_timestep
39
40
41
Note: See TracBrowser for help on using the repository browser.