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

Last change on this file since 1892 was 1822, checked in by jvatant, 8 years ago

Preliminary modifs for the optical coupling of haze
+ Moved inits of setspi/v before init of mufi
+ Added access to tarcers in optci/v
+ Some coherence in call to directories
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 :: callchim, callmufi, callclouds
17!$OMP THREADPRIVATE(callchim,callmufi,callclouds)
18      logical,save :: global1d
19!$OMP THREADPRIVATE(global1d)
20      logical,save :: enertest
21      logical,save :: nonideal
22      logical,save :: meanOLR
23      logical,save :: specOLR
24!$OMP THREADPRIVATE(enertest,nonideal,meanOLR)
25      logical,save :: newtonian
26      logical,save :: check_cpp_match
27      logical,save :: force_cpp
28      logical,save :: testradtimes
29      logical,save :: rayleigh
30!$OMP THREADPRIVATE(newtonian,check_cpp_match,force_cpp,testradtimes,rayleigh)
31      logical,save :: stelbbody
32      logical,save :: ozone
33      logical,save :: tracer
34      logical,save :: mass_redistrib
35!$OMP THREADPRIVATE(stelbbody,ozone,tracer,mass_redistrib)
36      logical,save :: nosurf
37      logical,save :: oblate
38!$OMP THREADPRIVATE(nosurf,oblate)
39     
40      integer,save :: ichim
41!$OMP THREADPRIVATE(ichim)
42      integer,save :: iddist
43      integer,save :: iradia
44      integer,save :: startype
45!$OMP THREADPRIVATE(iddist,iradia,startype)
46     
47      real,save :: df_mufi, rm_mufi, rho_aer_mufi
48      real,save :: p_prod, tx_prod, rc_prod
49      real,save :: air_rad
50!$OMP THREADPRIVATE(df_mufi, rm_mufi, rho_aer_mufi,p_prod,tx_prod,rc_prod,air_rad)
51
52      real,save :: szangle
53!$OMP THREADPRIVATE(szangle)
54      real,save :: Fat1AU
55      real,save :: stelTbb
56!$OMP THREADPRIVATE(Fat1AU,stelTbb)
57      real,save :: pceil
58!$OMP THREADPRIVATE(pceil)
59      real,save :: tau_relax
60      real,save :: intheat
61!$OMP THREADPRIVATE(tau_relax,intheat)
62      real,save :: flatten
63      real,save :: Rmean
64      real,save :: J2
65      real,save :: MassPlanet
66!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
67      real,save :: surfalbedo
68      real,save :: surfemis
69!$OMP THREADPRIVATE(surfalbedo,surfemis)
70
71      logical,save :: iscallphys=.false.!existence of callphys.def
72!$OMP THREADPRIVATE(iscallphys)
73
74      ! do we read a startphy.nc file (default=.true.)
75      logical,save :: startphy_file=.true.
76!$OMP THREADPRIVATE(startphy_file)
77
78END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.