source: trunk/LMDZ.TITAN/libf/phytitan/callkeys_mod.F90 @ 1966

Last change on this file since 1966 was 1947, checked in by jvatant, 7 years ago

Enables altitude-depending gravity field g(z) (glat->gzlat) in physics
+ Can be dangerous ( disagreement with dyn) but important (compulsive !) to have correct altitudes in the chemistry
+ Can be activated with eff_gz flag in callphys.def
-- JVO

File size: 2.7 KB
Line 
1MODULE callkeys_mod
2IMPLICIT NONE 
3
4      logical,save :: callrad,corrk,calldifv,UseTurbDiff
5!$OMP THREADPRIVATE(callrad,corrk,calldifv,UseTurbDiff)
6      logical,save :: calladj,callsoil
7!$OMP THREADPRIVATE(calladj,callsoil)
8      logical,save :: season,diurnal,tlocked,rings_shadow,lwrite
9!$OMP THREADPRIVATE(season,diurnal,tlocked,rings_shadow,lwrite)
10      logical,save :: callstats,calleofdump
11!$OMP THREADPRIVATE(callstats,calleofdump)
12      logical,save :: callgasvis,continuum,graybody
13!$OMP THREADPRIVATE(callgasvis,continuum,graybody)
14      logical,save :: strictboundcorrk
15!$OMP THREADPRIVATE(strictboundcorrk)
16      logical,save :: uncoupl_optic_haze
17!$OMP THREADPRIVATE(uncoupl_optic_haze)
18
19      logical,save :: callchim, callmufi, callclouds
20!$OMP THREADPRIVATE(callchim,callmufi,callclouds)
21      logical,save :: global1d
22!$OMP THREADPRIVATE(global1d)
23      logical,save :: enertest
24      logical,save :: nonideal
25      logical,save :: meanOLR
26      logical,save :: specOLR
27!$OMP THREADPRIVATE(enertest,nonideal,meanOLR)
28      logical,save :: newtonian
29      logical,save :: check_cpp_match
30      logical,save :: force_cpp
31      logical,save :: testradtimes
32      logical,save :: rayleigh
33!$OMP THREADPRIVATE(newtonian,check_cpp_match,force_cpp,testradtimes,rayleigh)
34      logical,save :: stelbbody
35      logical,save :: ozone
36      logical,save :: tracer
37      logical,save :: mass_redistrib
38!$OMP THREADPRIVATE(stelbbody,ozone,tracer,mass_redistrib)
39      logical,save :: nosurf
40      logical,save :: oblate
41!$OMP THREADPRIVATE(nosurf,oblate)
42      logical,save :: eff_gz
43!$OMP THREADPRIVATE(eff_gz)
44     
45      integer,save :: ichim
46!$OMP THREADPRIVATE(ichim)
47      integer,save :: iddist
48      integer,save :: iradia
49      integer,save :: startype
50!$OMP THREADPRIVATE(iddist,iradia,startype)
51     
52      real,save :: p_prod, tx_prod, rc_prod
53      real,save :: air_rad
54!$OMP THREADPRIVATE(p_prod,tx_prod,rc_prod,air_rad)
55     
56      real,save :: szangle
57!$OMP THREADPRIVATE(szangle)
58      real,save :: Fat1AU
59      real,save :: stelTbb
60!$OMP THREADPRIVATE(Fat1AU,stelTbb)
61      real,save :: pceil
62!$OMP THREADPRIVATE(pceil)
63      real,save :: tau_relax
64      real,save :: intheat
65!$OMP THREADPRIVATE(tau_relax,intheat)
66      real,save :: flatten
67      real,save :: Rmean
68      real,save :: J2
69      real,save :: MassPlanet
70!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
71      real,save :: surfalbedo
72      real,save :: surfemis
73!$OMP THREADPRIVATE(surfalbedo,surfemis)
74
75      logical,save :: iscallphys=.false.!existence of callphys.def
76!$OMP THREADPRIVATE(iscallphys)
77
78      ! do we read a startphy.nc file (default=.true.)
79      logical,save :: startphy_file=.true.
80!$OMP THREADPRIVATE(startphy_file)
81
82END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.