Changeset 2491 for LMDZ5/trunk/libf/phylmd
- Timestamp:
- Apr 5, 2016, 4:29:27 PM (9 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phys_cal_mod.F90
r2422 r2491 15 15 INTEGER,SAVE :: year_len ! number of days in the current year 16 16 !$OMP THREADPRIVATE(year_len) 17 REAL,SAVE :: hour 17 REAL,SAVE :: hour ! seconds elapsed (in the current day) since midnight 18 18 !$OMP THREADPRIVATE(hour) 19 19 REAL,SAVE :: jD_1jan -
LMDZ5/trunk/libf/phylmd/phys_output_mod.F90
r2380 r2491 39 39 USE ioipsl 40 40 USE phys_cal_mod, only : hour, calend 41 USE time_phylmdz_mod : pdtphys 41 42 USE mod_phys_lmdz_para 42 43 USE aero_mod, only : naero_spc,name_aero … … 255 256 idayref = day_ref 256 257 IF (klon_glo==1) THEN 257 CALL ymds2ju(annee_ref, 1, idayref, hour, zjulian) !jyg 258 ! current_time (used to compute hour) is updated at the begining of 259 ! the physics; to set the correct outputs "initial time" we thus 260 ! have to use (hour-dtphys). 261 CALL ymds2ju(annee_ref, 1, idayref, hour-pdtphys, zjulian) 262 print *,'phys_output_mod: annee,iday,hour,zjulian=',annee_ref,idayref, hour, zjulian 258 263 ELSE 259 264 CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian)
Note: See TracChangeset
for help on using the changeset viewer.