Changeset 1546
- Timestamp:
- Jun 23, 2011, 3:10:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phys_output_mod.F90
r1544 r1546 797 797 ecrit_files(iff)=ecrit_files(iff)*86400. 798 798 else 799 call convers_timesteps(chtimestep(iff), ecrit_files(iff))799 call convers_timesteps(chtimestep(iff),dtime,ecrit_files(iff)) 800 800 endif 801 801 print*,'ecrit_files(',iff,')= ',ecrit_files(iff) … … 1822 1822 END SUBROUTINE conf_physoutputs 1823 1823 1824 SUBROUTINE convers_timesteps(str, timestep)1824 SUBROUTINE convers_timesteps(str,dtime,timestep) 1825 1825 1826 1826 use ioipsl … … 1832 1832 character(len=10) :: type 1833 1833 integer :: ipos,il 1834 real :: ttt,xxx,timestep,dayseconde 1834 real :: ttt,xxx,timestep,dayseconde,dtime 1835 1835 parameter (dayseconde=86400.) 1836 1836 include "temps.h" … … 1858 1858 if ( type == 'mn'.or.type == 'minutes' ) timestep = ttt * 60. 1859 1859 if ( type == 's'.or.type == 'sec'.or.type == 'secondes' ) timestep = ttt 1860 if ( type == 'TS' ) timestep = dt phys1860 if ( type == 'TS' ) timestep = dtime 1861 1861 1862 1862 print*,'type = ',type
Note: See TracChangeset
for help on using the changeset viewer.