Changeset 658
- Timestamp:
- Jul 4, 2005, 11:53:30 AM (19 years ago)
- Location:
- LMDZ4/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk/libf/phylmd/conf_phys.F90
r652 r658 688 688 !Config Key = ecrit_tra 689 689 !Config Desc = 690 !Config Def = NINT(86400./dtime * ecritphy) !tous les pas de temps physiques690 !Config Def = NINT(86400./dtime * ecritphy) !tous les ecritphy jours 691 691 !Config Help = 692 692 ! 693 693 ! ecrit_tra = NINT(86400./dtime * ecritphy) 694 ecrit_tra = NINT( 86400.*ecritphy)694 ecrit_tra = NINT(ecritphy) 695 695 call getin('ecrit_tra',ecrit_tra) 696 696 ! -
LMDZ4/trunk/libf/phylmd/physiq.F
r656 r658 1456 1456 ecrit_day = NINT(ecrit_day/dtime) 1457 1457 ecrit_mth = NINT(ecrit_mth/dtime) 1458 ecrit_tra = NINT( ecrit_tra/dtime)1458 ecrit_tra = NINT(86400.*ecrit_tra/dtime) 1459 1459 ecrit_reg = NINT(ecrit_reg/dtime) 1460 1460 cIM 230505 END … … 2747 2747 c==================================================================== 2748 2748 C 2749 call phytrac (iflag_con, 2750 I rnpb, 2749 call phytrac ( rnpb, 2751 2750 I itap, 2752 2751 I julien, -
LMDZ4/trunk/libf/phylmd/phytrac.F
r644 r658 4 4 c 5 5 c 6 SUBROUTINE phytrac (iflag_con, 7 I rnpb, 6 SUBROUTINE phytrac (rnpb, 8 7 I nstep, 9 8 I julien, … … 105 104 #include "dimphy.h" 106 105 #include "indicesol.h" 106 #include "clesphys.h" 107 107 #include "temps.h" 108 108 #include "paramet.h" … … 266 266 C Variables liees a l'ecriture de la bande histoire : phytrac.nc 267 267 c 268 INTEGER ecrit_tra269 SAVE ecrit_tra268 c INTEGER ecrit_tra 269 c SAVE ecrit_tra 270 270 logical ok_sync 271 271 parameter (ok_sync = .true.) … … 387 387 if (debutphy) then 388 388 389 ecrit_tra = NINT(86400./pdtphys *ecritphy)389 c ecrit_tra = NINT(86400./pdtphys *ecritphy) 390 390 print*,'dans phytrac ',pdtphys,ecritphy,ecrit_tra 391 391
Note: See TracChangeset
for help on using the changeset viewer.