[667] | 1 | SUBROUTINE exchange_horiz( ar, nbgp_local) |
---|
[1] | 2 | |
---|
| 3 | !------------------------------------------------------------------------------! |
---|
[484] | 4 | ! Current revisions: |
---|
[1] | 5 | ! ----------------- |
---|
[710] | 6 | ! |
---|
[668] | 7 | ! |
---|
| 8 | ! Former revisions: |
---|
| 9 | ! ----------------- |
---|
[708] | 10 | ! $Id: exchange_horiz.f90 710 2011-03-30 09:45:27Z witha $ |
---|
[668] | 11 | ! |
---|
[710] | 12 | ! 709 2011-03-30 09:31:40Z raasch |
---|
| 13 | ! formatting adjustments |
---|
| 14 | ! |
---|
[708] | 15 | ! 707 2011-03-29 11:39:40Z raasch |
---|
| 16 | ! grid_level directly used as index for MPI data type arrays, |
---|
| 17 | ! bc_lr/ns replaced by bc_lr/ns_cyc |
---|
| 18 | ! |
---|
[690] | 19 | ! 689 2011-02-20 19:31:12z gryschka |
---|
| 20 | ! Bugfix for some logical expressions |
---|
| 21 | ! (syntax was not compatible with all compilers) |
---|
[688] | 22 | ! |
---|
[684] | 23 | ! 683 2011-02-09 14:25:15Z raasch |
---|
| 24 | ! optional synchronous exchange (sendrecv) implemented, code partly reformatted |
---|
| 25 | ! |
---|
[668] | 26 | ! 667 2010-12-23 12:06:00Z suehring/gryschka |
---|
[667] | 27 | ! Dynamic exchange of ghost points with nbgp_local to ensure that no useless |
---|
| 28 | ! ghost points exchanged in case of multigrid. type_yz(0) and type_xz(0) |
---|
| 29 | ! used for normal grid, the remaining types used for the several grid levels. |
---|
| 30 | ! Exchange is done via MPI-Vectors with a dynamic value of ghost points which |
---|
| 31 | ! depend on the advection scheme. Exchange of left and right PEs is 10% faster |
---|
[668] | 32 | ! with MPI-Vectors than without. |
---|
[1] | 33 | ! |
---|
[77] | 34 | ! 75 2007-03-22 09:54:05Z raasch |
---|
| 35 | ! Special cases for additional gridpoints along x or y in case of non-cyclic |
---|
| 36 | ! boundary conditions are not regarded any more |
---|
| 37 | ! |
---|
[3] | 38 | ! RCS Log replace by Id keyword, revision history cleaned up |
---|
| 39 | ! |
---|
[1] | 40 | ! Revision 1.16 2006/02/23 12:19:08 raasch |
---|
| 41 | ! anz_yz renamed ngp_yz |
---|
| 42 | ! |
---|
| 43 | ! Revision 1.1 1997/07/24 11:13:29 raasch |
---|
| 44 | ! Initial revision |
---|
| 45 | ! |
---|
| 46 | ! |
---|
| 47 | ! Description: |
---|
| 48 | ! ------------ |
---|
| 49 | ! Exchange of lateral boundary values (parallel computers) and cyclic |
---|
| 50 | ! lateral boundary conditions, respectively. |
---|
| 51 | !------------------------------------------------------------------------------! |
---|
| 52 | |
---|
| 53 | USE control_parameters |
---|
| 54 | USE cpulog |
---|
| 55 | USE indices |
---|
| 56 | USE interfaces |
---|
| 57 | USE pegrid |
---|
| 58 | |
---|
| 59 | IMPLICIT NONE |
---|
| 60 | |
---|
| 61 | #if defined( __parallel ) |
---|
| 62 | INTEGER, DIMENSION(4) :: req |
---|
| 63 | INTEGER, DIMENSION(MPI_STATUS_SIZE,4) :: wait_stat |
---|
| 64 | #endif |
---|
[707] | 65 | INTEGER :: nbgp_local |
---|
[667] | 66 | REAL, DIMENSION(nzb:nzt+1,nys-nbgp_local:nyn+nbgp_local, & |
---|
| 67 | nxl-nbgp_local:nxr+nbgp_local) :: ar |
---|
[1] | 68 | |
---|
| 69 | CALL cpu_log( log_point_s(2), 'exchange_horiz', 'start' ) |
---|
| 70 | |
---|
| 71 | #if defined( __parallel ) |
---|
| 72 | |
---|
| 73 | ! |
---|
[709] | 74 | !-- Exchange of lateral boundary values |
---|
[1] | 75 | IF ( pdims(1) == 1 .OR. mg_switch_to_pe0 ) THEN |
---|
| 76 | ! |
---|
| 77 | !-- One-dimensional decomposition along y, boundary values can be exchanged |
---|
| 78 | !-- within the PE memory |
---|
[707] | 79 | IF ( bc_lr_cyc ) THEN |
---|
[667] | 80 | ar(:,:,nxl-nbgp_local:nxl-1) = ar(:,:,nxr-nbgp_local+1:nxr) |
---|
| 81 | ar(:,:,nxr+1:nxr+nbgp_local) = ar(:,:,nxl:nxl+nbgp_local-1) |
---|
[1] | 82 | ENDIF |
---|
| 83 | |
---|
| 84 | ELSE |
---|
[75] | 85 | |
---|
[683] | 86 | IF ( synchronous_exchange ) THEN |
---|
[1] | 87 | ! |
---|
[683] | 88 | !-- Send left boundary, receive right one (synchronous) |
---|
| 89 | CALL MPI_SENDRECV( & |
---|
[707] | 90 | ar(nzb,nys-nbgp_local,nxl), 1, type_yz(grid_level), pleft, 0, & |
---|
| 91 | ar(nzb,nys-nbgp_local,nxr+1), 1, type_yz(grid_level), pright, 0, & |
---|
| 92 | comm2d, status, ierr ) |
---|
[1] | 93 | ! |
---|
[683] | 94 | !-- Send right boundary, receive left one (synchronous) |
---|
[707] | 95 | CALL MPI_SENDRECV( ar(nzb,nys-nbgp_local,nxr+1-nbgp_local), 1, & |
---|
| 96 | type_yz(grid_level), pright, 1, & |
---|
| 97 | ar(nzb,nys-nbgp_local,nxl-nbgp_local), 1, & |
---|
| 98 | type_yz(grid_level), pleft, 1, & |
---|
| 99 | comm2d, status, ierr ) |
---|
[667] | 100 | |
---|
[683] | 101 | ELSE |
---|
[667] | 102 | |
---|
[683] | 103 | req = 0 |
---|
| 104 | ! |
---|
| 105 | !-- Send left boundary, receive right one (asynchronous) |
---|
[707] | 106 | CALL MPI_ISEND( ar(nzb,nys-nbgp_local,nxl), 1, type_yz(grid_level), & |
---|
| 107 | pleft, 0, comm2d, req(1), ierr ) |
---|
| 108 | CALL MPI_IRECV( ar(nzb,nys-nbgp_local,nxr+1), 1, type_yz(grid_level), & |
---|
| 109 | pright, 0, comm2d, req(2), ierr ) |
---|
[683] | 110 | ! |
---|
| 111 | !-- Send right boundary, receive left one (asynchronous) |
---|
| 112 | CALL MPI_ISEND( ar(nzb,nys-nbgp_local,nxr+1-nbgp_local), 1, & |
---|
[707] | 113 | type_yz(grid_level), pright, 1, comm2d, req(3), ierr ) |
---|
[683] | 114 | CALL MPI_IRECV( ar(nzb,nys-nbgp_local,nxl-nbgp_local), 1, & |
---|
[707] | 115 | type_yz(grid_level), pleft, 1, comm2d, req(4), ierr ) |
---|
[667] | 116 | |
---|
[683] | 117 | CALL MPI_WAITALL( 4, req, wait_stat, ierr ) |
---|
[75] | 118 | |
---|
[683] | 119 | ENDIF |
---|
| 120 | |
---|
[1] | 121 | ENDIF |
---|
| 122 | |
---|
| 123 | |
---|
| 124 | IF ( pdims(2) == 1 .OR. mg_switch_to_pe0 ) THEN |
---|
| 125 | ! |
---|
| 126 | !-- One-dimensional decomposition along x, boundary values can be exchanged |
---|
| 127 | !-- within the PE memory |
---|
[707] | 128 | IF ( bc_ns_cyc ) THEN |
---|
[667] | 129 | ar(:,nys-nbgp_local:nys-1,:) = ar(:,nyn-nbgp_local+1:nyn,:) |
---|
| 130 | ar(:,nyn+1:nyn+nbgp_local,:) = ar(:,nys:nys+nbgp_local-1,:) |
---|
[1] | 131 | ENDIF |
---|
| 132 | |
---|
| 133 | ELSE |
---|
| 134 | |
---|
[683] | 135 | IF ( synchronous_exchange ) THEN |
---|
[1] | 136 | ! |
---|
[683] | 137 | !-- Send front boundary, receive rear one (synchronous) |
---|
| 138 | CALL MPI_SENDRECV( & |
---|
[707] | 139 | ar(nzb,nys,nxl-nbgp_local), 1, type_xz(grid_level), psouth, 0, & |
---|
| 140 | ar(nzb,nyn+1,nxl-nbgp_local), 1, type_xz(grid_level), pnorth, 0, & |
---|
| 141 | comm2d, status, ierr ) |
---|
[683] | 142 | ! |
---|
| 143 | !-- Send rear boundary, receive front one (synchronous) |
---|
[707] | 144 | CALL MPI_SENDRECV( ar(nzb,nyn-nbgp_local+1,nxl-nbgp_local), 1, & |
---|
| 145 | type_xz(grid_level), pnorth, 1, & |
---|
| 146 | ar(nzb,nys-nbgp_local,nxl-nbgp_local), 1, & |
---|
| 147 | type_xz(grid_level), psouth, 1, & |
---|
| 148 | comm2d, status, ierr ) |
---|
[667] | 149 | |
---|
[683] | 150 | ELSE |
---|
| 151 | |
---|
| 152 | req = 0 |
---|
[1] | 153 | ! |
---|
[683] | 154 | !-- Send front boundary, receive rear one (asynchronous) |
---|
[707] | 155 | CALL MPI_ISEND( ar(nzb,nys,nxl-nbgp_local), 1, type_xz(grid_level), & |
---|
| 156 | psouth, 0, comm2d, req(1), ierr ) |
---|
| 157 | CALL MPI_IRECV( ar(nzb,nyn+1,nxl-nbgp_local), 1, type_xz(grid_level), & |
---|
| 158 | pnorth, 0, comm2d, req(2), ierr ) |
---|
[683] | 159 | ! |
---|
| 160 | !-- Send rear boundary, receive front one (asynchronous) |
---|
| 161 | CALL MPI_ISEND( ar(nzb,nyn-nbgp_local+1,nxl-nbgp_local), 1, & |
---|
[707] | 162 | type_xz(grid_level), pnorth, 1, comm2d, req(3), ierr ) |
---|
[683] | 163 | CALL MPI_IRECV( ar(nzb,nys-nbgp_local,nxl-nbgp_local), 1, & |
---|
[707] | 164 | type_xz(grid_level), psouth, 1, comm2d, req(4), ierr ) |
---|
[75] | 165 | |
---|
[683] | 166 | CALL MPI_WAITALL( 4, req, wait_stat, ierr ) |
---|
| 167 | |
---|
| 168 | ENDIF |
---|
| 169 | |
---|
[1] | 170 | ENDIF |
---|
| 171 | |
---|
| 172 | #else |
---|
| 173 | |
---|
| 174 | ! |
---|
| 175 | !-- Lateral boundary conditions in the non-parallel case |
---|
| 176 | IF ( bc_lr == 'cyclic' ) THEN |
---|
[667] | 177 | ar(:,:,nxl-nbgp_local:nxl-1) = ar(:,:,nxr-nbgp_local+1:nxr) |
---|
| 178 | ar(:,:,nxr+1:nxr+nbgp_local) = ar(:,:,nxl:nxl+nbgp_local-1) |
---|
[1] | 179 | ENDIF |
---|
| 180 | |
---|
| 181 | IF ( bc_ns == 'cyclic' ) THEN |
---|
[667] | 182 | ar(:,nys-nbgp_local:nys-1,:) = ar(:,nyn-nbgp_local+1:nyn,:) |
---|
| 183 | ar(:,nyn+1:nyn+nbgp_local,:) = ar(:,nys:nys+nbgp_local-1,:) |
---|
[1] | 184 | ENDIF |
---|
| 185 | |
---|
| 186 | #endif |
---|
| 187 | CALL cpu_log( log_point_s(2), 'exchange_horiz', 'stop' ) |
---|
| 188 | |
---|
[667] | 189 | |
---|
[1] | 190 | END SUBROUTINE exchange_horiz |
---|