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
RevLine 
[1397]1MODULE callkeys_mod
2IMPLICIT NONE 
3
[1520]4      logical,save :: callrad,corrk,calldifv,UseTurbDiff
5!$OMP THREADPRIVATE(callrad,corrk,calldifv,UseTurbDiff)
[1672]6      logical,save :: calladj,callsoil,callchim
7!$OMP THREADPRIVATE(calladj,callsoil,callchim)
[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)
[1520]14      logical,save :: strictboundcorrk                                     
15!$OMP THREADPRIVATE(strictboundcorrk)
[1397]16
[1520]17      logical,save :: enertest
18      logical,save :: nonideal
19      logical,save :: meanOLR
20      logical,save :: specOLR
[1647]21!$OMP THREADPRIVATE(enertest,nonideal,meanOLR)
[1520]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
[1647]32!$OMP THREADPRIVATE(stelbbody,ozone,tracer,mass_redistrib)
[1520]33      logical,save :: sedimentation
[1647]34!$OMP THREADPRIVATE(sedimentation)
35      logical,save :: aeroback2lay
36!$OMP THREADPRIVATE(aeroback2lay)
[1520]37      logical,save :: nosurf
38      logical,save :: oblate
[1647]39!$OMP THREADPRIVATE(nosurf,oblate)
[1672]40     
41      integer,save :: ichim
[1520]42      integer,save :: iddist
43      integer,save :: iaervar
44      integer,save :: iradia
45      integer,save :: startype
[1672]46!$OMP THREADPRIVATE(ichim,iddist,iaervar,iradia,startype)
[1397]47
[1520]48      real,save :: Fat1AU
49      real,save :: stelTbb
[1668]50!$OMP THREADPRIVATE(Fat1AU,stelTbb)
[1520]51      real,save :: tplanet
52      real,save :: obs_tau_col_tropo
53      real,save :: obs_tau_col_strato
[1647]54!$OMP THREADPRIVATE(tplanet,obs_tau_col_tropo,obs_tau_col_strato)
[1520]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
[1648]62!$OMP THREADPRIVATE(size_tropo,size_strato)
[1520]63      real,save :: pceil
[1647]64!$OMP THREADPRIVATE(pceil)
[1520]65      real,save :: tau_relax
66      real,save :: intheat
[1647]67!$OMP THREADPRIVATE(tau_relax,intheat)
[1520]68      real,save :: flatten
69      real,save :: Rmean
70      real,save :: J2
71      real,save :: MassPlanet
72!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
[1397]73
[1520]74      logical,save :: iscallphys=.false.!existence of callphys.def
75!$OMP THREADPRIVATE(iscallphys)
76
[1670]77      ! do we read a startphy.nc file (default=.true.)
78      logical,save :: startphy_file=.true.
79!$OMP THREADPRIVATE(startphy_file)
80
[1397]81END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.