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 11080 for branches/UKMO/r8395_India_uncoupled/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg.F90 – NEMO

Ignore:
Timestamp:
2019-06-06T15:32:24+02:00 (5 years ago)
Author:
jcastill
Message:

Latest changes from Jason

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/r8395_India_uncoupled/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg.F90

    r10684 r11080  
    3939   INTEGER ::   nspg = 0   ! type of surface pressure gradient scheme defined from lk_dynspg_...  
    4040 
     41   LOGICAL, PUBLIC ::  ln_ulimit 
     42   REAL(wp), PUBLIC :: cn_ulimit,cnn_ulimit 
     43 
    4144   !                       ! Parameter to control the surface pressure gradient scheme 
    4245   INTEGER, PARAMETER ::   np_TS  = 1   ! split-explicit time stepping (Time-Splitting) 
     
    183186      NAMELIST/namdyn_spg/ ln_dynspg_exp       , ln_dynspg_ts,   & 
    184187      &                    ln_bt_fw, ln_bt_av  , ln_bt_auto  ,   & 
    185       &                    nn_baro , rn_bt_cmax, nn_bt_flt 
     188      &                    nn_baro , rn_bt_cmax, nn_bt_flt   ,   & 
     189                           ln_ulimit, cn_ulimit, cnn_ulimit 
    186190      !!---------------------------------------------------------------------- 
    187191      ! 
     
    203207         WRITE(numout,*) '     Explicit free surface                  ln_dynspg_exp = ', ln_dynspg_exp 
    204208         WRITE(numout,*) '     Free surface with time splitting       ln_dynspg_ts  = ', ln_dynspg_ts 
     209         WRITE(numout,*) '     Limit velocities                       ln_ulimit     = ', ln_ulimit 
     210         WRITE(numout,*) '     Limit velocities      max inverse Courant number     = ', cn_ulimit 
     211         WRITE(numout,*) '     Limit velocities   multiplier for divergant flow     = ', cnn_ulimit 
    205212      ENDIF 
    206213      !                          ! Control of surface pressure gradient scheme options 
Note: See TracChangeset for help on using the changeset viewer.