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.
#1985 (10m SSH check too small for tidal runs) – NEMO

Opened 5 years ago

Closed 4 years ago

#1985 closed Enhancement (fixed)

10m SSH check too small for tidal runs

Reported by: deazer Owned by: deazer
Priority: normal Milestone:
Component: OCE Version: trunk
Severity: minor Keywords: ln_tide ssh
Cc:

Description

Context

stpctl.F90 The limit on SSH of 10m is a bit restrictive on Tidal runs.

   IF( lk_mpp )   CALL mpp_max( zsshmax )                ! min over the global domain
   !
   IF( MOD( kt, nwrite ) == 1 .AND. lwp )   WRITE(numout,*) ' ==>> time-step= ',kt,' ssh max:', zsshmax
   !
   IF( zsshmax > 10.e0 ) THEN
      IF (lk_mpp) THEN
         CALL mpp_maxloc( ABS(sshn(:,:)),tmask(:,:,1),zsshmax,ii,ij)
      ELSE
         ilocs = MAXLOC( ABS(sshn(:,:)) )
         ii = ilocs(1) + nimpp - 1
         ij = ilocs(2) + njmpp - 1
      ENDIF
      !

Proposal

Propose to increase the limit (20m?) if the run has tides (ln_tide)

Commit History (0)

(No commits)

Change History (6)

comment:1 Changed 5 years ago by clevy

  • Owner set to deazer
  • Status changed from new to assigned

comment:2 Changed 5 years ago by jchanut

I think it would be better to add an extra test for "negative" depth instead of this (with no wad).

comment:3 Changed 5 years ago by nemo

  • Keywords Misc. added

comment:4 Changed 5 years ago by nemo

  • Keywords Misc. removed

comment:5 Changed 5 years ago by nicolasmartin

  • Milestone Unscheduled deleted

comment:6 Changed 4 years ago by clem

  • Resolution set to fixed
  • Status changed from assigned to closed

now ssh limit is set to 20m

Note: See TracTickets for help on using tickets.