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

Last change on this file since 1704 was 1672, checked in by jvatant, 8 years ago

Re-plug chemistry of old Titan
+ minor correction on reading Titan's startfiles and haze routine
JVO

File size: 2.8 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,callchim
7!$OMP THREADPRIVATE(calladj,callsoil,callchim)
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
17      logical,save :: enertest
18      logical,save :: nonideal
19      logical,save :: meanOLR
20      logical,save :: specOLR
21!$OMP THREADPRIVATE(enertest,nonideal,meanOLR)
22      logical,save :: newtonian
23      logical,save :: check_cpp_match
24      logical,save :: force_cpp
25      logical,save :: testradtimes
26      logical,save :: rayleigh
27!$OMP THREADPRIVATE(newtonian,check_cpp_match,force_cpp,testradtimes,rayleigh)
28      logical,save :: stelbbody
29      logical,save :: ozone
30      logical,save :: tracer
31      logical,save :: mass_redistrib
32!$OMP THREADPRIVATE(stelbbody,ozone,tracer,mass_redistrib)
33      logical,save :: sedimentation
34!$OMP THREADPRIVATE(sedimentation)
35      logical,save :: aeroback2lay
36!$OMP THREADPRIVATE(aeroback2lay)
37      logical,save :: nosurf
38      logical,save :: oblate
39!$OMP THREADPRIVATE(nosurf,oblate)
40     
41      integer,save :: ichim
42      integer,save :: iddist
43      integer,save :: iaervar
44      integer,save :: iradia
45      integer,save :: startype
46!$OMP THREADPRIVATE(ichim,iddist,iaervar,iradia,startype)
47
48      real,save :: Fat1AU
49      real,save :: stelTbb
50!$OMP THREADPRIVATE(Fat1AU,stelTbb)
51      real,save :: tplanet
52      real,save :: obs_tau_col_tropo
53      real,save :: obs_tau_col_strato
54!$OMP THREADPRIVATE(tplanet,obs_tau_col_tropo,obs_tau_col_strato)
55      real,save :: pres_bottom_tropo
56      real,save :: pres_top_tropo
57      real,save :: pres_bottom_strato
58      real,save :: pres_top_strato
59!$OMP THREADPRIVATE(pres_bottom_tropo,pres_top_tropo,pres_bottom_strato,pres_top_strato)
60      real,save :: size_tropo
61      real,save :: size_strato
62!$OMP THREADPRIVATE(size_tropo,size_strato)
63      real,save :: pceil
64!$OMP THREADPRIVATE(pceil)
65      real,save :: tau_relax
66      real,save :: intheat
67!$OMP THREADPRIVATE(tau_relax,intheat)
68      real,save :: flatten
69      real,save :: Rmean
70      real,save :: J2
71      real,save :: MassPlanet
72!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
73
74      logical,save :: iscallphys=.false.!existence of callphys.def
75!$OMP THREADPRIVATE(iscallphys)
76
77      ! do we read a startphy.nc file (default=.true.)
78      logical,save :: startphy_file=.true.
79!$OMP THREADPRIVATE(startphy_file)
80
81END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.