source: palm/trunk/SOURCE/disturb_field.f90 @ 1952

Last change on this file since 1952 was 1818, checked in by maronga, 8 years ago

last commit documented / copyright update

  • Property svn:keywords set to Id
File size: 8.9 KB
Line 
1!> @file disturb_field.f90
2!--------------------------------------------------------------------------------!
3! This file is part of PALM.
4!
5! PALM is free software: you can redistribute it and/or modify it under the terms
6! of the GNU General Public License as published by the Free Software Foundation,
7! either version 3 of the License, or (at your option) any later version.
8!
9! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12!
13! You should have received a copy of the GNU General Public License along with
14! PALM. If not, see <http://www.gnu.org/licenses/>.
15!
16! Copyright 1997-2016 Leibniz Universitaet Hannover
17!--------------------------------------------------------------------------------!
18!
19! Current revisions:
20! ------------------
21!
22!
23! Former revisions:
24! -----------------
25! $Id: disturb_field.f90 1818 2016-04-06 15:53:27Z suehring $
26!
27! 1682 2015-10-07 23:56:08Z knoop
28! Code annotations made doxygen readable
29!
30! 1425 2014-07-05 10:57:53Z knoop
31! bugfix: Parallel random number generator loop: print-statement no needed
32!
33! 1400 2014-05-09 14:03:54Z knoop
34! Parallel random number generator added
35!
36! 1353 2014-04-08 15:21:23Z heinze
37! REAL constants provided with KIND-attribute
38!
39! 1322 2014-03-20 16:38:49Z raasch
40! REAL constants defined as wp-kind
41!
42! 1320 2014-03-20 08:40:49Z raasch
43! ONLY-attribute added to USE-statements,
44! kind-parameters added to all INTEGER and REAL declaration statements,
45! kinds are defined in new module kinds,
46! revision history before 2012 removed,
47! comment fields (!:) to be used for variable explanations added to
48! all variable declaration statements
49!
50! 1036 2012-10-22 13:43:42Z raasch
51! code put under GPL (PALM 3.9)
52!
53! Revision 1.1  1998/02/04 15:40:45  raasch
54! Initial revision
55!
56!
57! Description:
58! ------------
59!> Imposing a random perturbation on a 3D-array.
60!> On parallel computers, the random number generator is as well called for all
61!> gridpoints of the total domain to ensure, regardless of the number of PEs
62!> used, that the elements of the array have the same values in the same
63!> order in every case. The perturbation range is steered by dist_range.
64!------------------------------------------------------------------------------!
65 SUBROUTINE disturb_field( nzb_uv_inner, dist1, field )
66 
67
68    USE control_parameters,   &
69        ONLY:  dist_nxl, dist_nxr, dist_nyn, dist_nys, dist_range,             &
70               disturbance_amplitude, disturbance_created,                     &
71               disturbance_level_ind_b, disturbance_level_ind_t, iran,         &
72               random_generator, topography
73               
74    USE cpulog,                                                                &
75        ONLY:  cpu_log, log_point
76       
77    USE indices,                                                               &
78        ONLY:  nbgp, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt
79       
80    USE kinds
81   
82    USE random_function_mod,                                                   &
83        ONLY: random_function
84       
85    USE random_generator_parallel,                                             &
86        ONLY:  random_number_parallel, random_seed_parallel, random_dummy,     &
87               id_random_array, seq_random_array
88
89    IMPLICIT NONE
90
91    INTEGER(iwp) ::  i  !<
92    INTEGER(iwp) ::  j  !<
93    INTEGER(iwp) ::  k  !<
94   
95    INTEGER(iwp) ::  nzb_uv_inner(nysg:nyng,nxlg:nxrg) !<
96
97    REAL(wp) ::  randomnumber  !<
98   
99    REAL(wp) ::  dist1(nzb:nzt+1,nysg:nyng,nxlg:nxrg)  !<
100    REAL(wp) ::  field(nzb:nzt+1,nysg:nyng,nxlg:nxrg)  !<
101   
102    REAL(wp), DIMENSION(:,:,:), ALLOCATABLE ::  dist2  !<
103
104
105    CALL cpu_log( log_point(20), 'disturb_field', 'start' )
106
107!
108!-- Create an additional temporary array and initialize the arrays needed
109!-- to store the disturbance
110    ALLOCATE( dist2(nzb:nzt+1,nysg:nyng,nxlg:nxrg) )
111    dist1 = 0.0_wp
112    dist2 = 0.0_wp
113
114!
115!-- Create the random perturbation and store it on temporary array
116    IF ( random_generator == 'numerical-recipes' )  THEN
117       DO  i = dist_nxl(dist_range), dist_nxr(dist_range)
118          DO  j = dist_nys(dist_range), dist_nyn(dist_range)
119             DO  k = disturbance_level_ind_b, disturbance_level_ind_t
120                randomnumber = 3.0_wp * disturbance_amplitude *                &
121                               ( random_function( iran ) - 0.5_wp )
122                IF ( nxl <= i  .AND.  nxr >= i  .AND.  nys <= j  .AND.         &
123                     nyn >= j )                                                &
124                THEN
125                   dist1(k,j,i) = randomnumber
126                ENDIF
127             ENDDO
128          ENDDO
129       ENDDO
130    ELSEIF ( random_generator == 'random-parallel' )  THEN
131       DO  i = dist_nxl(dist_range), dist_nxr(dist_range)
132          DO  j = dist_nys(dist_range), dist_nyn(dist_range)
133             CALL random_seed_parallel( put=seq_random_array(:, j, i) )
134             DO  k = disturbance_level_ind_b, disturbance_level_ind_t
135                CALL random_number_parallel( random_dummy )
136                randomnumber = 3.0_wp * disturbance_amplitude *                &
137                               ( random_dummy - 0.5_wp )
138                IF ( nxl <= i  .AND.  nxr >= i  .AND.  nys <= j  .AND.         &
139                     nyn >= j )                                                &
140                THEN
141                   dist1(k,j,i) = randomnumber
142                ENDIF
143             ENDDO
144             CALL random_seed_parallel( get=seq_random_array(:, j, i) )
145          ENDDO
146       ENDDO
147    ELSEIF ( random_generator == 'system-specific' )  THEN
148       DO  i = dist_nxl(dist_range), dist_nxr(dist_range)
149          DO  j = dist_nys(dist_range), dist_nyn(dist_range)
150             DO  k = disturbance_level_ind_b, disturbance_level_ind_t
151#if defined( __nec )
152                randomnumber = 3.0_wp * disturbance_amplitude *                &
153                               ( RANDOM( 0 ) - 0.5_wp )
154#else
155                CALL RANDOM_NUMBER( randomnumber )
156                randomnumber = 3.0_wp * disturbance_amplitude *                &
157                                ( randomnumber - 0.5_wp )
158#endif
159                IF ( nxl <= i .AND. nxr >= i .AND. nys <= j .AND. nyn >= j )   &
160                THEN
161                   dist1(k,j,i) = randomnumber
162                ENDIF
163             ENDDO
164          ENDDO
165       ENDDO
166
167    ENDIF
168
169!
170!-- Exchange of ghost points for the random perturbation
171
172    CALL exchange_horiz( dist1, nbgp )
173!
174!-- Applying the Shuman filter in order to smooth the perturbations.
175!-- Neighboured grid points in all three directions are used for the
176!-- filter operation.
177!-- Loop has been splitted to make runs reproducible on HLRN systems using
178!-- compiler option -O3
179     DO  i = nxl, nxr
180        DO  j = nys, nyn
181          DO  k = disturbance_level_ind_b-1, disturbance_level_ind_t+1
182             dist2(k,j,i) = ( dist1(k,j,i-1) + dist1(k,j,i+1)                  &
183                            + dist1(k,j+1,i) + dist1(k+1,j,i)                  &
184                            ) / 12.0_wp
185          ENDDO
186          DO  k = disturbance_level_ind_b-1, disturbance_level_ind_t+1
187              dist2(k,j,i) = dist2(k,j,i) + ( dist1(k,j-1,i) + dist1(k-1,j,i)  &
188                            + 6.0_wp * dist1(k,j,i)                            &
189                            ) / 12.0_wp
190          ENDDO
191        ENDDO
192     ENDDO
193
194!
195!-- Exchange of ghost points for the filtered perturbation.
196!-- Afterwards, filter operation and exchange of ghost points are repeated.
197    CALL exchange_horiz( dist2, nbgp )
198
199    DO  i = nxl, nxr
200       DO  j = nys, nyn
201          DO  k = disturbance_level_ind_b-2, disturbance_level_ind_t+2
202             dist1(k,j,i) = ( dist2(k,j,i-1) + dist2(k,j,i+1) + dist2(k,j-1,i) &
203                            + dist2(k,j+1,i) + dist2(k+1,j,i) + dist2(k-1,j,i) &
204                            + 6.0_wp * dist2(k,j,i)                            &
205                            ) / 12.0_wp
206          ENDDO
207       ENDDO
208    ENDDO
209
210    CALL exchange_horiz( dist1, nbgp )
211
212!
213!-- Remove perturbations below topography (including one gridpoint above it
214!-- in order to allow for larger timesteps at the beginning of the simulation
215!-- (diffusion criterion))
216    IF ( TRIM( topography ) /= 'flat' )  THEN
217       DO  i = nxlg, nxrg
218          DO  j = nysg, nyng
219             dist1(nzb:nzb_uv_inner(j,i)+1,j,i) = 0.0_wp
220          ENDDO
221       ENDDO
222    ENDIF
223
224!
225!-- Random perturbation is added to the array to be disturbed.
226    DO  i = nxlg, nxrg
227       DO  j = nysg, nyng
228          DO  k = disturbance_level_ind_b-2, disturbance_level_ind_t+2
229             field(k,j,i) = field(k,j,i) + dist1(k,j,i)
230          ENDDO
231       ENDDO
232    ENDDO
233
234!
235!-- Deallocate the temporary array
236    DEALLOCATE( dist2 )
237
238!
239!-- Set a flag, which indicates that a random perturbation is imposed
240    disturbance_created = .TRUE.
241
242
243    CALL cpu_log( log_point(20), 'disturb_field', 'stop' )
244
245
246 END SUBROUTINE disturb_field
Note: See TracBrowser for help on using the repository browser.