[524] | 1 | ! |
---|
| 2 | ! |
---|
[793] | 3 | ! |
---|
| 4 | ! ATTENTION!!!!: ce fichier include est compatible format fixe/format libre |
---|
| 5 | ! veillez à n'utiliser que des ! pour les commentaires |
---|
| 6 | ! et à bien positionner les & des lignes de continuation |
---|
| 7 | ! (les placer en colonne 6 et en colonne 73) |
---|
| 8 | ! |
---|
| 9 | !..include cles_phys.h |
---|
| 10 | ! |
---|
[524] | 11 | LOGICAL cycle_diurne,soil_model,new_oliq,ok_orodr,ok_orolf |
---|
| 12 | LOGICAL ok_limitvrai |
---|
| 13 | INTEGER nbapp_rad, iflag_con |
---|
| 14 | REAL co2_ppm, solaire |
---|
| 15 | REAL*8 RCO2, RCH4, RN2O, RCFC11, RCFC12 |
---|
| 16 | REAL*8 CH4_ppb, N2O_ppb, CFC11_ppt, CFC12_ppt |
---|
[766] | 17 | |
---|
[793] | 18 | !OM ---> correction du bilan d'eau global |
---|
| 19 | !OM Correction sur precip KE |
---|
[766] | 20 | REAL cvl_corr |
---|
[793] | 21 | !OM Fonte calotte dans bilan eau |
---|
[766] | 22 | LOGICAL ok_lic_melt |
---|
| 23 | |
---|
[793] | 24 | !IM simulateur ISCCP |
---|
[524] | 25 | INTEGER top_height, overlap |
---|
[793] | 26 | !IM seuils cdrm, cdrh |
---|
[524] | 27 | REAL cdmmax, cdhmax |
---|
[793] | 28 | !IM param. stabilite s/ terres et en dehors |
---|
[524] | 29 | REAL ksta, ksta_ter |
---|
[793] | 30 | !IM ok_kzmin : clef calcul Kzmin dans la CL de surface cf FH |
---|
[524] | 31 | LOGICAL ok_kzmin |
---|
[900] | 32 | !IM, MAFo fmagic, pmagic : parametres - additionnel et multiplicatif - |
---|
| 33 | ! pour regler l albedo sur ocean |
---|
| 34 | REAL fmagic, pmagic |
---|
[889] | 35 | ! Hauteur (imposee) du contenu en eau du sol |
---|
| 36 | REAL qsol0 |
---|
[793] | 37 | !IM lev_histhf : niveau sorties 6h |
---|
| 38 | !IM lev_histday : niveau sorties journalieres |
---|
| 39 | !IM lev_histmth : niveau sorties mensuelles |
---|
[524] | 40 | INTEGER lev_histhf, lev_histday, lev_histmth |
---|
[644] | 41 | CHARACTER*4 type_run |
---|
| 42 | LOGICAL ok_isccp, ok_regdyn |
---|
| 43 | REAL lonmin_ins, lonmax_ins, latmin_ins, latmax_ins |
---|
[684] | 44 | REAL ecrit_ins, ecrit_hf, ecrit_hf2mth, ecrit_day |
---|
| 45 | REAL ecrit_mth, ecrit_tra, ecrit_reg |
---|
[1054] | 46 | REAL ecrit_LES |
---|
[828] | 47 | REAL freq_ISCCP, ecrit_ISCCP |
---|
[998] | 48 | INTEGER :: ip_ebil_phy, iflag_rrtm |
---|
[1001] | 49 | LOGICAL :: ok_strato |
---|
| 50 | LOGICAL :: ok_hines |
---|
[524] | 51 | |
---|
[793] | 52 | COMMON/clesphys/cycle_diurne, soil_model, new_oliq, & |
---|
| 53 | & ok_orodr, ok_orolf, ok_limitvrai, nbapp_rad, iflag_con & |
---|
| 54 | & , co2_ppm, solaire, RCO2, RCH4, RN2O, RCFC11, RCFC12 & |
---|
| 55 | & , CH4_ppb, N2O_ppb, CFC11_ppt, CFC12_ppt & |
---|
| 56 | & , top_height, overlap, cdmmax, cdhmax, ksta, ksta_ter & |
---|
[900] | 57 | & , ok_kzmin, fmagic, pmagic & |
---|
| 58 | & , lev_histhf, lev_histday, lev_histmth & |
---|
[793] | 59 | & , type_run, ok_isccp, ok_regdyn & |
---|
| 60 | & , lonmin_ins, lonmax_ins, latmin_ins, latmax_ins & |
---|
| 61 | & , ecrit_ins, ecrit_hf, ecrit_hf2mth, ecrit_day & |
---|
| 62 | & , ecrit_mth, ecrit_tra, ecrit_reg & |
---|
[828] | 63 | & , freq_ISCCP, ecrit_ISCCP, ip_ebil_phy & |
---|
[1067] | 64 | & , ok_lic_melt, cvl_corr & |
---|
[1054] | 65 | & , qsol0, iflag_rrtm, ok_strato,ok_hines,ecrit_LES |
---|
[766] | 66 | |
---|
[793] | 67 | !$OMP THREADPRIVATE(/clesphys/) |
---|
[766] | 68 | |
---|