File indexing completed on 2018-03-02 18:40:35 UTC
view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
f1a85b1a3d Andr*0001 #include "FIZHI_OPTIONS.h"
0002
0003
0004
0005
0006 SUBROUTINE FIZHI_WRITE_DATETIME( myTime, myIter, myThid )
0007
0008
0009
0010
0011 implicit none
0012
0013 #include "chronos.h"
0014
0015
3768927683 Andr*0016 integer myIter, myThid
0017 _RL myTime
f1a85b1a3d Andr*0018
0019
0020 integer ku
0021
0022 if( myThid.eq.1) then
0023
b1696b022e Jean*0024 CALL MDSFINDUNIT( ku, myThid )
0025 open(ku,file='datetime',form='formatted')
0026 write(ku,1000)nymd,nhms
f1a85b1a3d Andr*0027 print *,' Writing datetime file: NYMD = ',nymd,' NHMS = ',nhms
b1696b022e Jean*0028 close (ku)
f1a85b1a3d Andr*0029 endif
0030 1000 format(i8,2x,i6)
0031
0032 return
0033 end