Last change
on this file since 527 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
|
Rev | Line | |
---|
[135] | 1 | ! |
---|
| 2 | ! For Fortran 77/Fortran 90 compliance always use line continuation |
---|
| 3 | ! symbols '&' in columns 73 and 6 |
---|
| 4 | ! |
---|
[253] | 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 & |
---|
[526] | 11 | & , Continuum & |
---|
[253] | 12 | & , Nmix_co2, Nmix_h2o & |
---|
| 13 | & , dusttau & |
---|
[135] | 14 | & , nonideal & |
---|
| 15 | & , meanOLR & |
---|
| 16 | & , specOLR & |
---|
[253] | 17 | & , kastprof & |
---|
| 18 | & , noradsurf & |
---|
[305] | 19 | & , graybody & |
---|
[253] | 20 | & , Tstrat & |
---|
| 21 | & , newtonian & |
---|
| 22 | & , tau_relax & |
---|
| 23 | & , testradtimes & |
---|
[135] | 24 | & , rayleigh & |
---|
[253] | 25 | & , stelbbody & |
---|
| 26 | & , stelTbb & |
---|
[135] | 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 & |
---|
[253] | 38 | & , szangle & |
---|
| 39 | & , hydrology & |
---|
| 40 | & , sourceevol & |
---|
[486] | 41 | & , icetstep & |
---|
[253] | 42 | & , albedosnow & |
---|
| 43 | & , maxicethick & |
---|
| 44 | & , Tsaldiff & |
---|
| 45 | & , CLFfixval & |
---|
| 46 | & , CLFvarying & |
---|
| 47 | & , n2mixratio & |
---|
| 48 | & , co2supsat & |
---|
[305] | 49 | & , cloudlvl & |
---|
[253] | 50 | & , pceil |
---|
[135] | 51 | |
---|
[253] | 52 | logical callrad,corrk,calldifv,calladj,co2cond,callsoil & |
---|
| 53 | & , season,diurnal,tlocked,lwrite & |
---|
| 54 | & , callstats,calleofdump & |
---|
[526] | 55 | & , callgasvis,Continuum |
---|
[135] | 56 | |
---|
| 57 | logical enertest |
---|
| 58 | logical nonideal |
---|
| 59 | logical meanOLR |
---|
| 60 | logical specOLR |
---|
[253] | 61 | logical kastprof |
---|
| 62 | logical newtonian |
---|
| 63 | logical testradtimes |
---|
[135] | 64 | logical rayleigh |
---|
[253] | 65 | logical stelbbody |
---|
[135] | 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 |
---|
[253] | 74 | logical hydrology |
---|
| 75 | logical sourceevol |
---|
| 76 | logical CLFvarying |
---|
| 77 | logical noradsurf |
---|
[305] | 78 | logical graybody |
---|
[135] | 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 |
---|
[253] | 88 | real dusttau |
---|
[135] | 89 | real Fat1AU |
---|
[253] | 90 | real stelTbb |
---|
| 91 | real Tstrat |
---|
[135] | 92 | real tplanet |
---|
| 93 | real satval |
---|
| 94 | real rainthreshold |
---|
[253] | 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 |
---|
[305] | 104 | real cloudlvl |
---|
[486] | 105 | real icetstep |
---|
| 106 | |
---|
Note: See
TracBrowser
for help on using the repository browser.