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 2715 for trunk/NEMOGCM/NEMO/OPA_SRC/OBC/obc_par.F90 – NEMO

Ignore:
Timestamp:
2011-03-30T17:58:35+02:00 (13 years ago)
Author:
rblod
Message:

First attempt to put dynamic allocation on the trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/NEMO/OPA_SRC/OBC/obc_par.F90

    r2528 r2715  
    44   !! Open Boundary Cond. :   define related parameters 
    55   !!============================================================================== 
     6   !! history :  OPA  ! 1991-01 (CLIPPER)  Original code  
     7   !!   NEMO     1.0  ! 2002-04   (C. Talandier)  modules 
     8   !!             -   ! 2004/06   (F. Durand) jptobc is defined as a parameter 
     9   !!---------------------------------------------------------------------- 
    610#if defined key_obc 
    711   !!---------------------------------------------------------------------- 
    812   !!   'key_obc' :                                 Open Boundary Condition 
    913   !!---------------------------------------------------------------------- 
    10    !! history : 
    11    !!  8.0   01/91   (CLIPPER)  Original code  
    12    !!  9.0   06/02   (C. Talandier)  modules 
    13    !!        06/04   (F. Durand) ORCA_R2_ZIND config 
    14    !!        06/04   (F. Durand) jptobc is defined as a parameter,  
    15    !!            in order to allow time-dependent OBCs fields on input 
    16    !!---------------------------------------------------------------------- 
    17    !! * Modules used 
    1814   USE par_oce         ! ocean parameters 
    1915 
    2016   IMPLICIT NONE 
    2117   PUBLIC 
    22    !!---------------------------------------------------------------------- 
    23    !! NEMO/OPA 3.3 , NEMO Consortium (2010) 
    24    !! $Id$  
    25    !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt) 
    26    !!---------------------------------------------------------------------- 
     18 
    2719#if ! defined key_agrif 
    2820   LOGICAL, PUBLIC, PARAMETER ::   lk_obc = .TRUE.     !: Ocean Boundary Condition flag 
     
    4739   !! open boundary parameter 
    4840   !!--------------------------------------------------------------------- 
    49    INTEGER, PARAMETER ::     &  !: time dimension of the BCS fields on input 
    50       jptobc  =         2  
     41   INTEGER, PARAMETER ::   jptobc      =  2        !: time dimension of the BCS fields on input 
     42    
    5143   !! * EAST open boundary 
    52    LOGICAL, PARAMETER ::     &  !: 
    53       lp_obc_east = .FALSE.     !: to active or not the East open boundary 
    54      INTEGER   & 
     44   LOGICAL, PARAMETER ::   lp_obc_east = .FALSE.   !: to active or not the East open boundary 
     45   INTEGER   & 
    5546#if !defined key_agrif 
    5647     , PARAMETER   &  
     
    6455 
    6556   !! * WEST open boundary 
    66    LOGICAL, PARAMETER ::     &  !: 
    67       lp_obc_west = .FALSE.     !: to active or not the West open boundary 
    68      INTEGER   & 
     57   LOGICAL, PARAMETER ::   lp_obc_west = .FALSE.   !: to active or not the West open boundary 
     58   INTEGER   & 
    6959#if !defined key_agrif 
    7060     , PARAMETER   &  
     
    7868 
    7969   !! * NORTH open boundary 
    80    LOGICAL, PARAMETER ::     &  !: 
    81       lp_obc_north = .FALSE.    !: to active or not the North open boundary 
     70   LOGICAL, PARAMETER ::   lp_obc_north = .FALSE.   !: to active or not the North open boundary 
    8271     INTEGER   & 
    8372#if !defined key_agrif 
     
    9281 
    9382   !! * SOUTH open boundary 
    94    LOGICAL, PARAMETER ::     &  !: 
    95       lp_obc_south = .FALSE.    !: to active or not the South open boundary 
     83   LOGICAL, PARAMETER ::   lp_obc_south = .FALSE.   !: to active or not the South open boundary 
    9684     INTEGER   & 
    9785#if !defined key_agrif 
     
    10593      jpisfm1 =  jpisf-1        !: last  ocean point         "                 " 
    10694    
    107    INTEGER, PARAMETER ::     &  !: 
    108       jpnic = 2700              !: maximum number of isolated coastlines points  
     95   INTEGER, PARAMETER ::   jpnic = 2700   !: maximum number of isolated coastlines points  
    10996 
    11097# endif 
     
    117104#endif 
    118105 
     106   !!---------------------------------------------------------------------- 
     107   !! NEMO/OPA 3.3 , NEMO Consortium (2010) 
     108   !! $Id$  
     109   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt) 
    119110   !!====================================================================== 
    120111END MODULE obc_par 
Note: See TracChangeset for help on using the changeset viewer.