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/DEV_r1879_FCM/NEMOGCM/NEMO/OPA_SRC/BDY – NEMO

source: branches/DEV_r1879_FCM/NEMOGCM/NEMO/OPA_SRC/BDY/bdy_par.F90 @ 2013

Last change on this file since 2013 was 2013, checked in by smasson, 14 years ago

remove propertie svn:executabe of fortran files in DEV_r1879_FCM

  • Property svn:keywords set to Id
File size: 1.9 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
[911]8   !!----------------------------------------------------------------------
[1125]9#if defined key_bdy
10   !!----------------------------------------------------------------------
[911]11   !!   'key_bdy' :                    Unstructured Open Boundary Condition
12   !!----------------------------------------------------------------------
13
14   IMPLICIT NONE
15   PUBLIC
16
17
[1125]18   LOGICAL, PUBLIC, PARAMETER ::   lk_bdy  = .TRUE.  !: Unstructured Ocean Boundary Condition flag
19   INTEGER, PUBLIC, PARAMETER ::   jpbdta  = 5000    !: Max length of bdy field in file
20   INTEGER, PUBLIC, PARAMETER ::   jpbdim  = 5000    !: Max length of bdy field on a processor
21   INTEGER, PUBLIC, PARAMETER ::   jpbtime = 1000    !: Max number of time dumps per file
22   INTEGER, PUBLIC, PARAMETER ::   jpbgrd  = 3       !: Number of horizontal grid types used  (T, u, v, f)
[911]23#else
24   !!----------------------------------------------------------------------
[1125]25   !!   Default option :            NO Unstructured open boundary condition
[911]26   !!----------------------------------------------------------------------
[1125]27   LOGICAL, PUBLIC, PARAMETER ::   lk_bdy = .FALSE.   !: Unstructured Ocean Boundary Condition flag
[911]28#endif
29
[1125]30   !!----------------------------------------------------------------------
31   !! NEMO/OPA 3.0 , LOCEAN-IPSL (2008)
[1146]32   !! $Id$
[1125]33   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
[911]34   !!======================================================================
35END MODULE bdy_par
Note: See TracBrowser for help on using the repository browser.