Changeset 1843 for LMDZ5/trunk
- Timestamp:
- Aug 21, 2013, 12:01:48 PM (11 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
r1828 r1843 1301 1301 ! 1302 1302 !Config Key = freq_outNMC 1303 !Config Desc = freq_outNMC(1) = frequence en jourde sortie fichiers histmthNMC1304 !Config Desc = freq_outNMC(2) = frequence en jourde sortie fichiers histdayNMC1305 !Config Desc = freq_outNMC(3) = frequence en jourde sortie fichiers histhfNMC1306 !Config Def = 30., 1., 0.251307 !Config Help = 1308 ! 1309 freq_outNMC_omp(1) = mth_len 1310 freq_outNMC_omp(2) = 1.1311 freq_outNMC_omp(3) = 0.251303 !Config Desc = freq_outNMC(1) = frequence de sortie fichiers histmthNMC 1304 !Config Desc = freq_outNMC(2) = frequence de sortie fichiers histdayNMC 1305 !Config Desc = freq_outNMC(3) = frequence de sortie fichiers histhfNMC 1306 !Config Def = 2592000., 86400., 21600. 1307 !Config Help = 1308 ! 1309 freq_outNMC_omp(1) = mth_len*86400. 1310 freq_outNMC_omp(2) = 86400. 1311 freq_outNMC_omp(3) = 21600. 1312 1312 call getin('freq_outNMC',freq_outNMC_omp) 1313 1313 ! -
LMDZ5/trunk/libf/phylmd/phys_output_mod.F90
r1828 r1843 110 110 INTEGER, DIMENSION(nfiles) :: phys_out_levmin, phys_out_levmax 111 111 INTEGER, DIMENSION(nfiles) :: phys_out_filelevels 112 CHARACTER(LEN=20), DIMENSION(nfiles) :: chtimestep = (/ ' DefFreq', 'DefFreq','DefFreq', 'DefFreq', &113 'DefFreq', 'DefFreq', 'DefFreq','DefFreq', 'DefFreq' /)112 CHARACTER(LEN=20), DIMENSION(nfiles) :: chtimestep = (/ '1mth', '1mth', '1mth', '1mth', '1mth', & 113 '1mth', '1mth', '1mth', '1mth' /) 114 114 LOGICAL, DIMENSION(nfiles) :: phys_out_filekeys 115 115 LOGICAL, DIMENSION(nfiles) :: phys_out_filestations … … 205 205 ecrit_files(5) = ecrit_LES 206 206 ecrit_files(6) = ecrit_ins 207 ecrit_files(7) = freq_outNMC(1) 208 ecrit_files(8) = freq_outNMC(2) 209 ecrit_files(9) = freq_outNMC(3) 207 ecrit_files(7) = freq_outNMC(1)/86400. 208 ecrit_files(8) = freq_outNMC(2)/86400. 209 ecrit_files(9) = freq_outNMC(3)/86400. 210 210 211 211 !! Lectures des parametres de sorties dans physiq.def … … 467 467 ecrit_LES = ecrit_files(5) 468 468 ecrit_ins = ecrit_files(6) 469 freq_outNMC(1) = ecrit_files(7) 470 freq_outNMC(2) = ecrit_files(8) 471 freq_outNMC(3) = ecrit_files(9) 469 freq_outNMC(1) = ecrit_files(7)*86400. 470 freq_outNMC(2) = ecrit_files(8)*86400. 471 freq_outNMC(3) = ecrit_files(9)*86400. 472 472 473 473 WRITE(lunout,*)'swaero_diag=',swaero_diag
Note: See TracChangeset
for help on using the changeset viewer.