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