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 9033 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90 – NEMO

Ignore:
Timestamp:
2017-12-14T11:29:10+01:00 (6 years ago)
Author:
timgraham
Message:

Commit final files from merge of NEMOGCM and some fixes for waves (taooc renamed tauwoc)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r9023 r9033  
    9696         &             ln_traqsr, ln_dm2dc ,                                         & 
    9797         &             ln_rnf   , nn_fwb   , ln_ssr   , ln_isf    , ln_apr_dyn ,     & 
    98          &             ln_wave  , ln_cdgw  , ln_sdw   , ln_tauoc  , ln_stcor   ,     & 
     98         &             ln_wave  , ln_cdgw  , ln_sdw   , ln_tauwoc  , ln_stcor   ,     & 
    9999         &             ln_tauw  , nn_lsm, nn_sdrift 
    100100      !!---------------------------------------------------------------------- 
     
    156156         WRITE(numout,*) '               Stokes drift corr. to vert. velocity ln_sdw        = ', ln_sdw 
    157157         WRITE(numout,*) '                  vertical parametrization          nn_sdrift     = ', nn_sdrift 
    158          WRITE(numout,*) '               wave modified ocean stress           ln_tauoc      = ', ln_tauoc 
     158         WRITE(numout,*) '               wave modified ocean stress           ln_tauwoc      = ', ln_tauwoc 
    159159         WRITE(numout,*) '               wave modified ocean stress component ln_tauw       = ', ln_tauw 
    160160         WRITE(numout,*) '               Stokes coriolis term                 ln_stcor      = ', ln_stcor 
     
    166166            CALL ctl_stop( 'The chosen nn_sdrift for Stokes drift vertical velocity must be 0, 1, or 2' ) 
    167167      ENDIF 
    168       IF( ln_tauoc .AND. ln_tauw ) & 
     168      IF( ln_tauwoc .AND. ln_tauw ) & 
    169169         CALL ctl_stop( 'More than one method for modifying the ocean stress has been selected ', & 
    170                                   '(ln_tauoc=.true. and ln_tauw=.true.)' ) 
    171       IF( ln_tauoc ) & 
    172          CALL ctl_warn( 'You are subtracting the wave stress to the ocean (ln_tauoc=.true.)' ) 
     170                                  '(ln_tauwoc=.true. and ln_tauw=.true.)' ) 
     171      IF( ln_tauwoc ) & 
     172         CALL ctl_warn( 'You are subtracting the wave stress to the ocean (ln_tauwoc=.true.)' ) 
    173173      IF( ln_tauw ) & 
    174174         CALL ctl_warn( 'The wave modified ocean stress components are used (ln_tauw=.true.) ', & 
     
    409409      IF( ln_mixcpl )          CALL sbc_cpl_rcv   ( kt, nn_fsbc, nn_ice )   ! forced-coupled mixed formulation after forcing 
    410410      ! 
    411       IF ( ln_wave .AND. (ln_tauoc .OR. ln_tauw) ) CALL sbc_wstress( )      ! Wind stress provided by waves  
     411      IF ( ln_wave .AND. (ln_tauwoc .OR. ln_tauw) ) CALL sbc_wstress( )      ! Wind stress provided by waves  
    412412      ! 
    413413      !                                            !==  Misc. Options  ==! 
Note: See TracChangeset for help on using the changeset viewer.