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 1221 for trunk/NEMO/C1D_SRC/step_c1d.F90 – NEMO

Ignore:
Timestamp:
2008-10-31T14:48:31+01:00 (15 years ago)
Author:
ctlod
Message:

correct compilation errors when using key_c1d cpp key, see ticket: #274

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/C1D_SRC/step_c1d.F90

    r1164 r1221  
    3838   USE eosbn2          ! equation of state                (eos_bn2 routine) 
    3939 
    40    USE dyncor1d        ! Coriolis term (c1d case)         (dyn_cor_1d     ) 
     40   USE dyncor_c1d      ! Coriolis term (c1d case)         (dyn_cor_1d     ) 
    4141   USE dynzdf          ! vertical diffusion               (dyn_zdf routine) 
    42    USE dynnxt1d        ! time-stepping                    (dyn_nxt routine) 
     42   USE dynnxt_c1d      ! time-stepping                    (dyn_nxt routine) 
     43   USE diawri_c1d      ! write outputs                (dia_wri_c1d routine) 
    4344 
    4445   USE zdfbfr          ! bottom friction                  (zdf_bfr routine) 
     
    165166                             CALL tra_sbc    ( kstp )        ! surface boundary condition 
    166167      IF( ln_traqsr      )   CALL tra_qsr    ( kstp )        ! penetrative solar radiation qsr 
    167                              CALL tra_adv    ( kstp )        ! horizontal & vertical advection 
    168168      IF( lk_zdfkpp )        CALL tra_kpp    ( kstp )        ! KPP non-local tracer fluxes 
    169169                             CALL tra_zdf    ( kstp )        ! vertical mixing 
     
    180180                               va(:,:,:) = 0.e0 
    181181 
    182                                CALL dyn_vor_c1d( kstp )       ! vorticity term including Coriolis 
     182                               CALL dyn_cor_c1d( kstp )       ! vorticity term including Coriolis 
    183183                               CALL dyn_zdf    ( kstp )       ! vertical diffusion 
    184184                               CALL dyn_nxt_c1d( kstp )       ! lateral velocity at next time step 
Note: See TracChangeset for help on using the changeset viewer.