- Timestamp:
- Jun 9, 2016, 11:30:18 AM (8 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phys_cal_mod.F90
r2491 r2551 76 76 year_len = ioget_year_len(year_cur) 77 77 78 print *,'phys_cal_update: jH_cur, hour ',jH_cur, hour 79 78 80 END SUBROUTINE phys_cal_update 79 81 -
LMDZ5/trunk/libf/phylmd/phys_output_mod.F90
r2548 r2551 56 56 include "clesphys.h" 57 57 include "thermcell.h" 58 include "YOMCST.h" 58 59 59 60 ! ug Nouveaux arguments n\'ecessaires au histwrite_mod: … … 263 264 ELSE 264 265 CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) 265 CALL ymds2ju(annee_ref, 1, day_ini, start_time* 86400, zjulian_start)266 CALL ymds2ju(annee_ref, 1, day_ini, start_time*rday, zjulian_start) 266 267 END IF 267 268 -
LMDZ5/trunk/libf/phylmd/phys_output_write_mod.F90
r2549 r2551 331 331 332 332 ! On calcul le nouveau tau: 333 !! itau_w = itau_phy + itap + start_time * day_step_phy !! essais jyg 334 itau_w = itau_phy + itap !! essais jyg 333 itau_w = itau_phy + itap 335 334 ! On le donne à iophy pour que les histwrite y aient accès: 336 335 CALL set_itau_iophy(itau_w) -
LMDZ5/trunk/libf/phylmd/time_phylmdz_mod.F90
r2548 r2551 83 83 USE print_control_mod, ONLY: lunout 84 84 IMPLICIT NONE 85 INCLUDE 'YOMCST.h' 85 86 REAL,INTENT(IN) :: pdtphys_ 86 87 REAL :: julian_date … … 94 95 95 96 ! Update elapsed time since begining of run: 96 current_time=current_time+pdtphys/86400 97 current_time=current_time+pdtphys/rday 98 print *,'update_time: start_time, current_time ', start_time, current_time 97 99 98 100 ! Compute corresponding Julian date and update calendar 99 CALL ymds2ju(annee_ref,1,day_ini,(start_time+current_time)* 86400,julian_date)101 CALL ymds2ju(annee_ref,1,day_ini,(start_time+current_time)*rday,julian_date) 100 102 CALL phys_cal_update(julian_date) 101 103
Note: See TracChangeset
for help on using the changeset viewer.