1 | MODULE YOMSIMPHL |
---|
2 | |
---|
3 | USE PARKIND1 ,ONLY : JPIM ,JPRB |
---|
4 | |
---|
5 | IMPLICIT NONE |
---|
6 | |
---|
7 | SAVE |
---|
8 | |
---|
9 | ! ----------------------------------------------------------------- |
---|
10 | |
---|
11 | !* with logical switches for simplified physical |
---|
12 | ! parametrization |
---|
13 | |
---|
14 | ! LSIMPH : switch for simplified physical parametrization |
---|
15 | ! LTRAJPS : switch for write out and read the trajectory at |
---|
16 | ! t-dt for simplified physical computations in file |
---|
17 | ! LTRAJPST : switch for write out and read the trajectory at |
---|
18 | ! t-dt for fluxes and tendencies in file |
---|
19 | ! LSMOOTHD : smoothing some functions in direct computation |
---|
20 | ! LSMOOTHA : smoothing some functions in TL and AD computations |
---|
21 | ! LSMOOTHB : modifications in simplified physical parametrizations |
---|
22 | ! to stabilize the TL and AD codes |
---|
23 | |
---|
24 | ! LCVRASP : key for calling deep convection of simplified |
---|
25 | ! phys. parametrization (ACCONV) |
---|
26 | ! LGWDSP : key for calling the gravity wave drag of simpl. |
---|
27 | ! phys. parametrization (ACDRAGL) |
---|
28 | ! LRAYSP : key for calling radiation scheme of simplified |
---|
29 | ! phys. parametrization (ACRADS) |
---|
30 | ! LSTRASP : key for calling stratiform precipitation of simpl. |
---|
31 | ! phys. parametrization (ACQWLSR) |
---|
32 | ! LVDIFSP : key for calling the vertical turbulent diffusion |
---|
33 | ! of simpl. phys. param. (ACTSEC,ACDIFSP) |
---|
34 | ! LRRMESSP : key for calling the mesospheric drag |
---|
35 | ! of simpl. phys. param. (ACDRME) |
---|
36 | ! LCLOUDS : key for cloud parametrization |
---|
37 | |
---|
38 | LOGICAL :: LSIMPH |
---|
39 | LOGICAL :: LTRAJPS |
---|
40 | LOGICAL :: LTRAJPST |
---|
41 | LOGICAL :: LSMOOTHD |
---|
42 | LOGICAL :: LSMOOTHA |
---|
43 | LOGICAL :: LSMOOTHB |
---|
44 | LOGICAL :: LCVRASP |
---|
45 | LOGICAL :: LGWDSP |
---|
46 | LOGICAL :: LRAYSP |
---|
47 | LOGICAL :: LSTRASP |
---|
48 | LOGICAL :: LVDIFSP |
---|
49 | LOGICAL :: LRRMESSP |
---|
50 | LOGICAL :: LCLOUDS |
---|
51 | |
---|
52 | ! ---------------------------------------------------------------- |
---|
53 | !$OMP THREADPRIVATE(lclouds,lcvrasp,lgwdsp,lraysp,lrrmessp,lsimph,lsmootha,lsmoothb,lsmoothd,lstrasp) |
---|
54 | !$OMP THREADPRIVATE(ltrajps,ltrajpst,lvdifsp) |
---|
55 | END MODULE YOMSIMPHL |
---|