Changeset 11142
- Timestamp:
- 2019-06-19T18:15:06+02:00 (6 years ago)
- Location:
- NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser/src/OCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser/src/OCE/C1D/step_c1d.F90
r11141 r11142 58 58 59 59 indic = 0 ! reset to no error condition 60 IF( kstp == nit000 ) CALL iom_init( "nemo") ! iom_put initialization (must be done after nemo_init for AGRIF+XIOS+OASIS) 60 IF( kstp == nit000 ) THEN 61 CALL iom_init( "nemo") ! iom_put initialization (must be done after nemo_init for AGRIF+XIOS+OASIS) 62 CALL dia_hth_init ! extra ML depth diagnostics, thermocline depths 63 END IF 61 64 IF( kstp /= nit000 ) CALL day( kstp ) ! Calendar (day was already called at nit000 in day_init) 62 65 CALL iom_setkt( kstp - nit000 + 1, "nemo" ) ! say to iom that we are at time step kstp -
NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser/src/OCE/nemogcm.F90
r11141 r11142 485 485 IF( lk_diadct ) CALL dia_dct_init ! Sections tranports 486 486 CALL dia_hsb_init ! heat content, salt content and volume budgets 487 CALL dia_hth_init ! extra ML depth diagnostics, thermocline depths488 487 CALL trd_init ! Mixed-layer/Vorticity/Integral constraints trends 489 488 CALL dia_obs_init ! Initialize observational data -
NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser/src/OCE/step.F90
r11141 r11142 101 101 IF( kstp == nit000 ) THEN ! initialize IOM context (must be done after nemo_init for AGRIF+XIOS+OASIS) 102 102 CALL iom_init( cxios_context ) ! for model grid (including passible AGRIF zoom) 103 IF( ln_crs ) CALL iom_init( TRIM(cxios_context)//"_crs" ) ! for coarse grid 103 IF( ln_crs ) CALL iom_init( TRIM(cxios_context)//"_crs" ) ! for coarse grid 104 CALL dia_hth_init ! extra ML depth diagnostics, thermocline depths 104 105 ENDIF 105 106 IF( kstp /= nit000 ) CALL day( kstp ) ! Calendar (day was already called at nit000 in day_init)
Note: See TracChangeset
for help on using the changeset viewer.