Changeset 1828 for LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
- Timestamp:
- Aug 6, 2013, 6:06:40 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
r1767 r1828 155 155 Integer, save :: lev_histins_omp, lev_histLES_omp 156 156 INTEGER, SAVE :: lev_histdayNMC_omp 157 INTEGER, SAVE :: levout_histNMC_omp(3) 157 158 LOGICAL, SAVE :: ok_histNMC_omp(3) 158 159 REAL, SAVE :: freq_outNMC_omp(3), freq_calNMC_omp(3) … … 1267 1268 lev_histLES_omp = 1 1268 1269 call getin('lev_histLES',lev_histLES_omp) 1269 ! 1270 ! 1270 1271 !Config Key = lev_histdayNMC 1271 1272 !Config Desc = … … 1275 1276 lev_histdayNMC_omp = 8 1276 1277 call getin('lev_histdayNMC',lev_histdayNMC_omp) 1278 ! 1279 !Config Key = levout_histNMC 1280 !Config Desc = 1281 !Config Def = 5 1282 !Config Help = 1283 ! 1284 levout_histNMC_omp(1) = 5 1285 levout_histNMC_omp(2) = 5 1286 levout_histNMC_omp(3) = 5 1287 call getin('levout_histNMC',levout_histNMC_omp) 1277 1288 ! 1278 1289 !histNMC BEG … … 1290 1301 ! 1291 1302 !Config Key = freq_outNMC 1292 !Config Desc = freq_outNMC(1) = frequence de sortie fichiers histmthNMC 1293 !Config Desc = freq_outNMC(2) = frequence de sortie fichiers histdayNMC 1294 !Config Desc = freq_outNMC(3) = frequence de sortie fichiers histhfNMC 1295 !Config Def = 2592000., 86400., 21600. 1296 !Config Help = 1297 ! 1298 ! freq_outNMC_omp(1) = 2592000. 1299 freq_outNMC_omp(1) = mth_len*86400. 1300 freq_outNMC_omp(2) = 86400. 1301 freq_outNMC_omp(3) = 21600. 1303 !Config Desc = freq_outNMC(1) = frequence en jour de sortie fichiers histmthNMC 1304 !Config Desc = freq_outNMC(2) = frequence en jour de sortie fichiers histdayNMC 1305 !Config Desc = freq_outNMC(3) = frequence en jour de sortie fichiers histhfNMC 1306 !Config Def = 30., 1., 0.25 1307 !Config Help = 1308 ! 1309 freq_outNMC_omp(1) = mth_len 1310 freq_outNMC_omp(2) = 1. 1311 freq_outNMC_omp(3) = 0.25 1302 1312 call getin('freq_outNMC',freq_outNMC_omp) 1303 1313 ! … … 1702 1712 lev_histLES = lev_histLES_omp 1703 1713 lev_histdayNMC = lev_histdayNMC_omp 1714 levout_histNMC = levout_histNMC_omp 1704 1715 ok_histNMC(:) = ok_histNMC_omp(:) 1705 1716 freq_outNMC(:) = freq_outNMC_omp(:) … … 1925 1936 write(lunout,*)' lev_histLES = ',lev_histLES 1926 1937 write(lunout,*)' lev_histdayNMC = ',lev_histdayNMC 1938 write(lunout,*)' levout_histNMC = ',levout_histNMC 1927 1939 write(lunout,*)' ok_histNMC = ',ok_histNMC 1928 1940 write(lunout,*)' freq_outNMC = ',freq_outNMC
Note: See TracChangeset
for help on using the changeset viewer.