New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 11365 for NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/src/OCE/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2019-07-29T17:33:07+02:00 (5 years ago)
Author:
clem
Message:

Remove key_diaharm and key_diadct. Replace namdct by nam_diadct

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/src/OCE/nemogcm.F90

    r11317 r11365  
    5959   USE diaobs         ! Observation diagnostics       (dia_obs_init routine) 
    6060   USE diacfl         ! CFL diagnostics               (dia_cfl_init routine) 
     61   USE diaharm        ! tidal harmonics diagnostics  (dia_harm_init routine) 
    6162   USE step           ! NEMO time-stepping                 (stp     routine) 
    6263   USE icbini         ! handle bergs, initialisation 
     
    472473      IF( ln_diacfl    )   CALL dia_cfl_init    ! Initialise CFL diagnostics 
    473474                           CALL dia_ptr_init    ! Poleward TRansports initialization 
    474       IF( lk_diadct    )   CALL dia_dct_init    ! Sections tranports 
     475                           CALL dia_dct_init    ! Sections tranports 
    475476                           CALL dia_hsb_init    ! heat content, salt content and volume budgets 
    476477                           CALL     trd_init    ! Mixed-layer/Vorticity/Integral constraints trends 
     
    478479                           CALL dia_tmb_init    ! TMB outputs 
    479480                           CALL dia_25h_init    ! 25h mean  outputs 
    480       IF( ln_diaobs    )   CALL dia_obs( nit000-1 )   ! Observation operator for restart 
     481                           CALL dia_harm_init   ! tidal harmonics outputs 
     482     IF( ln_diaobs    )    CALL dia_obs( nit000-1 )   ! Observation operator for restart 
    481483 
    482484      !                                      ! Assimilation increments 
     
    639641      USE trc_oce   , ONLY : trc_oce_alloc 
    640642      USE bdy_oce   , ONLY : bdy_oce_alloc 
    641 #if defined key_diadct  
    642       USE diadct    , ONLY : diadct_alloc  
    643 #endif  
    644643      ! 
    645644      INTEGER :: ierr 
     
    653652      ierr = ierr + bdy_oce_alloc()    ! bdy masks (incl. initialization) 
    654653      ! 
    655 #if defined key_diadct  
    656       ierr = ierr + diadct_alloc ()    !  
    657 #endif  
    658       ! 
    659654      CALL mpp_sum( 'nemogcm', ierr ) 
    660655      IF( ierr /= 0 )   CALL ctl_stop( 'STOP', 'nemo_alloc: unable to allocate standard ocean arrays' ) 
Note: See TracChangeset for help on using the changeset viewer.