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
RevLine 
[1397]1MODULE callkeys_mod
2IMPLICIT NONE 
3
[1520]4      logical,save :: callrad,corrk,calldifv,UseTurbDiff
5!$OMP THREADPRIVATE(callrad,corrk,calldifv,UseTurbDiff)
[1795]6      logical,save :: calladj,callsoil
7!$OMP THREADPRIVATE(calladj,callsoil)
[1520]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)
[1647]12      logical,save :: callgasvis,continuum,graybody
13!$OMP THREADPRIVATE(callgasvis,continuum,graybody)
[1897]14      logical,save :: strictboundcorrk
[1520]15!$OMP THREADPRIVATE(strictboundcorrk)
[1897]16      logical,save :: uncoupl_optic_haze
17!$OMP THREADPRIVATE(uncoupl_optic_haze)
18
[1795]19      logical,save :: callchim, callmufi, callclouds
20!$OMP THREADPRIVATE(callchim,callmufi,callclouds)
[1822]21      logical,save :: global1d
22!$OMP THREADPRIVATE(global1d)
[1520]23      logical,save :: enertest
24      logical,save :: nonideal
25      logical,save :: meanOLR
26      logical,save :: specOLR
[1647]27!$OMP THREADPRIVATE(enertest,nonideal,meanOLR)
[1520]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
[1647]38!$OMP THREADPRIVATE(stelbbody,ozone,tracer,mass_redistrib)
[1520]39      logical,save :: nosurf
40      logical,save :: oblate
[1647]41!$OMP THREADPRIVATE(nosurf,oblate)
[1947]42      logical,save :: eff_gz
43!$OMP THREADPRIVATE(eff_gz)
[1672]44     
45      integer,save :: ichim
[1795]46!$OMP THREADPRIVATE(ichim)
[1520]47      integer,save :: iddist
48      integer,save :: iradia
49      integer,save :: startype
[1795]50!$OMP THREADPRIVATE(iddist,iradia,startype)
51     
52      real,save :: p_prod, tx_prod, rc_prod
53      real,save :: air_rad
[1897]54!$OMP THREADPRIVATE(p_prod,tx_prod,rc_prod,air_rad)
55     
[1822]56      real,save :: szangle
57!$OMP THREADPRIVATE(szangle)
[1520]58      real,save :: Fat1AU
59      real,save :: stelTbb
[1668]60!$OMP THREADPRIVATE(Fat1AU,stelTbb)
[1520]61      real,save :: pceil
[1647]62!$OMP THREADPRIVATE(pceil)
[1520]63      real,save :: tau_relax
64      real,save :: intheat
[1647]65!$OMP THREADPRIVATE(tau_relax,intheat)
[1520]66      real,save :: flatten
67      real,save :: Rmean
68      real,save :: J2
69      real,save :: MassPlanet
70!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
[1722]71      real,save :: surfalbedo
72      real,save :: surfemis
73!$OMP THREADPRIVATE(surfalbedo,surfemis)
[1397]74
[1520]75      logical,save :: iscallphys=.false.!existence of callphys.def
76!$OMP THREADPRIVATE(iscallphys)
77
[1670]78      ! do we read a startphy.nc file (default=.true.)
79      logical,save :: startphy_file=.true.
80!$OMP THREADPRIVATE(startphy_file)
81
[1397]82END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.