source: trunk/LMDZ.VENUS/libf/phyvenus/tabcontrol.F90 @ 3884

Last change on this file since 3884 was 3875, checked in by emillour, 4 months ago

Venus PCM:
Code tidying: get rid of common in tabcontrol.h; turn it into a module.
EM

File size: 577 bytes
Line 
1MODULE tabcontrol_mod
2
3! stores some formation about run parameters
4
5IMPLICIT NONE
6
7INTEGER,SAVE :: radpas ! rate of computation of radiative transfert, in physics steps
8!$OMP THREADPRIVATE(radpas)
9
10INTEGER,SAVE :: chimpas ! rate of computation of chemistry, in physics steps
11!$OMP THREADPRIVATE(chimpas)
12
13REAL,SAVE :: dtime  ! time step of the physics (s)
14!$OMP THREADPRIVATE(dtime)
15
16! the "controle" array, used to store information in the restartphy file
17INTEGER,PARAMETER :: length=100
18REAL,SAVE :: tabcntr0(length)
19!$OMP THREADPRIVATE(tabcntr0)
20
21END MODULE tabcontrol_mod
Note: See TracBrowser for help on using the repository browser.