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 3033 for branches/2011/dev_CMCC/NEMOGCM/NEMO/OPA_SRC/DYN/dynvor.F90 – NEMO

Ignore:
Timestamp:
2011-10-31T15:51:20+01:00 (13 years ago)
Author:
vichi
Message:

ticket #881. Step 3: Added changes from dev_r2855_CMCC4_con branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_CMCC/NEMOGCM/NEMO/OPA_SRC/DYN/dynvor.F90

    r2715 r3033  
    2323   !!       vor_mix  : mixed enstrophy/energy conserving (ln_dynvor_mix=T) 
    2424   !!       vor_een  : energy and enstrophy conserving   (ln_dynvor_een=T) 
     25   !!       vor_con  : BC consistent with analytical eqs.(ln_dynvor_con=T) 
    2526   !!   dyn_vor_init : set and control of the different vorticity option 
    2627   !!---------------------------------------------------------------------- 
     
    4647   LOGICAL, PUBLIC ::   ln_dynvor_mix = .FALSE.   !: mixed scheme 
    4748   LOGICAL, PUBLIC ::   ln_dynvor_een = .FALSE.   !: energy and enstrophy conserving scheme 
     49   LOGICAL, PUBLIC ::   ln_dynvor_con = .FALSE.   !: consistency with flux form 
    4850 
    4951   INTEGER ::   nvor = 0   ! type of vorticity trend used 
     
    685687      INTEGER ::   ioptio          ! local integer 
    686688      !! 
    687       NAMELIST/namdyn_vor/ ln_dynvor_ens, ln_dynvor_ene, ln_dynvor_mix, ln_dynvor_een 
     689      NAMELIST/namdyn_vor/ ln_dynvor_ens, ln_dynvor_ene, ln_dynvor_mix, ln_dynvor_een, ln_dynvor_con 
    688690      !!---------------------------------------------------------------------- 
    689691 
     
    700702         WRITE(numout,*) '           mixed enstrophy/energy conserving scheme   ln_dynvor_mix = ', ln_dynvor_mix 
    701703         WRITE(numout,*) '           enstrophy and energy conserving scheme     ln_dynvor_een = ', ln_dynvor_een 
     704         WRITE(numout,*) '           consistency with flux form                 ln_dynvor_con = ', ln_dynvor_con 
    702705      ENDIF 
    703706 
Note: See TracChangeset for help on using the changeset viewer.