1 |
subroutine exch_uv_agrid_xy_RX( component1,component2, myThid ) |
C $Header$ |
2 |
|
C $Name$ |
3 |
|
|
4 |
|
#include "PACKAGES_CONFIG.h" |
5 |
#include "CPP_EEOPTIONS.h" |
#include "CPP_EEOPTIONS.h" |
6 |
|
|
7 |
|
SUBROUTINE EXCH_UV_AGRID_XY_RX( component1,component2, withSigns, |
8 |
|
. myThid ) |
9 |
|
|
10 |
implicit none |
implicit none |
11 |
|
|
12 |
C*=====================================================================* |
C*=====================================================================* |
13 |
C Purpose: subroutine exch_uv_agrid_xyz_rx will |
C Purpose: subroutine exch_uv_agrid_xyz_RX will |
14 |
C handle exchanges for a 2D vector field on an A-grid. |
C handle exchanges for a 2D vector field on an A-grid. |
15 |
C |
C |
16 |
C Input: component1(lon,lat,bi,bj) - first component of vector |
C Input: component1(lon,lat,bi,bj) - first component of vector |
17 |
C component2(lon,lat,bi,bj) - second component of vector |
C component2(lon,lat,bi,bj) - second component of vector |
18 |
C myThid - tile number |
C withSigns (logical) - true to use signs of components |
19 |
|
C myThid - Thread number |
20 |
C |
C |
21 |
C Output: component1 and component2 are updated (halo regions filled) |
C Output: component1 and component2 are updated (halo regions filled) |
22 |
C |
C |
36 |
C == Argument list variables == |
C == Argument list variables == |
37 |
_RX component1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
_RX component1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
38 |
_RX component2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
_RX component2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
39 |
|
LOGICAL withSigns |
40 |
INTEGER myThid |
INTEGER myThid |
41 |
|
|
42 |
C == Local variables == |
C == Local variables == |
43 |
C i,j,L,bi,bj are do indices. |
C i,j,bi,bj are do indices. |
44 |
C OL[wens] - Overlap extents in west, east, north, south. |
C OL[wens] - Overlap extents in west, east, north, south. |
45 |
C exchWidth[XY] - Extent of regions that will be exchanged. |
C exchWidth[XY] - Extent of regions that will be exchanged. |
46 |
C dummy[12] - copies of the vector components with haloes filled. |
C dummy[12] - copies of the vector components with haloes filled. |
47 |
C b[nsew] - indices of the [nswe] neighboring faces for each face. |
C b[nsew] - indices of the [nswe] neighboring faces for each face. |
48 |
|
|
49 |
integer i,j,L,bi,bj |
integer i,j,bi,bj |
50 |
integer OLw, OLe, OLn, OLs, exchWidthX, exchWidthY, myNz |
integer OLw, OLe, OLn, OLs, exchWidthX, exchWidthY, myNz |
51 |
_RX dummy1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
_RX dummy1(1-OLx:sNx+OLx,1-OLy:sNy+OLy) |
52 |
_RX dummy2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
_RX dummy2(1-OLx:sNx+OLx,1-OLy:sNy+OLy) |
53 |
|
_RX negOne |
54 |
|
|
55 |
|
#ifdef ALLOW_EXCH2 |
56 |
|
CALL EXCH2_UV_AGRID_XY_RX( |
57 |
|
U component1, component2, |
58 |
|
I withSigns, myThid ) |
59 |
|
RETURN |
60 |
|
#endif |
61 |
|
|
62 |
OLw = OLx |
OLw = OLx |
63 |
OLe = OLx |
OLe = OLx |
66 |
exchWidthX = OLx |
exchWidthX = OLx |
67 |
exchWidthY = OLy |
exchWidthY = OLy |
68 |
myNz = 1 |
myNz = 1 |
69 |
|
negOne = 1. |
70 |
|
IF (withSigns) negOne = -1. |
71 |
|
|
72 |
C First call the exchanges for the two components |
C First call the exchanges for the two components |
73 |
|
|
102 |
C First we need to copy the component info into dummy arrays |
C First we need to copy the component info into dummy arrays |
103 |
do j = 1-OLy,sNy+OLy |
do j = 1-OLy,sNy+OLy |
104 |
do i = 1-OLx,sNx+OLx |
do i = 1-OLx,sNx+OLx |
105 |
dummy1(i,j,bi,bj) = component1(i,j,bi,bj) |
dummy1(i,j) = component1(i,j,bi,bj) |
106 |
dummy2(i,j,bi,bj) = component2(i,j,bi,bj) |
dummy2(i,j) = component2(i,j,bi,bj) |
107 |
enddo |
enddo |
108 |
enddo |
enddo |
109 |
|
|
115 |
do j = 1,sNy |
do j = 1,sNy |
116 |
do i = 1,exchWidthX |
do i = 1,exchWidthX |
117 |
C east |
C east |
118 |
component1(sNx+i,j,bi,bj) = dummy1(sNx+i,j,bi,bj) |
component1(sNx+i,j,bi,bj) = dummy1(sNx+i,j) |
119 |
component2(sNx+i,j,bi,bj) = dummy2(sNx+i,j,bi,bj) |
component2(sNx+i,j,bi,bj) = dummy2(sNx+i,j) |
120 |
C west |
C west |
121 |
component1(i-OLx,j,bi,bj) = dummy2(i-OLx,j,bi,bj) |
component1(i-OLx,j,bi,bj) = dummy2(i-OLx,j) |
122 |
component2(i-OLx,j,bi,bj) = -dummy1(i-OLx,j,bi,bj) |
component2(i-OLx,j,bi,bj) = negOne*dummy1(i-OLx,j) |
123 |
C north |
C north |
124 |
component1(j,sNy+i,bi,bj) = -dummy2(j,sNy+i,bi,bj) |
component1(j,sNy+i,bi,bj) = negOne*dummy2(j,sNy+i) |
125 |
component2(j,sNy+i,bi,bj) = dummy1(j,sNy+i,bi,bj) |
component2(j,sNy+i,bi,bj) = dummy1(j,sNy+i) |
126 |
C south |
C south |
127 |
component1(j,i-OLx,bi,bj) = dummy1(j,i-OLx,bi,bj) |
component1(j,i-OLx,bi,bj) = dummy1(j,i-OLx) |
128 |
component2(j,i-OLx,bi,bj) = dummy2(j,i-OLx,bi,bj) |
component2(j,i-OLx,bi,bj) = dummy2(j,i-OLx) |
129 |
enddo |
enddo |
130 |
enddo |
enddo |
131 |
C now the even faces (share disposition of all sections of the halo) |
C now the even faces (share disposition of all sections of the halo) |
133 |
do j = 1,sNy |
do j = 1,sNy |
134 |
do i = 1,exchWidthX |
do i = 1,exchWidthX |
135 |
C east |
C east |
136 |
component1(sNx+i,j,bi,bj) = dummy2(sNx+i,j,bi,bj) |
component1(sNx+i,j,bi,bj) = dummy2(sNx+i,j) |
137 |
component2(sNx+i,j,bi,bj) = -dummy1(sNx+i,j,bi,bj) |
component2(sNx+i,j,bi,bj) = negOne*dummy1(sNx+i,j) |
138 |
C west |
C west |
139 |
component1(i-OLx,j,bi,bj) = dummy1(i-OLx,j,bi,bj) |
component1(i-OLx,j,bi,bj) = dummy1(i-OLx,j) |
140 |
component2(i-OLx,j,bi,bj) = dummy2(i-OLx,j,bi,bj) |
component2(i-OLx,j,bi,bj) = dummy2(i-OLx,j) |
141 |
C north |
C north |
142 |
component1(j,sNy+i,bi,bj) = dummy1(j,sNy+i,bi,bj) |
component1(j,sNy+i,bi,bj) = dummy1(j,sNy+i) |
143 |
component2(j,sNy+i,bi,bj) = dummy2(j,sNy+i,bi,bj) |
component2(j,sNy+i,bi,bj) = dummy2(j,sNy+i) |
144 |
C south |
C south |
145 |
component1(j,i-OLy,bi,bj) = -dummy2(j,i-OLy,bi,bj) |
component1(j,i-OLy,bi,bj) = negOne*dummy2(j,i-OLy) |
146 |
component2(j,i-OLy,bi,bj) = dummy1(j,i-OLy,bi,bj) |
component2(j,i-OLy,bi,bj) = dummy1(j,i-OLy) |
147 |
enddo |
enddo |
148 |
enddo |
enddo |
149 |
endif |
endif |
155 |
|
|
156 |
RETURN |
RETURN |
157 |
END |
END |
158 |
|
|
159 |
|
C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----| |
160 |
|
|
161 |
|
CEH3 ;;; Local Variables: *** |
162 |
|
CEH3 ;;; mode:fortran *** |
163 |
|
CEH3 ;;; End: *** |