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
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)
[1520]14      logical,save :: strictboundcorrk                                     
15!$OMP THREADPRIVATE(strictboundcorrk)
[1795]16      logical,save :: callchim, callmufi, callclouds
17!$OMP THREADPRIVATE(callchim,callmufi,callclouds)
[1822]18      logical,save :: global1d
19!$OMP THREADPRIVATE(global1d)
[1520]20      logical,save :: enertest
21      logical,save :: nonideal
22      logical,save :: meanOLR
23      logical,save :: specOLR
[1647]24!$OMP THREADPRIVATE(enertest,nonideal,meanOLR)
[1520]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
[1647]35!$OMP THREADPRIVATE(stelbbody,ozone,tracer,mass_redistrib)
[1520]36      logical,save :: nosurf
37      logical,save :: oblate
[1647]38!$OMP THREADPRIVATE(nosurf,oblate)
[1672]39     
40      integer,save :: ichim
[1795]41!$OMP THREADPRIVATE(ichim)
[1520]42      integer,save :: iddist
43      integer,save :: iradia
44      integer,save :: startype
[1795]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)
[1397]51
[1822]52      real,save :: szangle
53!$OMP THREADPRIVATE(szangle)
[1520]54      real,save :: Fat1AU
55      real,save :: stelTbb
[1668]56!$OMP THREADPRIVATE(Fat1AU,stelTbb)
[1520]57      real,save :: pceil
[1647]58!$OMP THREADPRIVATE(pceil)
[1520]59      real,save :: tau_relax
60      real,save :: intheat
[1647]61!$OMP THREADPRIVATE(tau_relax,intheat)
[1520]62      real,save :: flatten
63      real,save :: Rmean
64      real,save :: J2
65      real,save :: MassPlanet
66!$OMP THREADPRIVATE(flatten,Rmean,J2,MassPlanet)
[1722]67      real,save :: surfalbedo
68      real,save :: surfemis
69!$OMP THREADPRIVATE(surfalbedo,surfemis)
[1397]70
[1520]71      logical,save :: iscallphys=.false.!existence of callphys.def
72!$OMP THREADPRIVATE(iscallphys)
73
[1670]74      ! do we read a startphy.nc file (default=.true.)
75      logical,save :: startphy_file=.true.
76!$OMP THREADPRIVATE(startphy_file)
77
[1397]78END MODULE callkeys_mod
Note: See TracBrowser for help on using the repository browser.