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.
lbclnk.F90 in NEMO/branches/UKMO/dev_r9922_GC3_cpl_pkg/src/OCE/LBC – NEMO

source: NEMO/branches/UKMO/dev_r9922_GC3_cpl_pkg/src/OCE/LBC/lbclnk.F90 @ 9947

Last change on this file since 9947 was 9947, checked in by timgraham, 6 years ago

Clear svn keywords

File size: 12.3 KB
Line 
1MODULE lbclnk
2   !!======================================================================
3   !!                       ***  MODULE  lbclnk  ***
4   !! NEMO        : lateral boundary conditions
5   !!=====================================================================
6   !! History :  OPA  ! 1997-06  (G. Madec)  Original code
7   !!   NEMO     1.0  ! 2002-09  (G. Madec)  F90: Free form and module
8   !!            3.2  ! 2009-03  (R. Benshila)  External north fold treatment 
9   !!            3.5  ! 2012     (S.Mocavero, I. Epicoco)  optimization of BDY comm. via lbc_bdy_lnk and lbc_obc_lnk
10   !!            3.4  ! 2012-12  (R. Bourdalle-Badie, G. Reffray)  add a C1D case 
11   !!            3.6  ! 2015-06  (O. Tintó and M. Castrillo)  add lbc_lnk_multi 
12   !!            4.0  ! 2017-03  (G. Madec) automatique allocation of array size (use with any 3rd dim size)
13   !!             -   ! 2017-04  (G. Madec) remove duplicated routines (lbc_lnk_2d_9, lbc_lnk_2d_multiple, lbc_lnk_3d_gather)
14   !!             -   ! 2017-05  (G. Madec) create generic.h90 files to generate all lbc and north fold routines
15   !!----------------------------------------------------------------------
16#if defined key_mpp_mpi
17   !!----------------------------------------------------------------------
18   !!   'key_mpp_mpi'             MPI massively parallel processing library
19   !!----------------------------------------------------------------------
20   !!           define the generic interfaces of lib_mpp routines
21   !!----------------------------------------------------------------------
22   !!   lbc_lnk       : generic interface for mpp_lnk_3d and mpp_lnk_2d routines defined in lib_mpp
23   !!   lbc_bdy_lnk   : generic interface for mpp_lnk_bdy_2d and mpp_lnk_bdy_3d routines defined in lib_mpp
24   !!----------------------------------------------------------------------
25   USE par_oce        ! ocean dynamics and tracers   
26   USE lib_mpp        ! distributed memory computing library
27   USE lbcnfd         ! north fold
28
29   INTERFACE lbc_lnk
30      MODULE PROCEDURE   mpp_lnk_2d      , mpp_lnk_3d      , mpp_lnk_4d
31   END INTERFACE
32   INTERFACE lbc_lnk_ptr
33      MODULE PROCEDURE   mpp_lnk_2d_ptr  , mpp_lnk_3d_ptr  , mpp_lnk_4d_ptr
34   END INTERFACE
35   INTERFACE lbc_lnk_multi
36      MODULE PROCEDURE   lbc_lnk_2d_multi, lbc_lnk_3d_multi, lbc_lnk_4d_multi
37   END INTERFACE
38   !
39   INTERFACE lbc_bdy_lnk
40      MODULE PROCEDURE mpp_lnk_bdy_2d, mpp_lnk_bdy_3d, mpp_lnk_bdy_4d
41   END INTERFACE
42   !
43   INTERFACE lbc_lnk_icb
44      MODULE PROCEDURE mpp_lnk_2d_icb
45   END INTERFACE
46
47   PUBLIC   lbc_lnk       ! ocean/ice lateral boundary conditions
48   PUBLIC   lbc_lnk_multi ! modified ocean/ice lateral boundary conditions
49   PUBLIC   lbc_bdy_lnk   ! ocean lateral BDY boundary conditions
50   PUBLIC   lbc_lnk_icb   ! iceberg lateral boundary conditions
51
52   !!----------------------------------------------------------------------
53   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
54   !! $Id$
55   !! Software governed by the CeCILL licence     (./LICENSE)
56   !!----------------------------------------------------------------------
57CONTAINS
58
59#else
60   !!----------------------------------------------------------------------
61   !!   Default option                              shared memory computing
62   !!----------------------------------------------------------------------
63   !!                routines setting the appropriate values
64   !!         on first and last row and column of the global domain
65   !!----------------------------------------------------------------------
66   !!   lbc_lnk_sum_3d: compute sum over the halos on a 3D variable on ocean mesh
67   !!   lbc_lnk_sum_3d: compute sum over the halos on a 2D variable on ocean mesh
68   !!   lbc_lnk       : generic interface for lbc_lnk_3d and lbc_lnk_2d
69   !!   lbc_lnk_3d    : set the lateral boundary condition on a 3D variable on ocean mesh
70   !!   lbc_lnk_2d    : set the lateral boundary condition on a 2D variable on ocean mesh
71   !!   lbc_bdy_lnk   : set the lateral BDY boundary condition
72   !!----------------------------------------------------------------------
73   USE oce            ! ocean dynamics and tracers   
74   USE dom_oce        ! ocean space and time domain
75   USE in_out_manager ! I/O manager
76   USE lbcnfd         ! north fold
77
78   IMPLICIT NONE
79   PRIVATE
80
81   INTERFACE lbc_lnk
82      MODULE PROCEDURE   lbc_lnk_2d      , lbc_lnk_3d      , lbc_lnk_4d
83   END INTERFACE
84   INTERFACE lbc_lnk_ptr
85      MODULE PROCEDURE   lbc_lnk_2d_ptr  , lbc_lnk_3d_ptr  , lbc_lnk_4d_ptr
86   END INTERFACE
87   INTERFACE lbc_lnk_multi
88      MODULE PROCEDURE   lbc_lnk_2d_multi, lbc_lnk_3d_multi, lbc_lnk_4d_multi
89   END INTERFACE
90   !
91   INTERFACE lbc_bdy_lnk
92      MODULE PROCEDURE lbc_bdy_lnk_2d, lbc_bdy_lnk_3d
93   END INTERFACE
94   !
95   INTERFACE lbc_lnk_icb
96      MODULE PROCEDURE lbc_lnk_2d_icb
97   END INTERFACE
98   
99   PUBLIC   lbc_lnk       ! ocean/ice  lateral boundary conditions
100   PUBLIC   lbc_lnk_multi ! modified ocean/ice lateral boundary conditions
101   PUBLIC   lbc_bdy_lnk   ! ocean lateral BDY boundary conditions
102   PUBLIC   lbc_lnk_icb   ! iceberg lateral boundary conditions
103   
104   !!----------------------------------------------------------------------
105   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
106   !! $Id$
107   !! Software governed by the CeCILL licence     (./LICENSE)
108   !!----------------------------------------------------------------------
109CONTAINS
110
111   !!======================================================================
112   !!   Default option                           3D shared memory computing
113   !!======================================================================
114   !!          routines setting land point, or east-west cyclic,
115   !!             or north-south cyclic, or north fold values
116   !!         on first and last row and column of the global domain
117   !!----------------------------------------------------------------------
118
119   !!----------------------------------------------------------------------
120   !!                   ***  routine lbc_lnk_(2,3,4)d  ***
121   !!
122   !!   * Argument : dummy argument use in lbc_lnk_... routines
123   !!                ptab   :   array or pointer of arrays on which the boundary condition is applied
124   !!                cd_nat :   nature of array grid-points
125   !!                psgn   :   sign used across the north fold boundary
126   !!                kfld   :   optional, number of pt3d arrays
127   !!                cd_mpp :   optional, fill the overlap area only
128   !!                pval   :   optional, background value (used at closed boundaries)
129   !!----------------------------------------------------------------------
130   !
131   !                       !==  2D array and array of 2D pointer  ==!
132   !
133#  define DIM_2d
134#     define ROUTINE_LNK           lbc_lnk_2d
135#     include "lbc_lnk_generic.h90"
136#     undef ROUTINE_LNK
137#     define MULTI
138#     define ROUTINE_LNK           lbc_lnk_2d_ptr
139#     include "lbc_lnk_generic.h90"
140#     undef ROUTINE_LNK
141#     undef MULTI
142#  undef DIM_2d
143   !
144   !                       !==  3D array and array of 3D pointer  ==!
145   !
146#  define DIM_3d
147#     define ROUTINE_LNK           lbc_lnk_3d
148#     include "lbc_lnk_generic.h90"
149#     undef ROUTINE_LNK
150#     define MULTI
151#     define ROUTINE_LNK           lbc_lnk_3d_ptr
152#     include "lbc_lnk_generic.h90"
153#     undef ROUTINE_LNK
154#     undef MULTI
155#  undef DIM_3d
156   !
157   !                       !==  4D array and array of 4D pointer  ==!
158   !
159#  define DIM_4d
160#     define ROUTINE_LNK           lbc_lnk_4d
161#     include "lbc_lnk_generic.h90"
162#     undef ROUTINE_LNK
163#     define MULTI
164#     define ROUTINE_LNK           lbc_lnk_4d_ptr
165#     include "lbc_lnk_generic.h90"
166#     undef ROUTINE_LNK
167#     undef MULTI
168#  undef DIM_4d
169   
170   !!======================================================================
171   !!   identical routines in both C1D and shared memory computing
172   !!======================================================================
173
174   !!----------------------------------------------------------------------
175   !!                   ***  routine lbc_bdy_lnk_(2,3)d  ***
176   !!
177   !!   wrapper rountine to 'lbc_lnk_3d'. This wrapper is used
178   !!   to maintain the same interface with regards to the mpp case
179   !!----------------------------------------------------------------------
180   
181   SUBROUTINE lbc_bdy_lnk_3d( pt3d, cd_type, psgn, ib_bdy )
182      !!----------------------------------------------------------------------
183      REAL(wp), DIMENSION(:,:,:), INTENT(inout) ::   pt3d      ! 3D array on which the lbc is applied
184      CHARACTER(len=1)          , INTENT(in   ) ::   cd_type   ! nature of pt3d grid-points
185      REAL(wp)                  , INTENT(in   ) ::   psgn      ! sign used across north fold
186      INTEGER                   , INTENT(in   ) ::   ib_bdy    ! BDY boundary set
187      !!----------------------------------------------------------------------
188      CALL lbc_lnk_3d( pt3d, cd_type, psgn)
189   END SUBROUTINE lbc_bdy_lnk_3d
190
191
192   SUBROUTINE lbc_bdy_lnk_2d( pt2d, cd_type, psgn, ib_bdy )
193      !!----------------------------------------------------------------------
194      REAL(wp), DIMENSION(:,:), INTENT(inout) ::   pt2d      ! 3D array on which the lbc is applied
195      CHARACTER(len=1)        , INTENT(in   ) ::   cd_type   ! nature of pt3d grid-points
196      REAL(wp)                , INTENT(in   ) ::   psgn      ! sign used across north fold
197      INTEGER                 , INTENT(in   ) ::   ib_bdy    ! BDY boundary set
198      !!----------------------------------------------------------------------
199      CALL lbc_lnk_2d( pt2d, cd_type, psgn)
200   END SUBROUTINE lbc_bdy_lnk_2d
201
202
203!!gm  This routine should be removed with an optional halos size added in argument of generic routines
204
205   SUBROUTINE lbc_lnk_2d_icb( pt2d, cd_type, psgn, ki, kj )
206      !!----------------------------------------------------------------------
207      REAL(wp), DIMENSION(:,:), INTENT(inout) ::   pt2d      ! 2D array on which the lbc is applied
208      CHARACTER(len=1)        , INTENT(in   ) ::   cd_type   ! nature of pt3d grid-points
209      REAL(wp)                , INTENT(in   ) ::   psgn      ! sign used across north fold
210      INTEGER                 , INTENT(in   ) ::   ki, kj    ! sizes of extra halo (not needed in non-mpp)
211      !!----------------------------------------------------------------------
212      CALL lbc_lnk_2d( pt2d, cd_type, psgn )
213   END SUBROUTINE lbc_lnk_2d_icb
214!!gm end
215
216#endif
217
218   !!======================================================================
219   !!   identical routines in both distributed and shared memory computing
220   !!======================================================================
221
222   !!----------------------------------------------------------------------
223   !!                   ***   load_ptr_(2,3,4)d   ***
224   !!
225   !!   * Dummy Argument :
226   !!       in    ==>   ptab       ! array to be loaded (2D, 3D or 4D)
227   !!                   cd_nat     ! nature of pt2d array grid-points
228   !!                   psgn       ! sign used across the north fold boundary
229   !!       inout <=>   ptab_ptr   ! array of 2D, 3D or 4D pointers
230   !!                   cdna_ptr   ! nature of ptab array grid-points
231   !!                   psgn_ptr   ! sign used across the north fold boundary
232   !!                   kfld       ! number of elements that has been attributed
233   !!----------------------------------------------------------------------
234
235   !!----------------------------------------------------------------------
236   !!                  ***   lbc_lnk_(2,3,4)d_multi   ***
237   !!                     ***   load_ptr_(2,3,4)d   ***
238   !!
239   !!   * Argument : dummy argument use in lbc_lnk_multi_... routines
240   !!
241   !!----------------------------------------------------------------------
242
243#  define DIM_2d
244#     define ROUTINE_MULTI          lbc_lnk_2d_multi
245#     define ROUTINE_LOAD           load_ptr_2d
246#     include "lbc_lnk_multi_generic.h90"
247#     undef ROUTINE_MULTI
248#     undef ROUTINE_LOAD
249#  undef DIM_2d
250
251
252#  define DIM_3d
253#     define ROUTINE_MULTI          lbc_lnk_3d_multi
254#     define ROUTINE_LOAD           load_ptr_3d
255#     include "lbc_lnk_multi_generic.h90"
256#     undef ROUTINE_MULTI
257#     undef ROUTINE_LOAD
258#  undef DIM_3d
259
260
261#  define DIM_4d
262#     define ROUTINE_MULTI          lbc_lnk_4d_multi
263#     define ROUTINE_LOAD           load_ptr_4d
264#     include "lbc_lnk_multi_generic.h90"
265#     undef ROUTINE_MULTI
266#     undef ROUTINE_LOAD
267#  undef DIM_4d
268
269   !!======================================================================
270END MODULE lbclnk
271
Note: See TracBrowser for help on using the repository browser.