[151] | 1 | SUBROUTINE inflow_turbulence |
---|
| 2 | |
---|
[1036] | 3 | !--------------------------------------------------------------------------------! |
---|
| 4 | ! This file is part of PALM. |
---|
| 5 | ! |
---|
| 6 | ! PALM is free software: you can redistribute it and/or modify it under the terms |
---|
| 7 | ! of the GNU General Public License as published by the Free Software Foundation, |
---|
| 8 | ! either version 3 of the License, or (at your option) any later version. |
---|
| 9 | ! |
---|
| 10 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 11 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 12 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 13 | ! |
---|
| 14 | ! You should have received a copy of the GNU General Public License along with |
---|
| 15 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 16 | ! |
---|
[1310] | 17 | ! Copyright 1997-2014 Leibniz Universitaet Hannover |
---|
[1036] | 18 | !--------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[151] | 21 | ! ----------------- |
---|
[1354] | 22 | ! |
---|
| 23 | ! |
---|
[151] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: inflow_turbulence.f90 1354 2014-04-08 15:22:57Z heinze $ |
---|
| 27 | ! |
---|
[1354] | 28 | ! 1353 2014-04-08 15:21:23Z heinze |
---|
| 29 | ! REAL constants provided with KIND-attribute |
---|
| 30 | ! |
---|
[1347] | 31 | ! 1346 2014-03-27 13:18:20Z heinze |
---|
| 32 | ! Bugfix: REAL constants provided with KIND-attribute especially in call of |
---|
| 33 | ! intrinsic function like MAX, MIN, SIGN |
---|
| 34 | ! |
---|
[1321] | 35 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
| 36 | ! ONLY-attribute added to USE-statements, |
---|
| 37 | ! kind-parameters added to all INTEGER and REAL declaration statements, |
---|
| 38 | ! kinds are defined in new module kinds, |
---|
| 39 | ! revision history before 2012 removed, |
---|
| 40 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 41 | ! all variable declaration statements |
---|
| 42 | ! |
---|
[1093] | 43 | ! 1092 2013-02-02 11:24:22Z raasch |
---|
| 44 | ! unused variables removed |
---|
| 45 | ! |
---|
[1037] | 46 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 47 | ! code put under GPL (PALM 3.9) |
---|
| 48 | ! |
---|
[198] | 49 | ! Initial version (2008/03/07) |
---|
[151] | 50 | ! |
---|
| 51 | ! Description: |
---|
| 52 | ! ------------ |
---|
| 53 | ! Imposing turbulence at the respective inflow using the turbulence |
---|
| 54 | ! recycling method of Kataoka and Mizuno (2002). |
---|
| 55 | !------------------------------------------------------------------------------! |
---|
| 56 | |
---|
[1320] | 57 | USE arrays_3d, & |
---|
| 58 | ONLY: e, inflow_damping_factor, mean_inflow_profiles, pt, u, v, w |
---|
| 59 | |
---|
| 60 | USE control_parameters, & |
---|
| 61 | ONLY: recycling_plane |
---|
| 62 | |
---|
| 63 | USE cpulog, & |
---|
| 64 | ONLY: cpu_log, log_point |
---|
| 65 | |
---|
| 66 | USE grid_variables, & |
---|
| 67 | ONLY: |
---|
| 68 | |
---|
| 69 | USE indices, & |
---|
| 70 | ONLY: nbgp, nxl, ny, nyn, nys, nyng, nysg, nzb, nzt |
---|
| 71 | |
---|
| 72 | USE kinds |
---|
| 73 | |
---|
[151] | 74 | USE pegrid |
---|
| 75 | |
---|
| 76 | |
---|
| 77 | IMPLICIT NONE |
---|
| 78 | |
---|
[1320] | 79 | INTEGER(iwp) :: i !: |
---|
| 80 | INTEGER(iwp) :: j !: |
---|
| 81 | INTEGER(iwp) :: k !: |
---|
| 82 | INTEGER(iwp) :: l !: |
---|
| 83 | INTEGER(iwp) :: ngp_ifd !: |
---|
| 84 | INTEGER(iwp) :: ngp_pr !: |
---|
[151] | 85 | |
---|
[1320] | 86 | REAL(wp), DIMENSION(nzb:nzt+1,5,nbgp) :: & |
---|
| 87 | avpr, avpr_l !: |
---|
| 88 | REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,5,nbgp) :: & |
---|
| 89 | inflow_dist !: |
---|
[151] | 90 | |
---|
| 91 | CALL cpu_log( log_point(40), 'inflow_turbulence', 'start' ) |
---|
| 92 | |
---|
| 93 | ! |
---|
[667] | 94 | !-- Carry out spanwise averaging in the recycling plane |
---|
[1353] | 95 | avpr_l = 0.0_wp |
---|
[667] | 96 | ngp_pr = ( nzt - nzb + 2 ) * 5 * nbgp |
---|
| 97 | ngp_ifd = ngp_pr * ( nyn - nys + 1 + 2 * nbgp ) |
---|
[151] | 98 | |
---|
| 99 | ! |
---|
| 100 | !-- First, local averaging within the recycling domain |
---|
[667] | 101 | i = recycling_plane |
---|
[151] | 102 | |
---|
[667] | 103 | #if defined( __parallel ) |
---|
| 104 | IF ( myidx == id_recycling ) THEN |
---|
| 105 | |
---|
| 106 | DO l = 1, nbgp |
---|
[151] | 107 | DO j = nys, nyn |
---|
[667] | 108 | DO k = nzb, nzt + 1 |
---|
[151] | 109 | |
---|
[667] | 110 | avpr_l(k,1,l) = avpr_l(k,1,l) + u(k,j,i) |
---|
| 111 | avpr_l(k,2,l) = avpr_l(k,2,l) + v(k,j,i) |
---|
| 112 | avpr_l(k,3,l) = avpr_l(k,3,l) + w(k,j,i) |
---|
| 113 | avpr_l(k,4,l) = avpr_l(k,4,l) + pt(k,j,i) |
---|
| 114 | avpr_l(k,5,l) = avpr_l(k,5,l) + e(k,j,i) |
---|
[151] | 115 | |
---|
| 116 | ENDDO |
---|
| 117 | ENDDO |
---|
[667] | 118 | i = i + 1 |
---|
[151] | 119 | ENDDO |
---|
| 120 | |
---|
| 121 | ENDIF |
---|
| 122 | ! |
---|
| 123 | !-- Now, averaging over all PEs |
---|
[622] | 124 | IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) |
---|
[709] | 125 | CALL MPI_ALLREDUCE( avpr_l(nzb,1,1), avpr(nzb,1,1), ngp_pr, MPI_REAL, & |
---|
| 126 | MPI_SUM, comm2d, ierr ) |
---|
[667] | 127 | |
---|
[151] | 128 | #else |
---|
[667] | 129 | DO l = 1, nbgp |
---|
| 130 | DO j = nys, nyn |
---|
| 131 | DO k = nzb, nzt + 1 |
---|
| 132 | |
---|
| 133 | avpr_l(k,1,l) = avpr_l(k,1,l) + u(k,j,i) |
---|
| 134 | avpr_l(k,2,l) = avpr_l(k,2,l) + v(k,j,i) |
---|
| 135 | avpr_l(k,3,l) = avpr_l(k,3,l) + w(k,j,i) |
---|
| 136 | avpr_l(k,4,l) = avpr_l(k,4,l) + pt(k,j,i) |
---|
| 137 | avpr_l(k,5,l) = avpr_l(k,5,l) + e(k,j,i) |
---|
| 138 | |
---|
| 139 | ENDDO |
---|
| 140 | ENDDO |
---|
| 141 | i = i + 1 |
---|
| 142 | ENDDO |
---|
| 143 | |
---|
[151] | 144 | avpr = avpr_l |
---|
| 145 | #endif |
---|
| 146 | |
---|
[667] | 147 | avpr = avpr / ( ny + 1 ) |
---|
[151] | 148 | ! |
---|
| 149 | !-- Calculate the disturbances at the recycling plane |
---|
| 150 | i = recycling_plane |
---|
| 151 | |
---|
[222] | 152 | #if defined( __parallel ) |
---|
[163] | 153 | IF ( myidx == id_recycling ) THEN |
---|
[667] | 154 | DO l = 1, nbgp |
---|
| 155 | DO j = nysg, nyng |
---|
| 156 | DO k = nzb, nzt + 1 |
---|
[151] | 157 | |
---|
[667] | 158 | inflow_dist(k,j,1,l) = u(k,j,i+1) - avpr(k,1,l) |
---|
| 159 | inflow_dist(k,j,2,l) = v(k,j,i) - avpr(k,2,l) |
---|
| 160 | inflow_dist(k,j,3,l) = w(k,j,i) - avpr(k,3,l) |
---|
| 161 | inflow_dist(k,j,4,l) = pt(k,j,i) - avpr(k,4,l) |
---|
| 162 | inflow_dist(k,j,5,l) = e(k,j,i) - avpr(k,5,l) |
---|
| 163 | |
---|
| 164 | ENDDO |
---|
[151] | 165 | ENDDO |
---|
[667] | 166 | i = i + 1 |
---|
[151] | 167 | ENDDO |
---|
| 168 | |
---|
| 169 | ENDIF |
---|
[222] | 170 | #else |
---|
[667] | 171 | DO l = 1, nbgp |
---|
| 172 | DO j = nysg, nyng |
---|
| 173 | DO k = nzb, nzt+1 |
---|
[151] | 174 | |
---|
[667] | 175 | inflow_dist(k,j,1,l) = u(k,j,i+1) - avpr(k,1,l) |
---|
| 176 | inflow_dist(k,j,2,l) = v(k,j,i) - avpr(k,2,l) |
---|
| 177 | inflow_dist(k,j,3,l) = w(k,j,i) - avpr(k,3,l) |
---|
| 178 | inflow_dist(k,j,4,l) = pt(k,j,i) - avpr(k,4,l) |
---|
| 179 | inflow_dist(k,j,5,l) = e(k,j,i) - avpr(k,5,l) |
---|
| 180 | |
---|
| 181 | ENDDO |
---|
[222] | 182 | ENDDO |
---|
[667] | 183 | i = i + 1 |
---|
[222] | 184 | ENDDO |
---|
| 185 | #endif |
---|
| 186 | |
---|
[151] | 187 | ! |
---|
| 188 | !-- For parallel runs, send the disturbances to the respective inflow PE |
---|
| 189 | #if defined( __parallel ) |
---|
[163] | 190 | IF ( myidx == id_recycling .AND. myidx /= id_inflow ) THEN |
---|
[151] | 191 | |
---|
[667] | 192 | CALL MPI_SEND( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, & |
---|
[151] | 193 | id_inflow, 1, comm1dx, ierr ) |
---|
| 194 | |
---|
[163] | 195 | ELSEIF ( myidx /= id_recycling .AND. myidx == id_inflow ) THEN |
---|
[151] | 196 | |
---|
[1353] | 197 | inflow_dist = 0.0_wp |
---|
[667] | 198 | CALL MPI_RECV( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, & |
---|
[163] | 199 | id_recycling, 1, comm1dx, status, ierr ) |
---|
[151] | 200 | |
---|
| 201 | ENDIF |
---|
| 202 | #endif |
---|
| 203 | |
---|
| 204 | ! |
---|
| 205 | !-- Add the disturbance at the inflow |
---|
| 206 | IF ( nxl == 0 ) THEN |
---|
| 207 | |
---|
[667] | 208 | DO j = nysg, nyng |
---|
| 209 | DO k = nzb, nzt + 1 |
---|
[151] | 210 | |
---|
[709] | 211 | u(k,j,-nbgp+1:0) = mean_inflow_profiles(k,1) + & |
---|
[667] | 212 | inflow_dist(k,j,1,1:nbgp) * inflow_damping_factor(k) |
---|
| 213 | v(k,j,-nbgp:-1) = mean_inflow_profiles(k,2) + & |
---|
| 214 | inflow_dist(k,j,2,1:nbgp) * inflow_damping_factor(k) |
---|
[709] | 215 | w(k,j,-nbgp:-1) = & |
---|
| 216 | inflow_dist(k,j,3,1:nbgp) * inflow_damping_factor(k) |
---|
[667] | 217 | pt(k,j,-nbgp:-1) = mean_inflow_profiles(k,4) + & |
---|
| 218 | inflow_dist(k,j,4,1:nbgp) * inflow_damping_factor(k) |
---|
| 219 | e(k,j,-nbgp:-1) = mean_inflow_profiles(k,5) + & |
---|
| 220 | inflow_dist(k,j,5,1:nbgp) * inflow_damping_factor(k) |
---|
[1346] | 221 | e(k,j,-nbgp:-1) = MAX( e(k,j,-nbgp:-1), 0.0_wp ) |
---|
[151] | 222 | |
---|
| 223 | ENDDO |
---|
| 224 | ENDDO |
---|
| 225 | |
---|
| 226 | ENDIF |
---|
| 227 | |
---|
| 228 | CALL cpu_log( log_point(40), 'inflow_turbulence', 'stop' ) |
---|
| 229 | |
---|
| 230 | |
---|
| 231 | END SUBROUTINE inflow_turbulence |
---|