- Timestamp:
- Jul 24, 2024, 2:54:37 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/output_physiqex_mod.F90
r5113 r5116 35 35 real,intent(in) :: ptke(klon,klev) !tke 36 36 37 real:: t_ops ! frequency of the IOIPSL operations (eg average over...)38 real:: t_wrt ! frequency of the IOIPSL outputs39 integer:: zvertid ! vertical coordinate ID40 real:: dtime37 REAL :: t_ops ! frequency of the IOIPSL operations (eg average over...) 38 REAL :: t_wrt ! frequency of the IOIPSL outputs 39 INTEGER :: zvertid ! vertical coordinate ID 40 REAL :: dtime 41 41 42 42 integer,save :: iwrite_phys=1 ! output every iwrite_phys physics step 43 43 !$OMP THREADPRIVATE(iwrite_phys) 44 integer:: nhori ! horizontal coordinate ID44 INTEGER :: nhori ! horizontal coordinate ID 45 45 integer,save :: nid_hist ! output file ID 46 46 !$OMP THREADPRIVATE(nid_hist) … … 53 53 PRINT*,'nnnnnnn ',nid_hist,debut,itau 54 54 55 IF(debut)then 56 55 IF(debut)THEN 57 56 CALL getin_p("iwrite_phys",iwrite_phys) 58 57 … … 67 66 itau=itau+1 68 67 69 IF (modulo(itau,iwrite_phys)==0) then68 IF (modulo(itau,iwrite_phys)==0) THEN 70 69 CALL iophys_ecrit('temp',klev,'Temperature','K',t) 71 70 CALL iophys_ecrit('u',klev,'zonal wind','m/s',u)
Note: See TracChangeset
for help on using the changeset viewer.