Changeset 1457 for trunk/NEMO/OFF_SRC
- Timestamp:
- 2009-05-23T10:16:38+02:00 (15 years ago)
- Location:
- trunk/NEMO/OFF_SRC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEMO/OFF_SRC/IOM/iom.F90
r1450 r1457 33 33 PUBLIC ! must be public to be able to access iom_def through iom 34 34 35 #if defined key_iomput 36 LOGICAL, PUBLIC, PARAMETER :: lk_iomput = .TRUE. !: iom_put flag 37 #else 38 LOGICAL, PUBLIC, PARAMETER :: lk_iomput = .FALSE. !: iom_put flag 39 #endif 40 35 41 PUBLIC iom_init, iom_open, iom_close, iom_setkt, iom_varid, iom_get, iom_gettime, iom_rstput, iom_put 36 42 -
trunk/NEMO/OFF_SRC/opa.F90
r1450 r1457 225 225 226 226 CALL dta_dyn( nit000 ) ! Initialization for the dynamics 227 227 228 228 CALL trc_ini ! Passive tracers 229 230 CALL day_init ! Calendar231 229 ! ! Ocean physics 232 230 CALL tra_qsr_init ! Solar radiation penetration -
trunk/NEMO/OFF_SRC/step.F90
r1291 r1457 22 22 USE trcrst ! restart for passive tracers 23 23 USE stpctl ! time stepping control (stp_ctl routine) 24 USE iom 24 25 25 26 IMPLICIT NONE … … 70 71 !! * Arguments 71 72 INTEGER, INTENT( in ) :: kstp ! ocean time-step index 72 73 !! * local declarations74 INTEGER :: indic ! error indicator if < 075 73 !! --------------------------------------------------------------------- 76 77 indic = 1 ! reset to no error condition78 74 79 75 CALL day( kstp ) ! Calendar 80 76 81 CALL dta_dyn( kstp ) ! Interpolation of the dynamical fields77 IF( lk_iomput ) CALL iom_setkt( kstp ) ! say to iom that we are at time step kstp 82 78 83 CALL trc_stp( kstp, indic) ! time-stepping 79 CALL dta_dyn( kstp ) ! Interpolation of the dynamical fields 80 81 CALL trc_stp( kstp ) ! time-stepping 84 82 85 83
Note: See TracChangeset
for help on using the changeset viewer.