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.
bdy_par.F90 in branches/UKMO/dev_r5107_hadgem3_cplseq/NEMOGCM/NEMO/OPA_SRC/BDY – NEMO

source: branches/UKMO/dev_r5107_hadgem3_cplseq/NEMOGCM/NEMO/OPA_SRC/BDY/bdy_par.F90 @ 5591

Last change on this file since 5591 was 5477, checked in by cguiavarch, 9 years ago

Clear svn keywords from UKMO/dev_r5107_hadgem3_cplseq

File size: 2.1 KB
RevLine 
[911]1MODULE bdy_par
2   !!======================================================================
[1125]3   !!                      ***  MODULE bdy_par   ***
[911]4   !! Unstructured Open Boundary Cond. :   define related parameters
5   !!======================================================================
[1125]6   !! History :  1.0  !  2005-01  (J. Chanut, A. Sellar)  Original code
7   !!            3.0  !  2008-04  (NEMO team)  add in the reference version
[2528]8   !!            3.3  !  2010-09  (D. Storkey and E. O'Dea) update for Shelf configurations
[3294]9   !!            3.4  !  2011     (D. Storkey) rewrite in preparation for OBC-BDY merge
[911]10   !!----------------------------------------------------------------------
[2528]11#if defined   key_bdy
[1125]12   !!----------------------------------------------------------------------
[911]13   !!   'key_bdy' :                    Unstructured Open Boundary Condition
14   !!----------------------------------------------------------------------
15
16   IMPLICIT NONE
17   PUBLIC
18
[3294]19# if ! defined key_agrif
[2528]20   LOGICAL, PUBLIC, PARAMETER ::   lk_bdy  = .TRUE.   !: Unstructured Ocean Boundary Condition flag
[3294]21# else
22   LOGICAL, PUBLIC            ::   lk_bdy  = .TRUE.   !: Unstructured Ocean Boundary Condition flag
23# endif
24   INTEGER, PUBLIC, PARAMETER ::   jp_bdy  = 10       !: Maximum number of bdy sets
25   INTEGER, PUBLIC, PARAMETER ::   jpbgrd  = 3        !: Number of horizontal grid types used  (T, U, V)
26
[911]27#else
28   !!----------------------------------------------------------------------
[1125]29   !!   Default option :            NO Unstructured open boundary condition
[911]30   !!----------------------------------------------------------------------
[3294]31# if ! defined key_agrif
32   LOGICAL, PUBLIC, PARAMETER ::   lk_bdy  = .FALSE.   !: Unstructured Ocean Boundary Condition flag
33# else
34   LOGICAL, PUBLIC            ::   lk_bdy  = .FALSE.   !: Unstructured Ocean Boundary Condition flag
35# endif
[911]36#endif
37
[1125]38   !!----------------------------------------------------------------------
[2528]39   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
[5477]40   !! $Id$
[2528]41   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
[911]42   !!======================================================================
43END MODULE bdy_par
Note: See TracBrowser for help on using the repository browser.