Changeset 2408 for LMDZ5/branches/testing/libf/dyn3dpar/leapfrog_p.F
- Timestamp:
- Dec 14, 2015, 11:43:09 AM (9 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 2293-2295,2297,2299-2302,2305-2313,2315,2317-2380,2382-2396
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/dyn3dpar/leapfrog_p.F
r2298 r2408 258 258 1 CONTINUE ! Matsuno Forward step begins here 259 259 260 c date: (NB: date remains unchanged for Backward step) 261 c ----- 262 260 263 jD_cur = jD_ref + day_ini - day_ref + & 261 & itau/day_step264 & (itau+1)/day_step 262 265 jH_cur = jH_ref + start_time + & 263 & mod(itau ,day_step)/float(day_step)266 & mod(itau+1,day_step)/float(day_step) 264 267 if (jH_cur > 1.0 ) then 265 268 jD_cur = jD_cur +1. … … 356 359 c----------------------------------------------------------------------- 357 360 358 c date: 361 c date: (NB: only leapfrog step requires recomputing date) 359 362 c ----- 360 363 364 IF (leapf) THEN 365 jD_cur = jD_ref + day_ini - day_ref + 366 & (itau+1)/day_step 367 jH_cur = jH_ref + start_time + 368 & mod(itau+1,day_step)/float(day_step) 369 if (jH_cur > 1.0 ) then 370 jD_cur = jD_cur +1. 371 jH_cur = jH_cur -1. 372 endif 373 ENDIF 361 374 362 375 c gestion des appels de la physique et des dissipations: … … 720 733 721 734 jD_cur = jD_ref + day_ini - day_ref 722 $ + itau/day_step735 $ + (itau+1)/day_step 723 736 724 737 IF (planet_type .eq."generic") THEN … … 728 741 729 742 jH_cur = jH_ref + start_time + & 730 & mod(itau ,day_step)/float(day_step)743 & mod(itau+1,day_step)/float(day_step) 731 744 ! call ju2ymds(jD_cur+jH_cur, an, mois, jour, secondes) 732 745 if (jH_cur > 1.0 ) then … … 747 760 IF (ip_ebil_dyn.ge.1 ) THEN 748 761 ztit='bil dyn' 749 ! Ehouarn: be careful, diagedyn is Earth-specific (includes ../phylmd/..)!762 ! Ehouarn: be careful, diagedyn is Earth-specific! 750 763 IF (planet_type.eq."earth") THEN 751 #ifdef CPP_EARTH752 764 CALL diagedyn(ztit,2,1,1,dtphys 753 765 & , ucov , vcov , ps, p ,pk , teta , q(:,:,1), q(:,:,2)) 754 #endif755 766 ENDIF 756 767 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.