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 11194 for NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/src/OCE/LBC/lbclnk.F90 – NEMO

Ignore:
Timestamp:
2019-06-27T16:51:16+02:00 (5 years ago)
Author:
smasson
Message:

dev_r10984_HPC-13 : reorganization of lbclnk, part 1: bugfix following [11192], see #2285

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10984_HPC-13_IRRMANN_BDY_optimization/src/OCE/LBC/lbclnk.F90

    r11192 r11194  
    6767!$AGRIF_END_DO_NOT_TREAT 
    6868#endif 
     69 
     70   INTEGER, PUBLIC, PARAMETER ::   jpfillnothing = 1 
     71   INTEGER, PUBLIC, PARAMETER ::   jpfillcst     = 2 
     72   INTEGER, PUBLIC, PARAMETER ::   jpfillcopy    = 3 
     73   INTEGER, PUBLIC, PARAMETER ::   jpfillperio   = 4 
     74   INTEGER, PUBLIC, PARAMETER ::   jpfillmpi     = 5 
     75 
    6976   !!---------------------------------------------------------------------- 
    7077   !! NEMO/OCE 4.0 , NEMO Consortium (2018) 
     
    144151   !! 
    145152   !!   * Argument : dummy argument use in mpp_lnk_... routines 
    146    !!                ptab   :   array or pointer of arrays on which the boundary condition is applied 
    147    !!                cd_nat :   nature of array grid-points 
    148    !!                psgn   :   sign used across the north fold boundary 
    149    !!                kfld   :   optional, number of pt3d arrays 
    150    !!                cd_mpp :   optional, fill the overlap area only 
    151    !!                pval   :   optional, background value (used at closed boundaries) 
     153   !!                ptab      :   array or pointer of arrays on which the boundary condition is applied 
     154   !!                cd_nat    :   nature of array grid-points 
     155   !!                psgn      :   sign used across the north fold boundary 
     156   !!                kfld      :   optional, number of pt3d arrays 
     157   !!                kfillmode :   optional, method to be use to fill the halos (see jpfill* variables) 
     158   !!                pfillval  :   optional, background value (used with jpfillcopy) 
    152159   !!---------------------------------------------------------------------- 
    153160   ! 
     
    195202   !! 
    196203   !!   * Argument : dummy argument use in mpp_nfd_... routines 
    197    !!                ptab   :   array or pointer of arrays on which the boundary condition is applied 
    198    !!                cd_nat :   nature of array grid-points 
    199    !!                psgn   :   sign used across the north fold boundary 
    200    !!                kfld   :   optional, number of pt3d arrays 
    201    !!                cd_mpp :   optional, fill the overlap area only 
    202    !!                pval   :   optional, background value (used at closed boundaries) 
     204   !!                ptab      :   array or pointer of arrays on which the boundary condition is applied 
     205   !!                cd_nat    :   nature of array grid-points 
     206   !!                psgn      :   sign used across the north fold boundary 
     207   !!                kfld      :   optional, number of pt3d arrays 
     208   !!                kfillmode :   optional, method to be use to fill the halos (see jpfill* variables) 
     209   !!                pfillval  :   optional, background value (used with jpfillcopy) 
    203210   !!---------------------------------------------------------------------- 
    204211   ! 
Note: See TracChangeset for help on using the changeset viewer.