1 |
C $Header: /u/gcmpack/MITgcm/eesupp/src/exch_uv_xy_rx.template,v 1.11 2010/05/19 01:53:46 jmc Exp $ |
2 |
C $Name: $ |
3 |
|
4 |
#include "PACKAGES_CONFIG.h" |
5 |
#include "CPP_EEOPTIONS.h" |
6 |
#ifdef ALLOW_EXCH2 |
7 |
#include "W2_OPTIONS.h" |
8 |
#endif |
9 |
|
10 |
CBOP |
11 |
C !ROUTINE: EXCH_UV_XY_RX |
12 |
|
13 |
C !INTERFACE: |
14 |
SUBROUTINE EXCH_UV_XY_RX( |
15 |
U uPhi, vPhi, |
16 |
I withSigns, myThid ) |
17 |
|
18 |
C !DESCRIPTION: |
19 |
C *==========================================================* |
20 |
C | SUBROUTINE EXCH_UV_XY_RX |
21 |
C | o Handle exchanges for _RX, 2-dimensional vector arrays. |
22 |
C *==========================================================* |
23 |
C | Vector arrays need to be rotated and interchaged for |
24 |
C | exchange operations on some grids. This driver routine |
25 |
C | branches to support this. |
26 |
C *==========================================================* |
27 |
|
28 |
C !USES: |
29 |
IMPLICIT NONE |
30 |
|
31 |
C === Global data === |
32 |
#include "SIZE.h" |
33 |
#include "EEPARAMS.h" |
34 |
|
35 |
C !INPUT/OUTPUT PARAMETERS: |
36 |
C === Routine arguments === |
37 |
C uPhi :: 2 components of a vector field with overlap regions |
38 |
C vPhi :: to be exchanged |
39 |
C withSigns :: Flag controlling whether vector is signed. |
40 |
C myThid :: my Thread Id. number |
41 |
_RX uPhi(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
42 |
_RX vPhi(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
43 |
LOGICAL withSigns |
44 |
INTEGER myThid |
45 |
|
46 |
C !LOCAL VARIABLES: |
47 |
#ifndef ALLOW_EXCH2 |
48 |
C == Local variables == |
49 |
C OL[wens] :: Overlap extents in west, east, north, south. |
50 |
C exchWidth[XY] :: Extent of regions that will be exchanged. |
51 |
INTEGER OLw, OLe, OLn, OLs, exchWidthX, exchWidthY, myNz |
52 |
#endif |
53 |
CEOP |
54 |
|
55 |
#ifdef ALLOW_EXCH2 |
56 |
#ifdef W2_USE_R1_ONLY |
57 |
CALL EXCH2_UV_CGRID_3D_RX( |
58 |
U uPhi, vPhi, |
59 |
I withSigns, 1, myThid ) |
60 |
#else |
61 |
CALL EXCH2_UV_3D_RX( |
62 |
U uPhi, vPhi, |
63 |
I withSigns, 1, myThid ) |
64 |
#endif |
65 |
#else /* ALLOW_EXCH2 */ |
66 |
|
67 |
OLw = OLx |
68 |
OLe = OLx |
69 |
OLn = OLy |
70 |
OLs = OLy |
71 |
exchWidthX = OLx |
72 |
exchWidthY = OLy |
73 |
myNz = 1 |
74 |
IF (useCubedSphereExchange) THEN |
75 |
CALL EXCH1_UV_RX_CUBE( uPhi, vPhi, withSigns, |
76 |
I OLw, OLe, OLs, OLn, myNz, |
77 |
I exchWidthX, exchWidthY, |
78 |
I EXCH_UPDATE_CORNERS, myThid ) |
79 |
ELSE |
80 |
#ifdef DISCONNECTED_TILES |
81 |
CALL EXCH0_RX( uPhi, |
82 |
I OLw, OLe, OLs, OLn, myNz, |
83 |
I exchWidthX, exchWidthY, |
84 |
I EXCH_UPDATE_CORNERS, myThid ) |
85 |
CALL EXCH0_RX( vPhi, |
86 |
I OLw, OLe, OLs, OLn, myNz, |
87 |
I exchWidthX, exchWidthY, |
88 |
I EXCH_UPDATE_CORNERS, myThid ) |
89 |
#else /* DISCONNECTED_TILES */ |
90 |
CALL EXCH1_RX( uPhi, |
91 |
I OLw, OLe, OLs, OLn, myNz, |
92 |
I exchWidthX, exchWidthY, |
93 |
I EXCH_UPDATE_CORNERS, myThid ) |
94 |
CALL EXCH1_RX( vPhi, |
95 |
I OLw, OLe, OLs, OLn, myNz, |
96 |
I exchWidthX, exchWidthY, |
97 |
I EXCH_UPDATE_CORNERS, myThid ) |
98 |
#endif /* DISCONNECTED_TILES */ |
99 |
ENDIF |
100 |
|
101 |
#endif /* ALLOW_EXCH2 */ |
102 |
|
103 |
RETURN |
104 |
END |
105 |
|
106 |
C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----| |
107 |
|
108 |
CEH3 ;;; Local Variables: *** |
109 |
CEH3 ;;; mode:fortran *** |
110 |
CEH3 ;;; End: *** |