Last change
on this file since 2236 was
1790,
checked in by jvatant, 7 years ago
|
Update 1D model that hasn't been cleaned since migration from generic
+ remove co2,water, kcm ...
+ added moyzon
Also correct deftank according to r1788
--JVO
|
File size:
1.6 KB
|
Rev | Line | |
---|
[1422] | 1 | MODULE logic_mod |
---|
| 2 | |
---|
| 3 | IMPLICIT NONE |
---|
| 4 | |
---|
[1790] | 5 | LOGICAL purmats ! true if time stepping is purely Matsuno scheme |
---|
| 6 | ! false implies Matsuno-Leapfrog time stepping scheme |
---|
| 7 | LOGICAL forward ! true if during forward phase of Matsuno step |
---|
| 8 | LOGICAL leapf ! true if during a leapfrog time stepping step |
---|
| 9 | LOGICAL apphys ! true if during a time step when physics will be called |
---|
| 10 | LOGICAL statcl |
---|
| 11 | LOGICAL conser |
---|
| 12 | LOGICAL apdiss ! true if during a time step when dissipation will be called |
---|
| 13 | LOGICAL apdelq |
---|
| 14 | LOGICAL saison |
---|
| 15 | LOGICAL ecripar |
---|
| 16 | LOGICAL fxyhypb ! true if using hyperbolic function discretization |
---|
| 17 | ! for latitudinal grid |
---|
| 18 | LOGICAL ysinus ! true if using sine function discretiation |
---|
| 19 | ! for latitudinal grid |
---|
| 20 | LOGICAL read_start ! true if reading a start.nc file to initialize fields |
---|
| 21 | LOGICAL ok_guide ! true if nudging |
---|
| 22 | LOGICAL ok_strato |
---|
| 23 | LOGICAL tidal ! true if adding tidal forces (for Titan) |
---|
| 24 | LOGICAL ok_gradsfile |
---|
| 25 | LOGICAL ok_limit ! true for boundary conditions file creation (limit.nc) |
---|
| 26 | LOGICAL ok_etat0 ! true for initial states creation (start.nc, startphy.nc) |
---|
| 27 | LOGICAL read_orop ! true for sub-cell scales orographic params read in file |
---|
| 28 | LOGICAL hybrid ! vertical coordinate is hybrid if true (sigma otherwise) |
---|
| 29 | ! (only used if disvert_type==2) |
---|
| 30 | LOGICAL autozlevs ! true if auto-discretization of vertical levels |
---|
| 31 | LOGICAL moyzon_mu,moyzon_ch ! used for zonal averages in Titan |
---|
[1422] | 32 | |
---|
[1790] | 33 | INTEGER iflag_phys ! type of physics to call: 0 none, 1: phy*** package, |
---|
| 34 | ! 2: Held & Suarez, 101-200: aquaplanets & terraplanets |
---|
| 35 | INTEGER iflag_trac |
---|
[1422] | 36 | |
---|
| 37 | END MODULE logic_mod |
---|
Note: See
TracBrowser
for help on using the repository browser.