source: LMDZ5/trunk/libf/phylmd/rrtm/tpm_gen.F90 @ 1989

Last change on this file since 1989 was 1989, checked in by Laurent Fairhead, 11 years ago

Inclusion du code RRTM


Adding RRTM code

MPL

File size: 1.0 KB
Line 
1MODULE TPM_GEN
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB
4
5IMPLICIT NONE
6
7SAVE
8
9INTEGER(KIND=JPIM) :: NOUT            ! Unit number for "standard" output
10INTEGER(KIND=JPIM) :: NERR            ! Unit number for error messages
11INTEGER(KIND=JPIM) :: NPRINTLEV       ! Printing level, 0=no print, 1=standard,2=debug
12
13INTEGER(KIND=JPIM) :: MSETUP0 = 0     ! Control of setup calls
14INTEGER(KIND=JPIM) :: NMAX_RESOL = 0  ! Maximum allowed number of resolutions
15INTEGER(KIND=JPIM) :: NCUR_RESOL = 0  ! Current resolution
16INTEGER(KIND=JPIM) :: NDEF_RESOL = 0  ! Number of defined resolutions
17INTEGER(KIND=JPIM) :: NPROMATR        ! Packet size for transform (in no of fields)
18                             ! NPROMATR=0 means do all fields together (dflt)
19
20LOGICAL   :: LALLOPERM       ! Allocate some shared data structures permanently
21LOGICAL   :: LIMP            ! true: use immediate message passing
22LOGICAL   :: LIMP_NOOLAP     ! true: use immediate message passing
23LOGICAL   :: LMPOFF          ! true: switch off message passing
24
25END MODULE TPM_GEN
Note: See TracBrowser for help on using the repository browser.