[524] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | c..include cles_phys.h |
---|
| 5 | c |
---|
| 6 | LOGICAL cycle_diurne,soil_model,new_oliq,ok_orodr,ok_orolf |
---|
| 7 | LOGICAL ok_limitvrai |
---|
| 8 | INTEGER nbapp_rad, iflag_con |
---|
| 9 | REAL co2_ppm, solaire |
---|
| 10 | REAL*8 RCO2, RCH4, RN2O, RCFC11, RCFC12 |
---|
| 11 | REAL*8 CH4_ppb, N2O_ppb, CFC11_ppt, CFC12_ppt |
---|
[704] | 12 | |
---|
| 13 | cOM ---> correction du bilan d'eau global |
---|
| 14 | cOM Correction sur precip KE |
---|
| 15 | REAL cvl_corr |
---|
| 16 | cOM Fonte calotte dans bilan eau |
---|
| 17 | LOGICAL ok_lic_melt |
---|
| 18 | |
---|
[524] | 19 | cIM simulateur ISCCP |
---|
| 20 | INTEGER top_height, overlap |
---|
| 21 | cIM seuils cdrm, cdrh |
---|
| 22 | REAL cdmmax, cdhmax |
---|
| 23 | cIM param. stabilite s/ terres et en dehors |
---|
| 24 | REAL ksta, ksta_ter |
---|
| 25 | cIM ok_kzmin : clef calcul Kzmin dans la CL de surface cf FH |
---|
| 26 | LOGICAL ok_kzmin |
---|
| 27 | cIM lev_histhf : niveau sorties 6h |
---|
| 28 | cIM lev_histday : niveau sorties journalieres |
---|
| 29 | cIM lev_histmth : niveau sorties mensuelles |
---|
| 30 | INTEGER lev_histhf, lev_histday, lev_histmth |
---|
[644] | 31 | CHARACTER*4 type_run |
---|
| 32 | LOGICAL ok_isccp, ok_regdyn |
---|
| 33 | REAL lonmin_ins, lonmax_ins, latmin_ins, latmax_ins |
---|
[684] | 34 | REAL ecrit_ins, ecrit_hf, ecrit_hf2mth, ecrit_day |
---|
| 35 | REAL ecrit_mth, ecrit_tra, ecrit_reg |
---|
| 36 | REAL freqin_isccp, freqout_isccp |
---|
| 37 | INTEGER :: ip_ebil_phy |
---|
| 38 | LOGICAL ok_slab_sicOBS |
---|
[524] | 39 | |
---|
| 40 | COMMON/clesphys/cycle_diurne, soil_model, new_oliq, |
---|
[652] | 41 | S ok_orodr, ok_orolf, ok_limitvrai, nbapp_rad, iflag_con |
---|
| 42 | S , co2_ppm, solaire, RCO2, RCH4, RN2O, RCFC11, RCFC12 |
---|
| 43 | S , CH4_ppb, N2O_ppb, CFC11_ppt, CFC12_ppt |
---|
| 44 | S , top_height, overlap, cdmmax, cdhmax, ksta, ksta_ter |
---|
| 45 | S , ok_kzmin, lev_histhf, lev_histday, lev_histmth |
---|
| 46 | S , type_run, ok_isccp, ok_regdyn |
---|
| 47 | S , lonmin_ins, lonmax_ins, latmin_ins, latmax_ins |
---|
| 48 | S , ecrit_ins, ecrit_hf, ecrit_hf2mth, ecrit_day |
---|
[699] | 49 | S , ecrit_mth, ecrit_tra, ecrit_reg |
---|
[684] | 50 | S , freqin_isccp, freqout_isccp, ip_ebil_phy |
---|
[704] | 51 | S , ok_slab_sicOBS, ok_lic_melt, cvl_corr |
---|
| 52 | |
---|
| 53 | c$OMP THREADPRIVATE(/clesphys/) |
---|
| 54 | |
---|