Changeset 10006
- Timestamp:
- 2018-07-26T16:24:25+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_GO6_package_STARTHOUR/NEMOGCM/NEMO/OPA_SRC/IOM/iom.F90
r9830 r10006 125 125 CASE (30) ; CALL xios_set_context_attr(TRIM(clname), calendar_type= "D360") 126 126 END SELECT 127 WRITE(cldate,"(i4.4,'-',i2.2,'-',i2.2,' 00:00:00')") nyear,nmonth,nday127 WRITE(cldate,"(i4.4,'-',i2.2,'-',i2.2,',i2.2,':',i2.2,':00')") nyear,nmonth,nday,nhour,nminute 128 128 CALL xios_set_context_attr(TRIM(clname), start_date=cldate ) 129 129 #else … … 131 131 SELECT CASE ( nleapy ) ! Choose calendar for IOIPSL 132 132 CASE ( 1) ; CALL xios_define_calendar( TYPE = "Gregorian", time_origin = xios_date(1900,01,01,00,00,00), & 133 & start_date = xios_date(nyear,nmonth,nday, 0,0,0) )133 & start_date = xios_date(nyear,nmonth,nday,nhour,nminute,0) ) 134 134 CASE ( 0) ; CALL xios_define_calendar( TYPE = "NoLeap" , time_origin = xios_date(1900,01,01,00,00,00), & 135 & start_date = xios_date(nyear,nmonth,nday, 0,0,0) )135 & start_date = xios_date(nyear,nmonth,nday,nhour,nminute,0) ) 136 136 CASE (30) ; CALL xios_define_calendar( TYPE = "D360" , time_origin = xios_date(1900,01,01,00,00,00), & 137 & start_date = xios_date(nyear,nmonth,nday, 0,0,0) )137 & start_date = xios_date(nyear,nmonth,nday,nhour,nminute,0) ) 138 138 END SELECT 139 139 #endif
Note: See TracChangeset
for help on using the changeset viewer.