- Timestamp:
- May 4, 2010, 2:46:58 PM (15 years ago)
- Location:
- LMDZ4/trunk/libf/phylmd
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk/libf/phylmd/clesphys.h
r1368 r1374 48 48 INTEGER lev_histdayNMC 49 49 Integer lev_histins, lev_histLES 50 !IM ok_histNMC : sortie fichiers niveaux de pression (histmthNMC, histdayNMC, histhfNMC) 50 51 !IM freq_outNMC : frequences de sortie fichiers niveaux de pression (histmthNMC, histdayNMC, histhfNMC) 51 52 !IM freq_calNMC : frequences de calcul fis. hist*NMC.nc 52 53 !IM pasphys : pas de temps de physique (secondes) 53 54 REAL pasphys 55 LOGICAL ok_histNMC(3) 54 56 REAL freq_outNMC(3) , freq_calNMC(3) 55 57 CHARACTER(len=4) type_run … … 77 79 & , lev_histhf, lev_histday, lev_histmth & 78 80 & , lev_histins, lev_histLES, lev_histdayNMC & 79 & , pasphys, freq_outNMC, freq_calNMC&81 & , pasphys, ok_histNMC, freq_outNMC, freq_calNMC & 80 82 & , type_run, ok_isccp, ok_regdyn, ok_cosp & 81 83 & , ok_mensuelCOSP,ok_journeCOSP,ok_hfCOSP & -
LMDZ4/trunk/libf/phylmd/conf_phys.F90
r1368 r1374 139 139 Integer, save :: lev_histins_omp, lev_histLES_omp 140 140 INTEGER, SAVE :: lev_histdayNMC_omp 141 LOGICAL, SAVE :: ok_histNMC_omp(3) 141 142 REAL, SAVE :: freq_outNMC_omp(3), freq_calNMC_omp(3) 142 143 CHARACTER*4, SAVE :: type_run_omp … … 1089 1090 ! 1090 1091 !histNMC BEG 1092 !Config Key = ok_histNMC 1093 !Config Desc = ok_histNMC(1) = frequence de sortie fichiers histmthNMC 1094 !Config Desc = ok_histNMC(2) = frequence de sortie fichiers histdayNMC 1095 !Config Desc = ok_histNMC(3) = frequence de sortie fichiers histhfNMC 1096 !Config Def = n, n, n 1097 !Config Help = 1098 ! 1099 ok_histNMC_omp(1) = .false. 1100 ok_histNMC_omp(2) = .false. 1101 ok_histNMC_omp(3) = .false. 1102 call getin('ok_histNMC',ok_histNMC_omp) 1103 ! 1091 1104 !Config Key = freq_outNMC 1092 1105 !Config Desc = freq_outNMC(1) = frequence de sortie fichiers histmthNMC … … 1476 1489 lev_histLES = lev_histLES_omp 1477 1490 lev_histdayNMC = lev_histdayNMC_omp 1491 ok_histNMC(:) = ok_histNMC_omp(:) 1478 1492 freq_outNMC(:) = freq_outNMC_omp(:) 1479 1493 freq_calNMC(:) = freq_calNMC_omp(:) … … 1663 1677 write(numout,*)' lev_histLES = ',lev_histLES 1664 1678 write(numout,*)' lev_histdayNMC = ',lev_histdayNMC 1679 write(numout,*)' ok_histNMC = ',ok_histNMC 1665 1680 write(numout,*)' freq_outNMC = ',freq_outNMC 1666 1681 write(numout,*)' freq_calNMC = ',freq_calNMC -
LMDZ4/trunk/libf/phylmd/ini_histdayNMC.h
r1351 r1374 3 3 ! 4 4 c$OMP MASTER 5 5 IF (ok_histNMC(2)) THEN 6 c 6 7 zstophy = dtime 7 8 zstohf = ecrit_hf … … 133 134 CALL histend(nid_daynmc) 134 135 c 136 ENDIF !(ok_histNMC(2)) THEN 135 137 c$OMP END MASTER -
LMDZ4/trunk/libf/phylmd/ini_histhfNMC.h
r1351 r1374 3 3 ! 4 4 c$OMP MASTER 5 5 c 6 IF (ok_histNMC(3)) THEN 7 c 6 8 zstophy = dtime 7 9 zstohf = ecrit_hf … … 142 144 CALL histend(nid_hfnmc) 143 145 c 146 ENDIF !(ok_histNMC(2)) THEN 147 c 144 148 c$OMP END MASTER 145 -
LMDZ4/trunk/libf/phylmd/ini_histmthNMC.h
r1352 r1374 3 3 ! 4 4 c$OMP MASTER 5 c 6 IF (ok_histNMC(1)) THEN 7 c 5 8 zout = freq_outNMC(1) 6 9 c … … 139 142 CALL histend(nid_mthnmc) 140 143 c 144 ENDIF !(ok_histNMC(1)) THEN 145 c 141 146 c$OMP END MASTER -
LMDZ4/trunk/libf/phylmd/write_histdayNMC.h
r1351 r1374 2 2 ! $Header$ 3 3 ! 4 c IF (ok_mensuel) THEN4 IF (ok_histNMC(2)) THEN 5 5 c 6 6 ndex3d = 0 … … 39 39 c$OMP END MASTER 40 40 endif 41 42 c ENDIF 41 c 42 ENDIF ! (ok_histNMC(2)) THEN -
LMDZ4/trunk/libf/phylmd/write_histhfNMC.h
r1351 r1374 2 2 ! $Header$ 3 3 ! 4 IF (ok_histNMC(3)) THEN 5 c 4 6 ndex3d = 0 5 7 itau_w = itau_phy + itap … … 65 67 c$OMP END MASTER 66 68 endif 67 68 c ENDIF 69 c 70 ENDIF ! (ok_histNMC(3)) THEN -
LMDZ4/trunk/libf/phylmd/write_histmthNMC.h
r1359 r1374 2 2 ! $Header$ 3 3 ! 4 IF (ok_histNMC(1)) THEN 4 5 c 5 6 ndex3d = 0 … … 64 65 c$OMP END MASTER 65 66 endif 67 c 68 ENDIF !(ok_histNMC(1)) THEN
Note: See TracChangeset
for help on using the changeset viewer.