Changeset 1864 for LMDZ5/branches/testing/libf/phylmd/conf_phys_m.F90
- Timestamp:
- Sep 11, 2013, 11:45:01 AM (11 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 1797-1799,1801-1811,1813-1834,1836,1838-1840,1842-1860
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/phylmd/conf_phys_m.F90
r1795 r1864 141 141 LOGICAL,SAVE :: reevap_ice_omp 142 142 INTEGER,SAVE :: iflag_pdf_omp 143 INTEGER,SAVE :: iflag_ice_thermo_omp 143 144 REAL,SAVE :: rad_froid_omp, rad_chau1_omp, rad_chau2_omp 144 145 REAL,SAVE :: t_glace_min_omp, t_glace_max_omp … … 155 156 Integer, save :: lev_histins_omp, lev_histLES_omp 156 157 INTEGER, SAVE :: lev_histdayNMC_omp 158 INTEGER, SAVE :: levout_histNMC_omp(3) 157 159 LOGICAL, SAVE :: ok_histNMC_omp(3) 158 160 REAL, SAVE :: freq_outNMC_omp(3), freq_calNMC_omp(3) … … 966 968 call getin('t_glace_max',t_glace_max_omp) 967 969 970 ! 971 !Config Key = iflag_ice_thermo 972 !Config Desc = 973 !Config Def = 0 974 !Config Help = 975 ! 976 iflag_ice_thermo_omp = 0 977 call getin('iflag_ice_thermo',iflag_ice_thermo_omp) 978 968 979 !Config Key = rei_min 969 980 !Config Desc = … … 1267 1278 lev_histLES_omp = 1 1268 1279 call getin('lev_histLES',lev_histLES_omp) 1269 ! 1280 ! 1270 1281 !Config Key = lev_histdayNMC 1271 1282 !Config Desc = … … 1275 1286 lev_histdayNMC_omp = 8 1276 1287 call getin('lev_histdayNMC',lev_histdayNMC_omp) 1288 ! 1289 !Config Key = levout_histNMC 1290 !Config Desc = 1291 !Config Def = 5 1292 !Config Help = 1293 ! 1294 levout_histNMC_omp(1) = 5 1295 levout_histNMC_omp(2) = 5 1296 levout_histNMC_omp(3) = 5 1297 call getin('levout_histNMC',levout_histNMC_omp) 1277 1298 ! 1278 1299 !histNMC BEG … … 1296 1317 !Config Help = 1297 1318 ! 1298 ! freq_outNMC_omp(1) = 2592000.1299 1319 freq_outNMC_omp(1) = mth_len*86400. 1300 1320 freq_outNMC_omp(2) = 86400. … … 1684 1704 t_glace_min = t_glace_min_omp 1685 1705 t_glace_max = t_glace_max_omp 1706 iflag_ice_thermo = iflag_ice_thermo_omp 1686 1707 rei_min = rei_min_omp 1687 1708 rei_max = rei_max_omp … … 1702 1723 lev_histLES = lev_histLES_omp 1703 1724 lev_histdayNMC = lev_histdayNMC_omp 1725 levout_histNMC = levout_histNMC_omp 1704 1726 ok_histNMC(:) = ok_histNMC_omp(:) 1705 1727 freq_outNMC(:) = freq_outNMC_omp(:) … … 1900 1922 write(lunout,*)' t_glace_min = ',t_glace_min 1901 1923 write(lunout,*)' t_glace_max = ',t_glace_max 1924 write(lunout,*)' iflag_ice_thermo = ',iflag_ice_thermo 1902 1925 write(lunout,*)' rei_min = ',rei_min 1903 1926 write(lunout,*)' rei_max = ',rei_max … … 1925 1948 write(lunout,*)' lev_histLES = ',lev_histLES 1926 1949 write(lunout,*)' lev_histdayNMC = ',lev_histdayNMC 1950 write(lunout,*)' levout_histNMC = ',levout_histNMC 1927 1951 write(lunout,*)' ok_histNMC = ',ok_histNMC 1928 1952 write(lunout,*)' freq_outNMC = ',freq_outNMC
Note: See TracChangeset
for help on using the changeset viewer.