Changeset 1676 for LMDZ5/trunk
- Timestamp:
- Nov 8, 2012, 9:03:30 PM (12 years ago)
- Location:
- LMDZ5/trunk/libf
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3d/calfis.F
r1654 r1676 507 507 . debut_split, !! firstcall 508 508 . lafin_split, !! lastcall 509 . float(day_ini), !! pday <-- day_ini (dans temps.h)509 . jD_cur, !! pday. see leapfrog 510 510 . jH_cur_split, !! ptime "fraction of day" 511 511 . zdt_split, !! ptimestep -
LMDZ5/trunk/libf/dyn3d/leapfrog.F
r1656 r1676 383 383 jD_cur = jD_ref + day_ini - day_ref + & 384 384 & itau/day_step 385 386 IF (planet_type .eq."generic") THEN 387 ! AS: we make jD_cur to be pday 388 jD_cur = int(day_ini + itau/day_step) 389 ENDIF 390 385 391 jH_cur = jH_ref + start_time + & 386 392 & mod(itau,day_step)/float(day_step) -
LMDZ5/trunk/libf/dyn3dmem/calfis_loc.F
r1673 r1676 725 725 . debut_split, !! firstcall 726 726 . lafin_split, !! lastcall 727 . float(day_ini), !! pday <-- day_ini (dans temps.h)727 . jD_cur, !! pday. see leapfrog_p 728 728 . jH_cur_split, !! ptime "fraction of day" 729 729 . zdt_split, !! ptimestep -
LMDZ5/trunk/libf/dyn3dmem/call_calfis_mod.F90
r1673 r1676 138 138 jD_cur = jD_ref + day_ini - day_ref & 139 139 & + itau/day_step 140 141 IF (planet_type .eq."generic") THEN 142 ! AS: we make jD_cur to be pday 143 jD_cur = int(day_ini + itau/day_step) 144 ENDIF 145 140 146 jH_cur = jH_ref + start_time + & 141 147 & mod(itau,day_step)/float(day_step) -
LMDZ5/trunk/libf/dyn3dpar/calfis_p.F
r1654 r1676 684 684 . debut_split, !! firstcall 685 685 . lafin_split, !! lastcall 686 . float(day_ini), !! pday <-- day_ini (dans temps.h)686 . jD_cur, !! pday. see leapfrog_p 687 687 . jH_cur_split, !! ptime "fraction of day" 688 688 . zdt_split, !! ptimestep -
LMDZ5/trunk/libf/dyn3dpar/leapfrog_p.F
r1671 r1676 710 710 jD_cur = jD_ref + day_ini - day_ref 711 711 $ + itau/day_step 712 713 IF (planet_type .eq."generic") THEN 714 ! AS: we make jD_cur to be pday 715 jD_cur = int(day_ini + itau/day_step) 716 ENDIF 717 712 718 jH_cur = jH_ref + start_time + & 713 719 & mod(itau,day_step)/float(day_step)
Note: See TracChangeset
for help on using the changeset viewer.