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.
dynspg_oce.F90 in trunk/NEMO/OFF_SRC/DYN – NEMO

source: trunk/NEMO/OFF_SRC/DYN/dynspg_oce.F90 @ 719

Last change on this file since 719 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1MODULE dynspg_oce
2   !!======================================================================
3   !!                   ***  MODULE  dynspg_oce  ***
4   !! Ocean dynamics:  surface pressure gradient trend
5   !!======================================================================
6   !!   OPA 9.0 , LOCEAN-IPSL  (2005)
7   !!   $Header$
8   !!   This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
9   !!----------------------------------------------------------------------
10   
11   IMPLICIT NONE
12   PRIVATE
13
14#if defined key_dynspg_rl
15   !!----------------------------------------------------------------------
16   !!   'key_dynspg_rl'      rigid lid
17   !!----------------------------------------------------------------------
18   !! * Shared module variables
19   LOGICAL, PUBLIC, PARAMETER ::   lk_dynspg_rl = .TRUE. !: rigid flag flag
20
21#elif defined key_dynspg_flt || defined key_dynspg_ts || defined key_dynspg_exp
22   !!----------------------------------------------------------------------
23   !!   Default case :       free surface
24   !!   update the momentum trend with the surface pressure
25   !!   gradient in the free surface case with vector
26   !!   optimization
27   !!----------------------------------------------------------------------
28   !! * Shared module variables
29   LOGICAL, PUBLIC, PARAMETER ::   lk_dynspg_rl = .FALSE.     !: rigid flag
30#endif
31   
32   !!======================================================================
33END MODULE dynspg_oce
Note: See TracBrowser for help on using the repository browser.