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

Ignore:
Timestamp:
2017-03-30T18:42:37+02:00 (7 years ago)
Author:
jcastill
Message:

Addition of the HZG drag coefficient modification for core forcing - the input winds will be read from the core forcing input files, instead of being calculated from a wind wave forcing file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/r6232_HZG_WAVE-coupling/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_oce.F90

    r7809 r7854  
    7070   LOGICAL , PUBLIC ::   ln_phioc       !: true if wave energy to ocean is used  
    7171   LOGICAL , PUBLIC ::   ln_stcor       !: true if Stokes-Coriolis term is used  
     72   INTEGER , PUBLIC ::   nn_drag        ! type of formula to calculate wind stress from wind components 
    7273   ! 
    7374   LOGICAL , PUBLIC ::   ln_icebergs    !: Icebergs 
     
    9697   INTEGER , PUBLIC, PARAMETER ::   jp_iam_sas  = 2      !: Multi executable configuration - SAS component 
    9798                                                         !  (internal OASIS coupling) 
     99   !!---------------------------------------------------------------------- 
     100   !!           wind stress definition 
     101   !!---------------------------------------------------------------------- 
     102   INTEGER, PUBLIC, PARAMETER ::   jp_ukmo  = 0        ! UKMO SHELF formulation 
     103   INTEGER, PUBLIC, PARAMETER ::   jp_std   = 1        ! standard formulation with forced or coupled drag coefficient  
     104   INTEGER, PUBLIC, PARAMETER ::   jp_const = 2        ! standard formulation with constant drag coefficient  
     105   INTEGER, PUBLIC, PARAMETER ::   jp_mcore = 3        ! momentum calculated from core forcing fields  
     106 
    98107   !!---------------------------------------------------------------------- 
    99108   !!              Ocean Surface Boundary Condition fields 
Note: See TracChangeset for help on using the changeset viewer.