LMDZ
yomct3.F90
Go to the documentation of this file.
1 MODULE yomct3
2 
3 USE parkind1 ,ONLY : jpim ,jprb
4 
5 IMPLICIT NONE
6 
7 SAVE
8 
9 ! ------------------------------------------------------------------
10 
11 !* Control variables for the model (changed at level 3)
12 
13 ! NSTEP : current timestep of model
14 ! LGPQINSP : .TRUE. if grid-point Q initialized from spectral field
15 ! LSPC_FROM_DI: T (resp. F) if SPCH is called from STEPO (resp. STEPOTL).
16 ! LRECALL_SUHDF_IN_CNT4: T if SUHDF must be called again in CNT4.
17 
18 INTEGER(KIND=JPIM) :: nstep
19 LOGICAL :: lgpqinsp
20 LOGICAL :: lspc_from_di
22 
23 ! ------------------------------------------------------------------
24 !$OMP THREADPRIVATE(lgpqinsp,lrecall_suhdf_in_cnt4,lspc_from_di,nstep)
25 END MODULE yomct3
logical lgpqinsp
Definition: yomct3.F90:19
integer, parameter jprb
Definition: parkind1.F90:31
logical lrecall_suhdf_in_cnt4
Definition: yomct3.F90:21
integer(kind=jpim) nstep
Definition: yomct3.F90:18
integer, parameter jpim
Definition: parkind1.F90:13
logical lspc_from_di
Definition: yomct3.F90:20
Definition: yomct3.F90:1