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

Last change on this file since 1908 was 1897, checked in by jvatant, 7 years ago

Making Titan's hazy again - part II
+ Major updates of J.Burgalat YAMMS library and optical coupling, including :
++ Added the routines for haze optics inside YAMMS
++ Calling rad. transf. with interactive haze is plugged
in but should stay unactive as long as the microphysics is
in test phase : cf "uncoupl_optic_haze" flag : true for now !
++ Also some sanity checks for negative tendencies and
some others upkeep of YAMMS model
+ Also added a temporary CPP key USE_QTEST in physiq_mod
that enables to have microphysical tendencies separated
from dynamics for debugging and test phases
-- JVO and JB

File size: 2.6 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)
[1672]42     
43      integer,save :: ichim
[1795]44!$OMP THREADPRIVATE(ichim)
[1520]45      integer,save :: iddist
46      integer,save :: iradia
47      integer,save :: startype
[1795]48!$OMP THREADPRIVATE(iddist,iradia,startype)
49     
50      real,save :: p_prod, tx_prod, rc_prod
51      real,save :: air_rad
[1897]52!$OMP THREADPRIVATE(p_prod,tx_prod,rc_prod,air_rad)
53     
[1822]54      real,save :: szangle
55!$OMP THREADPRIVATE(szangle)
[1520]56      real,save :: Fat1AU
57      real,save :: stelTbb
[1668]58!$OMP THREADPRIVATE(Fat1AU,stelTbb)
[1520]59      real,save :: pceil
[1647]60!$OMP THREADPRIVATE(pceil)
[1520]61      real,save :: tau_relax
62      real,save :: intheat
[1647]63!$OMP THREADPRIVATE(tau_relax,intheat)
[1520]64      real,save :: flatten
65      real,save :: Rmean
66      real,save :: J2
67      real,save :: MassPlanet
68!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
[1722]69      real,save :: surfalbedo
70      real,save :: surfemis
71!$OMP THREADPRIVATE(surfalbedo,surfemis)
[1397]72
[1520]73      logical,save :: iscallphys=.false.!existence of callphys.def
74!$OMP THREADPRIVATE(iscallphys)
75
[1670]76      ! do we read a startphy.nc file (default=.true.)
77      logical,save :: startphy_file=.true.
78!$OMP THREADPRIVATE(startphy_file)
79
[1397]80END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.