Last change
on this file since 537 was
526,
checked in by jleconte, 13 years ago
|
13/02/2012 == JL + AS
- All outputs are now in netCDF format. Even in 1D (No more G1D)
- Clean up of the call to callcorrk when CLFvarying=true
- Corrects a bug in writediagspecIR/VI. Output are now in W/m2/cm-1 as a function of the wavenumber in cm-1
- Enable writediagspecIR/V to work in the CLFvarying=true case (output now done in Physiq after writediagfi)
- Add a simple treatment for the supersaturation of CO2 (see forget et al 2012)
- corrects a small bug when no clouds are present in aeropacity
|
File size:
4.7 KB
|
Line | |
---|
1 | ! |
---|
2 | ! For Fortran 77/Fortran 90 compliance always use line continuation |
---|
3 | ! symbols '&' in columns 73 and 6 |
---|
4 | ! |
---|
5 | COMMON/callkeys/callrad,corrk,calldifv,calladj & |
---|
6 | & , co2cond,callsoil & |
---|
7 | & , season,diurnal,tlocked,iradia,lwrite & |
---|
8 | & , iaervar,iddist,topdustref,callstats,calleofdump & |
---|
9 | & , enertest & |
---|
10 | & , callgasvis & |
---|
11 | & , Continuum & |
---|
12 | & , Nmix_co2, Nmix_h2o & |
---|
13 | & , dusttau & |
---|
14 | & , nonideal & |
---|
15 | & , meanOLR & |
---|
16 | & , specOLR & |
---|
17 | & , kastprof & |
---|
18 | & , noradsurf & |
---|
19 | & , graybody & |
---|
20 | & , Tstrat & |
---|
21 | & , newtonian & |
---|
22 | & , tau_relax & |
---|
23 | & , testradtimes & |
---|
24 | & , rayleigh & |
---|
25 | & , stelbbody & |
---|
26 | & , stelTbb & |
---|
27 | & , tplanet & |
---|
28 | & , startype & |
---|
29 | & , Fat1AU & |
---|
30 | & , nearco2cond & |
---|
31 | & , tracer & |
---|
32 | & , varactive & |
---|
33 | & , varfixed & |
---|
34 | & , satval & |
---|
35 | & , sedimentation,water,watercond,waterrain & |
---|
36 | & , rainthreshold & |
---|
37 | & , aerofixed & |
---|
38 | & , szangle & |
---|
39 | & , hydrology & |
---|
40 | & , sourceevol & |
---|
41 | & , icetstep & |
---|
42 | & , albedosnow & |
---|
43 | & , maxicethick & |
---|
44 | & , Tsaldiff & |
---|
45 | & , CLFfixval & |
---|
46 | & , CLFvarying & |
---|
47 | & , n2mixratio & |
---|
48 | & , co2supsat & |
---|
49 | & , cloudlvl & |
---|
50 | & , pceil |
---|
51 | |
---|
52 | logical callrad,corrk,calldifv,calladj,co2cond,callsoil & |
---|
53 | & , season,diurnal,tlocked,lwrite & |
---|
54 | & , callstats,calleofdump & |
---|
55 | & , callgasvis,Continuum |
---|
56 | |
---|
57 | logical enertest |
---|
58 | logical nonideal |
---|
59 | logical meanOLR |
---|
60 | logical specOLR |
---|
61 | logical kastprof |
---|
62 | logical newtonian |
---|
63 | logical testradtimes |
---|
64 | logical rayleigh |
---|
65 | logical stelbbody |
---|
66 | logical ozone |
---|
67 | logical nearco2cond |
---|
68 | logical tracer |
---|
69 | logical varactive |
---|
70 | logical varfixed |
---|
71 | logical sedimentation |
---|
72 | logical water,watercond,waterrain |
---|
73 | logical aerofixed |
---|
74 | logical hydrology |
---|
75 | logical sourceevol |
---|
76 | logical CLFvarying |
---|
77 | logical noradsurf |
---|
78 | logical graybody |
---|
79 | |
---|
80 | integer iddist |
---|
81 | integer iaervar |
---|
82 | integer iradia |
---|
83 | integer startype |
---|
84 | |
---|
85 | real topdustref |
---|
86 | real Nmix_co2 |
---|
87 | real Nmix_h2o |
---|
88 | real dusttau |
---|
89 | real Fat1AU |
---|
90 | real stelTbb |
---|
91 | real Tstrat |
---|
92 | real tplanet |
---|
93 | real satval |
---|
94 | real rainthreshold |
---|
95 | real szangle |
---|
96 | real CLFfixval |
---|
97 | real n2mixratio |
---|
98 | real co2supsat |
---|
99 | real pceil |
---|
100 | real albedosnow |
---|
101 | real maxicethick |
---|
102 | real Tsaldiff |
---|
103 | real tau_relax |
---|
104 | real cloudlvl |
---|
105 | real icetstep |
---|
106 | |
---|
Note: See
TracBrowser
for help on using the repository browser.