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 6991 for branches/UKMO/CO6_KD490_amm7oper/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90 – NEMO

Ignore:
Timestamp:
2016-10-05T12:08:37+02:00 (8 years ago)
Author:
kingr
Message:

Adding Momme's bdy changes for zerograd and neumann conditions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/CO6_KD490_amm7oper/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90

    r6331 r6991  
    213213             dta_bdy(ib_bdy)%ll_u3d = .true. 
    214214             dta_bdy(ib_bdy)%ll_v3d = .true. 
     215          CASE('neumann')              
     216             IF(lwp) WRITE(numout,*) '      Neumann conditions' 
     217             dta_bdy(ib_bdy)%ll_u3d = .false. 
     218             dta_bdy(ib_bdy)%ll_v3d = .false. 
     219          CASE('zerograd') 
     220             IF(lwp) WRITE(numout,*) '      Zero gradient for baroclinic velocities' 
     221             dta_bdy(ib_bdy)%ll_u3d = .false. 
     222             dta_bdy(ib_bdy)%ll_v3d = .false. 
    215223          CASE('zero') 
    216224             IF(lwp) WRITE(numout,*) '      Zero baroclinic velocities (runoff case)' 
Note: See TracChangeset for help on using the changeset viewer.