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 3367 for branches/2012/dev_r3327_MERCATOR1_BDY/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2012-04-25T12:21:21+02:00 (12 years ago)
Author:
greffray
Message:

Merge tidal packages
Merge OBC-BDY packages
Add atmospheric pressure at the open boundaries
Modification of the namelist for AMM12 configuration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_r3327_MERCATOR1_BDY/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90

    r3294 r3367  
    4646   USE mppini          ! shared/distributed memory setting (mpp_init routine) 
    4747   USE domain          ! domain initialization             (dom_init routine) 
     48   USE tideini         ! tidal components initialization   (tide_ini routine) 
    4849   USE obcini          ! open boundary cond. initialization (obc_ini routine) 
    4950   USE bdyini          ! open boundary cond. initialization (bdy_init routine) 
    5051   USE bdydta          ! open boundary cond. initialization (bdy_dta_init routine) 
    51    USE bdytides        ! open boundary cond. initialization (tide_init routine) 
     52   USE bdytides        ! open boundary cond. initialization (bdytide_init routine) 
    5253   USE istate          ! initial state setting          (istate_init routine) 
    5354   USE ldfdyn          ! lateral viscosity setting      (ldfdyn_init routine) 
     
    314315 
    315316      IF( lk_obc        )   CALL     obc_init   ! Open boundaries  
     317 
     318                            CALL  istate_init   ! ocean initial state (Dynamics and tracers) 
     319 
     320                            CALL tide_init( nit000 )    ! Initialisation of the tidal harmonics 
     321 
    316322      IF( lk_bdy        )   CALL     bdy_init       ! Open boundaries initialisation 
    317323      IF( lk_bdy        )   CALL     bdy_dta_init   ! Open boundaries initialisation of external data arrays 
    318       IF( lk_bdy        )   CALL     tide_init      ! Open boundaries initialisation of tidal harmonic forcing 
     324      IF( lk_bdy        )   CALL     bdytide_init   ! Open boundaries initialisation of tidal harmonic forcing 
    319325 
    320326                            CALL flush(numout) 
    321327                            CALL dyn_nept_init  ! simplified form of Neptune effect 
    322328                            CALL flush(numout) 
    323  
    324                             CALL  istate_init   ! ocean initial state (Dynamics and tracers) 
    325329 
    326330      !                                     ! Ocean physics 
Note: See TracChangeset for help on using the changeset viewer.