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 10478 for branches/UKMO/AMM15_v3_6_STABLE_package_collate_coupling/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_oce.F90 – NEMO

Ignore:
Timestamp:
2019-01-09T12:11:55+01:00 (5 years ago)
Author:
jcastill
Message:

Merged branch UKMO/r6232_HZG_WAVE-coupling@9868

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/AMM15_v3_6_STABLE_package_collate_coupling/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_oce.F90

    r10473 r10478  
    4242   LOGICAL , PUBLIC ::   ln_cpl         !: ocean-atmosphere coupled formulation 
    4343   LOGICAL , PUBLIC ::   ln_mixcpl      !: ocean-atmosphere forced-coupled mixed formulation 
     44   LOGICAL , PUBLIC ::   ln_wavcpl      !: ocean-wave forced-coupled mixed formulation  
     45   LOGICAL , PUBLIC ::   ll_purecpl     !: ocean-atmosphere or ocean-wave pure coupled formulation 
    4446   LOGICAL , PUBLIC ::   ln_dm2dc       !: Daily mean to Diurnal Cycle short wave (qsr) 
    4547   LOGICAL , PUBLIC ::   ln_rnf         !: runoffs / runoff mouths 
     
    6466   LOGICAL , PUBLIC ::   ln_wave        !: true if some coupling with wave model 
    6567   LOGICAL , PUBLIC ::   ln_cdgw        !: true if neutral drag coefficient from wave model 
    66    LOGICAL , PUBLIC ::   ln_sdw         !: true if 3d stokes drift from wave model 
     68   LOGICAL , PUBLIC ::   ln_sdw         !: true if 3d Stokes drift from wave model  
     69   LOGICAL , PUBLIC ::   ln_stcor       !: true if Stokes-Coriolis term is used 
    6770   LOGICAL , PUBLIC ::   ln_tauoc       !: true if normalized stress from wave is used   
    68    LOGICAL , PUBLIC ::   ln_stcor       !: true if Stokes-Coriolis term is used 
     71   LOGICAL , PUBLIC ::   ln_tauw        !: true if ocean stress components from wave is used   
     72   LOGICAL , PUBLIC ::   ln_phioc       !: true if wave energy to ocean is used   
     73   LOGICAL , PUBLIC ::   ln_rough       !: true if wave roughness equals significant wave height  
     74   LOGICAL , PUBLIC ::   ln_zdfqiao     !: Enhanced wave vertical mixing Qiao(2010) formulation flag  
     75   INTEGER , PUBLIC ::   nn_drag        ! type of formula to calculate wind stress from wind components  
     76   INTEGER , PUBLIC ::   nn_wmix        ! type of wave breaking mixing 
    6977   ! 
    7078   LOGICAL , PUBLIC ::   ln_icebergs    !: Icebergs 
     
    93101   INTEGER , PUBLIC, PARAMETER ::   jp_iam_sas  = 2      !: Multi executable configuration - SAS component 
    94102                                                         !  (internal OASIS coupling) 
     103   !!----------------------------------------------------------------------  
     104   !!           wind stress definition  
     105   !!----------------------------------------------------------------------  
     106   INTEGER, PUBLIC, PARAMETER ::   jp_ukmo  = 0        ! UKMO SHELF formulation  
     107   INTEGER, PUBLIC, PARAMETER ::   jp_std   = 1        ! standard formulation with forced or coupled drag coefficient   
     108   INTEGER, PUBLIC, PARAMETER ::   jp_const = 2        ! standard formulation with constant drag coefficient   
     109   INTEGER, PUBLIC, PARAMETER ::   jp_mcore = 3        ! momentum calculated from core forcing fields   
     110 
     111   !!----------------------------------------------------------------------  
     112   !!           Wave mixing vertical parameterization  
     113   !!----------------------------------------------------------------------  
     114   INTEGER, PUBLIC, PARAMETER ::   jp_craigbanner = 0  ! Craig and Banner formulation (original NEMO formulation -  
     115                                                       ! direct conversion of mechanical to turbulent energy)  
     116   INTEGER, PUBLIC, PARAMETER ::   jp_janssen     = 1  ! Janssen formulation - no assumption on direct energy conversion 
    95117   !!---------------------------------------------------------------------- 
    96118   !!              Ocean Surface Boundary Condition fields 
Note: See TracChangeset for help on using the changeset viewer.