12 |
|
|
13 |
C !INTERFACE: |
C !INTERFACE: |
14 |
SUBROUTINE EXCH_UV_XY_RX( |
SUBROUTINE EXCH_UV_XY_RX( |
15 |
U Uphi, Vphi, |
U uPhi, vPhi, |
16 |
I withSigns, myThid ) |
I withSigns, myThid ) |
17 |
IMPLICIT NONE |
|
18 |
C !DESCRIPTION: |
C !DESCRIPTION: |
19 |
C *==========================================================* |
C *==========================================================* |
20 |
C | SUBROUTINE EXCH_UV_XY_RX |
C | SUBROUTINE EXCH_UV_XY_RX |
21 |
C | o Handle exchanges for _RX, two-dimensional arrays. |
C | o Handle exchanges for _RX, 2-dimensional vector arrays. |
22 |
C *==========================================================* |
C *==========================================================* |
23 |
C | Driver exchange routine which branches to cube sphere or |
C | Vector arrays need to be rotated and interchaged for |
24 |
C | global, simple cartesian index grid. Exchange routine is |
C | exchange operations on some grids. This driver routine |
25 |
C | called with two arrays that are components of a vector. |
C | branches to support this. |
|
C | These components are rotated and interchanged on the |
|
|
C | rotated grid during cube exchanges. |
|
26 |
C *==========================================================* |
C *==========================================================* |
27 |
|
|
28 |
C !USES: |
C !USES: |
29 |
|
IMPLICIT NONE |
30 |
|
|
31 |
C === Global data === |
C === Global data === |
32 |
#include "SIZE.h" |
#include "SIZE.h" |
33 |
#include "EEPARAMS.h" |
#include "EEPARAMS.h" |
|
#include "EESUPPORT.h" |
|
|
#include "EXCH.h" |
|
34 |
|
|
35 |
C !INPUT/OUTPUT PARAMETERS: |
C !INPUT/OUTPUT PARAMETERS: |
36 |
C === Routine arguments === |
C === Routine arguments === |
37 |
C Uphi :: Arrays with overlap regions are to be exchanged |
C uPhi :: 2 components of a vector field with overlap regions |
38 |
C Vphi Note - The interface to EXCH_ assumes that |
C vPhi :: to be exchanged |
|
C the standard Fortran 77 sequence association rules |
|
|
C apply. |
|
|
C myThid :: My thread id. |
|
39 |
C withSigns :: Flag controlling whether vector is signed. |
C withSigns :: Flag controlling whether vector is signed. |
40 |
_RX Uphi(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
C myThid :: my Thread Id. number |
41 |
_RX Vphi(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy) |
_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 |
LOGICAL withSigns |
44 |
INTEGER myThid |
INTEGER myThid |
45 |
|
|
46 |
C !LOCAL VARIABLES: |
C !LOCAL VARIABLES: |
47 |
|
#ifndef ALLOW_EXCH2 |
48 |
C == Local variables == |
C == Local variables == |
49 |
C OL[wens] :: Overlap extents in west, east, north, south. |
C OL[wens] :: Overlap extents in west, east, north, south. |
50 |
C exchWidth[XY] :: Extent of regions that will be exchanged. |
C exchWidth[XY] :: Extent of regions that will be exchanged. |
51 |
INTEGER OLw, OLe, OLn, OLs, exchWidthX, exchWidthY, myNz |
INTEGER OLw, OLe, OLn, OLs, exchWidthX, exchWidthY, myNz |
52 |
|
#endif |
53 |
CEOP |
CEOP |
54 |
|
|
55 |
#ifdef ALLOW_EXCH2 |
#ifdef ALLOW_EXCH2 |
56 |
#ifdef W2_USE_R1_ONLY |
#ifdef W2_USE_R1_ONLY |
57 |
CALL EXCH2_UV_CGRID_3D_RX( |
CALL EXCH2_UV_CGRID_3D_RX( |
58 |
U Uphi, Vphi, |
U uPhi, vPhi, |
59 |
I withSigns, 1, myThid ) |
I withSigns, 1, myThid ) |
60 |
#else |
#else |
61 |
CALL EXCH2_UV_XY_RX( |
CALL EXCH2_UV_3D_RX( |
62 |
U Uphi, Vphi, |
U uPhi, vPhi, |
63 |
I withSigns, myThid ) |
I withSigns, 1, myThid ) |
64 |
#endif |
#endif |
|
RETURN |
|
65 |
#else /* ALLOW_EXCH2 */ |
#else /* ALLOW_EXCH2 */ |
66 |
|
|
67 |
OLw = OLx |
OLw = OLx |
71 |
exchWidthX = OLx |
exchWidthX = OLx |
72 |
exchWidthY = OLy |
exchWidthY = OLy |
73 |
myNz = 1 |
myNz = 1 |
|
C ** NOTE ** The exchange routine we use here does not |
|
|
C require the preceeding and following barriers. |
|
|
C However, the slow, simple exchange interface |
|
|
C that is calling it here is meant to ensure |
|
|
C that threads are synchronised before exchanges |
|
|
C begine. |
|
74 |
IF (useCubedSphereExchange) THEN |
IF (useCubedSphereExchange) THEN |
75 |
CALL EXCH_UV_RX_CUBE( Uphi, Vphi, withSigns, |
CALL EXCH1_UV_RX_CUBE( uPhi, vPhi, withSigns, |
76 |
I OLw, OLe, OLs, OLn, myNz, |
I OLw, OLe, OLs, OLn, myNz, |
77 |
I exchWidthX, exchWidthY, |
I exchWidthX, exchWidthY, |
78 |
I FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid ) |
I EXCH_UPDATE_CORNERS, myThid ) |
79 |
ELSE |
ELSE |
80 |
c CALL EXCH_RX( Uphi, |
#ifdef DISCONNECTED_TILES |
81 |
c I OLw, OLe, OLs, OLn, myNz, |
CALL EXCH0_RX( uPhi, |
82 |
c I exchWidthX, exchWidthY, |
I OLw, OLe, OLs, OLn, myNz, |
83 |
c I FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid ) |
I exchWidthX, exchWidthY, |
84 |
c CALL EXCH_RX( Vphi, |
I EXCH_UPDATE_CORNERS, myThid ) |
85 |
c I OLw, OLe, OLs, OLn, myNz, |
CALL EXCH0_RX( vPhi, |
86 |
c I exchWidthX, exchWidthY, |
I OLw, OLe, OLs, OLn, myNz, |
87 |
c I FORWARD_SIMULATION, EXCH_UPDATE_CORNERS, myThid ) |
I exchWidthX, exchWidthY, |
88 |
c_jmc: for JAM compatibility, replace the 2 CALLs above by the 2 CPP_MACROs: |
I EXCH_UPDATE_CORNERS, myThid ) |
89 |
_EXCH_XY_RX( Uphi, myThid ) |
#else /* DISCONNECTED_TILES */ |
90 |
_EXCH_XY_RX( Vphi, myThid ) |
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 |
ENDIF |
100 |
|
|
|
RETURN |
|
101 |
#endif /* ALLOW_EXCH2 */ |
#endif /* ALLOW_EXCH2 */ |
102 |
|
|
103 |
|
RETURN |
104 |
END |
END |
105 |
|
|
106 |
C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----| |
C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----| |