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