/[MITgcm]/MITgcm/eesupp/src/exch_uv_agrid_xyz_rx.template
ViewVC logotype

Contents of /MITgcm/eesupp/src/exch_uv_agrid_xyz_rx.template

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.8 - (show annotations) (download)
Fri Aug 17 18:23:35 2007 UTC (16 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +1 -1 lines
FILE REMOVED
remove unused templates

1 C $Header: /u/gcmpack/MITgcm/eesupp/src/exch_uv_agrid_xyz_rx.template,v 1.7 2006/08/23 15:20:37 jmc Exp $
2 C $Name: $
3
4 #include "PACKAGES_CONFIG.h"
5 #include "CPP_EEOPTIONS.h"
6
7 SUBROUTINE EXCH_UV_AGRID_XYZ_RX( component1,component2, withSigns,
8 . myThid )
9
10 implicit none
11
12 C*=====================================================================*
13 C Purpose: subroutine exch_uv_agrid_xyz_RX will
14 C handle exchanges for a 3D vector field on an A-grid.
15 C
16 C Input: component1(lon,lat,levs,bi,bj) - first component of vector
17 C component2(lon,lat,levs,bi,bj) - second component of vector
18 C withSigns (logical) - true to use signs of components
19 C myThid - Thread number
20 C
21 C Output: component1 and component2 are updated (halo regions filled)
22 C
23 C Calls: exch (either exch_rx_cube or exch_rx) - twice, once
24 C for the first-component, once for second.
25 C
26 C NOTES: 1) This code, as written, only works on ONE PROCESSOR!
27 C 2) This code assumes that the faces are square (sNx=sNy....)
28 C (also - we do not worry about barriers)
29 C*=====================================================================*
30
31 #include "SIZE.h"
32 #include "EEPARAMS.h"
33 #include "EESUPPORT.h"
34 #include "EXCH.h"
35
36 C == Argument list variables ==
37 _RX component1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,1:Nr,nSx,nSy)
38 _RX component2(1-OLx:sNx+OLx,1-OLy:sNy+OLy,1:Nr,nSx,nSy)
39 LOGICAL withSigns
40 INTEGER myThid
41
42 C == Local variables ==
43 C i,j,L,bi,bj are do indices.
44 C OL[wens] - Overlap extents in west, east, north, south.
45 C exchWidth[XY] - Extent of regions that will be exchanged.
46 C dummy[12] - copies of the vector components with haloes filled.
47 C b[nsew] - indices of the [nswe] neighboring faces for each face.
48
49 integer i,j,L,bi,bj
50 integer OLw, OLe, OLn, OLs, exchWidthX, exchWidthY, myNz
51 _RX dummy1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
52 _RX dummy2(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
53 _RX negOne
54
55 #ifdef ALLOW_EXCH2
56 CALL EXCH2_UV_AGRID_3D_RX(
57 U component1, component2,
58 I withSigns, Nr, myThid )
59 RETURN
60 #endif
61
62 OLw = OLx
63 OLe = OLx
64 OLn = OLy
65 OLs = OLy
66 exchWidthX = OLx
67 exchWidthY = OLy
68 myNz = Nr
69 negOne = 1.
70 IF (withSigns) negOne = -1.
71
72 C First call the exchanges for the two components
73
74 if (useCubedSphereExchange) then
75 call exch_RX_cube( component1,
76 . OLw, OLe, OLs, OLn, myNz,
77 . exchWidthX, exchWidthY,
78 . FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid )
79 call exch_RX_cube( component2,
80 . OLw, OLe, OLs, OLn, myNz,
81 . exchWidthX, exchWidthY,
82 . FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid )
83 else
84 call exch_RX( component1,
85 . OLw, OLe, OLs, OLn, myNz,
86 . exchWidthX, exchWidthY,
87 . FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid )
88 call exch_RX( component2,
89 . OLw, OLe, OLs, OLn, myNz,
90 . exchWidthX, exchWidthY,
91 . FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid )
92 endif
93
94 C Then if we are on the sphere we may need to switch u and v components
95 C and/or the signs depending on which cube face we are located.
96
97 if (useCubedSphereExchange) then
98
99 do bj = myByLo(myThid), myByHi(myThid)
100 do bi = myBxLo(myThid), myBxHi(myThid)
101 do L = 1,Nr
102
103 C First we need to copy the component info into dummy arrays
104 do j = 1-OLy,sNy+OLy
105 do i = 1-OLx,sNx+OLx
106 dummy1(i,j) = component1(i,j,L,bi,bj)
107 dummy2(i,j) = component2(i,j,L,bi,bj)
108 enddo
109 enddo
110
111 C Now choose what to do at each edge of the halo based on which face
112 C (we assume that bj is always=1)
113
114 C odd faces share disposition of all sections of the halo
115 if ( mod(bi,2).eq.1 ) then
116 do j = 1,sNy
117 do i = 1,exchWidthX
118 C east
119 component1(sNx+i,j,L,bi,bj) = dummy1(sNx+i,j)
120 component2(sNx+i,j,L,bi,bj) = dummy2(sNx+i,j)
121 C west
122 component1(i-OLx,j,L,bi,bj) = dummy2(i-OLx,j)
123 component2(i-OLx,j,L,bi,bj) = negOne*dummy1(i-OLx,j)
124 C north
125 component1(j,sNy+i,L,bi,bj) = negOne*dummy2(j,sNy+i)
126 component2(j,sNy+i,L,bi,bj) = dummy1(j,sNy+i)
127 C south
128 component1(j,i-OLx,L,bi,bj) = dummy1(j,i-OLx)
129 component2(j,i-OLx,L,bi,bj) = dummy2(j,i-OLx)
130 enddo
131 enddo
132 C now the even faces (share disposition of all sections of the halo)
133 elseif ( mod(bi,2).eq.0 ) then
134 do j = 1,sNy
135 do i = 1,exchWidthX
136 C east
137 component1(sNx+i,j,L,bi,bj) = dummy2(sNx+i,j)
138 component2(sNx+i,j,L,bi,bj) = negOne*dummy1(sNx+i,j)
139 C west
140 component1(i-OLx,j,L,bi,bj) = dummy1(i-OLx,j)
141 component2(i-OLx,j,L,bi,bj) = dummy2(i-OLx,j)
142 C north
143 component1(j,sNy+i,L,bi,bj) = dummy1(j,sNy+i)
144 component2(j,sNy+i,L,bi,bj) = dummy2(j,sNy+i)
145 C south
146 component1(j,i-OLy,L,bi,bj) = negOne*dummy2(j,i-OLy)
147 component2(j,i-OLy,L,bi,bj) = dummy1(j,i-OLy)
148 enddo
149 enddo
150 endif
151
152 enddo
153 enddo
154 enddo
155
156 endif
157
158 RETURN
159 END
160
161 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
162
163 CEH3 ;;; Local Variables: ***
164 CEH3 ;;; mode:fortran ***
165 CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22