1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | ; Concepts illustrated: |
---|
7 | ; - Drawing a scatter plot over a map using the "overlay" procedure |
---|
8 | ; - Using gsn_csm_blank_plot to create a scatter plot with filled polygons |
---|
9 | ; - Generating dummy data using "random_uniform" |
---|
10 | ; - Changing the draw order of filled polygons |
---|
11 | ;---------------------------------------------------------------------- |
---|
12 | load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl" |
---|
13 | load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl" |
---|
14 | load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl" |
---|
15 | |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | begin |
---|
21 | |
---|
22 | |
---|
23 | ;Indizes ÃŒberdenken, besonders bei interpolation (sehe a4_2.f90 an) |
---|
24 | |
---|
25 | nx=335 |
---|
26 | ny=83 |
---|
27 | nz=64 |
---|
28 | |
---|
29 | dx=2.5 |
---|
30 | dy=2.5 |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | |
---|
37 | ;Nahbereich a1-1 |
---|
38 | |
---|
39 | ;Beginn |
---|
40 | nxnb=72 |
---|
41 | nynb=3 |
---|
42 | nznb=1 |
---|
43 | |
---|
44 | |
---|
45 | ;Ende |
---|
46 | nxne=172 |
---|
47 | nyne=ny-4 |
---|
48 | nzne=16 |
---|
49 | |
---|
50 | |
---|
51 | nyh=floattointeger((ny+1)/2.-1) ;Mitte y-Richtung |
---|
52 | |
---|
53 | ;Erlaubte Abweichungen |
---|
54 | W=0.01 ;a1-1, a1-2 |
---|
55 | D=0.05 |
---|
56 | |
---|
57 | Wc1=0.07 ;c1 |
---|
58 | Dc1=0.25 |
---|
59 | |
---|
60 | |
---|
61 | |
---|
62 | |
---|
63 | ;Verschiebung des Gitters in m |
---|
64 | sdx=230. |
---|
65 | sdy=105. |
---|
66 | |
---|
67 | |
---|
68 | ;Normierungspunkt |
---|
69 | xn=-70. |
---|
70 | yn=0. |
---|
71 | zn=75. |
---|
72 | |
---|
73 | |
---|
74 | findin=0. |
---|
75 | findjn=0. |
---|
76 | findkn=0. |
---|
77 | |
---|
78 | upol=new((/nz,ny,nx/),double) |
---|
79 | xupol=new((/nz,ny,nx/),double) |
---|
80 | yupol=new((/nz,ny,nx/),double) |
---|
81 | zupol=new((/nz,ny,nx/),double) |
---|
82 | |
---|
83 | upol4=new((/nz,ny,nx/),double) |
---|
84 | xupol4=new((/nz,ny,nx/),double) |
---|
85 | yupol4=new((/nz,ny,nx/),double) |
---|
86 | zupol4=new((/nz,ny,nx/),double) |
---|
87 | |
---|
88 | upol5=new((/2*nz,2*ny,2*nx/),double) |
---|
89 | xupol5=new((/2*nz,2*ny,2*nx/),double) |
---|
90 | yupol5=new((/2*nz,2*ny,2*nx/),double) |
---|
91 | zupol5=new((/2*nz,2*ny,2*nx/),double) |
---|
92 | |
---|
93 | xspeicher=new((/nx*nz/),double) |
---|
94 | ipos=new((/nx*nz/),integer) |
---|
95 | kpos=new((/nx*nz/),integer) |
---|
96 | |
---|
97 | |
---|
98 | |
---|
99 | ;Testfaelle auswaehlen -> 1: ja, 0: nein |
---|
100 | test_a1_1 = 1 |
---|
101 | test_a1_2 = 1 ;wenn test_a1_2=1, dann muss test_a1_1=1 sein |
---|
102 | test_a2 = 1 ;wenn test_a2=1, dann muss test_a1_2=1 sein |
---|
103 | test_a3_1 = 1 ;wenn test_a3_1=1, dann muss test_a1_2=1 sein |
---|
104 | test_a3_2 = 1 ;wenn test_a3_2=1, dann muss test_a3_1=1 sein |
---|
105 | |
---|
106 | test_c1 = 1 ;wenn test_c1=1, dann muss test_a1_2=1 sein |
---|
107 | |
---|
108 | print(" ") |
---|
109 | ;--------------------------------------------------------------- |
---|
110 | ;----Einlesen der Daten-------------------------------------------- |
---|
111 | ;--------------------------------------------------------------- |
---|
112 | if(test_a1_1 .ge. 1) then |
---|
113 | f10 = addfile("../OUTPUT/a1-1_av_3d.nc","r") |
---|
114 | dNames = getfilevardims(f10,"time") |
---|
115 | dSizes = getfilevardimsizes(f10,"time") |
---|
116 | tmax=dSizes-1 |
---|
117 | t=tmax |
---|
118 | uwind=f10->u(t,:,:,:) ;u(t,k,j,i) |
---|
119 | wwind=f10->w(t,:,:,:) ;w(t,k,j,i) |
---|
120 | DKM=f10->km(t,:,:,:) |
---|
121 | hoehe=f10->zu_3d(:) |
---|
122 | xu=f10->xu(:)-sdx |
---|
123 | y=f10->y(:)-sdy |
---|
124 | x=f10->x(:)-sdx |
---|
125 | hoehew=f10->zw_3d(:) |
---|
126 | end if |
---|
127 | |
---|
128 | if(test_a1_2 .ge. 1) then |
---|
129 | f2 = addfile("../OUTPUT/a1-2_av_3d.nc","r") ;Name der Datei Àndern |
---|
130 | dNames = getfilevardims(f2,"time") |
---|
131 | dSizes = getfilevardimsizes(f2,"time") |
---|
132 | tmax=dSizes-1 |
---|
133 | t=tmax |
---|
134 | uwind1=f2->u(t,:,:,:) ;u(t,k,j,i) |
---|
135 | wwind1=f2->w(t,:,:,:) ;w(t,k,j,i) |
---|
136 | nznea1_2=26 ; bis 75m Hoehe |
---|
137 | hoehe1=f2->zu_3d(:) |
---|
138 | xu1=f2->xu(:)-sdx |
---|
139 | y1=f2->y(:)-sdy |
---|
140 | x1=f2->x(:)-sdx |
---|
141 | hoehew1=f2->zw_3d(:) |
---|
142 | |
---|
143 | end if |
---|
144 | |
---|
145 | |
---|
146 | if(test_a2 .ge. 1) then |
---|
147 | f3 = addfile("../OUTPUT/a2_av_3d.nc","r") ;Name der Datei Àndern |
---|
148 | dNames = getfilevardims(f3,"time") |
---|
149 | dSizes = getfilevardimsizes(f3,"time") |
---|
150 | tmax=dSizes-1 |
---|
151 | t=tmax |
---|
152 | uwind2=f3->u(t,:,:,:) ;u(t,k,j,i) |
---|
153 | wwind2=f3->w(t,:,:,:) ;w(t,k,j,i) |
---|
154 | hoehe2=f3->zu_3d(:) |
---|
155 | xu2=f3->xu(:)-sdx |
---|
156 | y2=f3->y(:)-sdy |
---|
157 | x2=f3->x(:)-sdx |
---|
158 | hoehew2=f3->zw_3d(:) |
---|
159 | nznea1_2=26 ; bis 75m Hoehe |
---|
160 | |
---|
161 | end if |
---|
162 | |
---|
163 | |
---|
164 | if(test_a3_2 .ge. 1) then |
---|
165 | f4 = addfile("../OUTPUT/a3-2_av_3d.nc","r") ;Name der Datei Àndern |
---|
166 | dNames = getfilevardims(f4,"time") |
---|
167 | dSizes = getfilevardimsizes(f4,"time") |
---|
168 | tmax=dSizes-1 |
---|
169 | t=tmax |
---|
170 | uwind3=f4->u(t,:,:,:) ;u(t,k,j,i) |
---|
171 | wwind3=f4->w(t,:,:,:) ;w(t,k,j,i) |
---|
172 | |
---|
173 | |
---|
174 | end if |
---|
175 | |
---|
176 | |
---|
177 | |
---|
178 | |
---|
179 | |
---|
180 | |
---|
181 | if(test_c1 .ge. 1) then |
---|
182 | ascii_filename1 = "../comparative_data/C1.dat" |
---|
183 | seismic1 = asciiread(ascii_filename1,(/651,7/),"float") |
---|
184 | |
---|
185 | vdi=651 |
---|
186 | xvdi=new((/vdi/),double) |
---|
187 | yvdi=new((/vdi/),double) |
---|
188 | zvdi=new((/vdi/),double) |
---|
189 | unormvdi=new((/vdi/),double) |
---|
190 | wnormvdi=new((/vdi/),double) |
---|
191 | |
---|
192 | xvdi(:) = seismic1(:,1) |
---|
193 | yvdi(:) = seismic1(:,2) |
---|
194 | zvdi(:) = seismic1(:,3) |
---|
195 | unormvdi(:) = seismic1(:,4) |
---|
196 | wnormvdi(:) = seismic1(:,6) |
---|
197 | end if |
---|
198 | |
---|
199 | ;--------------------------------------------------------------- |
---|
200 | ;----Trilineare Interpolation (siehe wikipedia)-------------------------------------------- |
---|
201 | ;--------------------------------------------------------------- |
---|
202 | |
---|
203 | |
---|
204 | ;----Am Normierungspunkt-------------------------------------------- |
---|
205 | |
---|
206 | ;---fuer a1-1----------- |
---|
207 | if(test_a1_1 .eq. 1) then |
---|
208 | do i=0,nx |
---|
209 | |
---|
210 | if(findin .le.0.) then |
---|
211 | if(xu(i) .ge. xn) then |
---|
212 | in=i |
---|
213 | findin=findin+1. |
---|
214 | |
---|
215 | end if |
---|
216 | end if |
---|
217 | end do |
---|
218 | |
---|
219 | |
---|
220 | do j=0,ny |
---|
221 | if(findjn .le. 0.) then |
---|
222 | if(y(j) .ge. yn) then |
---|
223 | jn=j |
---|
224 | findjn=findjn+1. |
---|
225 | end if |
---|
226 | end if |
---|
227 | end do |
---|
228 | |
---|
229 | |
---|
230 | |
---|
231 | do k=0,nz |
---|
232 | if(findkn .le. 0.) then |
---|
233 | if(hoehe(k) .ge. zn) then |
---|
234 | kn=k |
---|
235 | findkn=findkn+1. |
---|
236 | end if |
---|
237 | end if |
---|
238 | end do |
---|
239 | |
---|
240 | |
---|
241 | |
---|
242 | |
---|
243 | |
---|
244 | xd=(xn-(xu(in-1)))/(xu(in)-(xu(in-1))) |
---|
245 | yd=(yn-(y(jn-1)))/(y(jn)-(y(jn-1))) |
---|
246 | zd=(zn-hoehe(kn-1))/(hoehe(kn)-hoehe(kn-1)) |
---|
247 | |
---|
248 | |
---|
249 | |
---|
250 | |
---|
251 | c00=uwind(kn-1,jn-1,in-1)*(1.-xd)+uwind(kn-1,jn-1,in)*xd |
---|
252 | c01=uwind(kn,jn-1,in-1)*(1.-xd)+uwind(kn,jn-1,in)*xd |
---|
253 | c10=uwind(kn-1,jn,in-1)*(1.-xd)+uwind(kn-1,jn,in)*xd |
---|
254 | c11=uwind(kn,jn,in-1)*(1.-xd)+uwind(kn,jn,in)*xd |
---|
255 | |
---|
256 | |
---|
257 | c0=c00*(1.-yd)+c10*yd |
---|
258 | c1=c01*(1.-yd)+c11*yd |
---|
259 | |
---|
260 | c=c0*(1.-zd)+c1*zd |
---|
261 | unorm=c |
---|
262 | |
---|
263 | print("Die Windgeschwindigkeit am Normierungspunkt betraegt bei a1-1: "+c+" m/s.") |
---|
264 | print(" ") |
---|
265 | |
---|
266 | end if |
---|
267 | ;---------fuer a1-2-------------------- |
---|
268 | if(test_a1_2 .eq. 1) then |
---|
269 | |
---|
270 | findin=0. |
---|
271 | findjn=0. |
---|
272 | findkn=0. |
---|
273 | |
---|
274 | do i=0,nx |
---|
275 | |
---|
276 | if(findin .le.0.) then |
---|
277 | if(xu1(i) .ge. xn) then |
---|
278 | in=i |
---|
279 | findin=findin+1. |
---|
280 | |
---|
281 | end if |
---|
282 | end if |
---|
283 | end do |
---|
284 | |
---|
285 | |
---|
286 | do j=0,ny |
---|
287 | if(findjn .le. 0.) then |
---|
288 | if(y1(j) .ge. yn) then |
---|
289 | jn=j |
---|
290 | findjn=findjn+1. |
---|
291 | end if |
---|
292 | end if |
---|
293 | end do |
---|
294 | |
---|
295 | |
---|
296 | |
---|
297 | do k=0,nz |
---|
298 | if(findkn .le. 0.) then |
---|
299 | if(hoehe1(k) .ge. zn) then |
---|
300 | kn=k |
---|
301 | findkn=findkn+1. |
---|
302 | end if |
---|
303 | end if |
---|
304 | end do |
---|
305 | |
---|
306 | xd=(xn-(xu1(in-1)))/(xu1(in)-(xu1(in-1))) |
---|
307 | yd=(yn-(y1(jn-1)))/(y1(jn)-(y1(jn-1))) |
---|
308 | zd=(zn-hoehe1(kn-1))/(hoehe1(kn)-hoehe1(kn-1)) |
---|
309 | |
---|
310 | |
---|
311 | c00=uwind1(kn-1,jn-1,in-1)*(1.-xd)+uwind1(kn-1,jn-1,in)*xd |
---|
312 | c01=uwind1(kn,jn-1,in-1)*(1.-xd)+uwind1(kn,jn-1,in)*xd |
---|
313 | c10=uwind1(kn-1,jn,in-1)*(1.-xd)+uwind1(kn-1,jn,in)*xd |
---|
314 | c11=uwind1(kn,jn,in-1)*(1.-xd)+uwind1(kn,jn,in)*xd |
---|
315 | |
---|
316 | |
---|
317 | c0=c00*(1.-yd)+c10*yd |
---|
318 | c1=c01*(1.-yd)+c11*yd |
---|
319 | |
---|
320 | c=c0*(1.-zd)+c1*zd |
---|
321 | |
---|
322 | unorm1=c |
---|
323 | |
---|
324 | print("Die Windgeschwindigkeit am Normierungspunkt betraegt bei a1-2: "+c+" m/s.") |
---|
325 | print(" ") |
---|
326 | |
---|
327 | end if |
---|
328 | |
---|
329 | ;---------fuer a2-------------------- |
---|
330 | if(test_a2 .eq. 1) then ;!!!!!!hoehe,xu,y anpassen |
---|
331 | |
---|
332 | |
---|
333 | xd=(xn-(xu2(in-1)))/(xu2(in)-(xu2(in-1))) |
---|
334 | yd=(yn-(y2(jn-1)))/(y2(jn)-(y2(jn-1))) |
---|
335 | zd=(zn-hoehe2(kn-1))/(hoehe2(kn)-hoehe2(kn-1)) |
---|
336 | |
---|
337 | |
---|
338 | c00=uwind2(kn-1,jn-1,in-1)*(1.-xd)+uwind2(kn-1,jn-1,in)*xd |
---|
339 | c01=uwind2(kn,jn-1,in-1)*(1.-xd)+uwind2(kn,jn-1,in)*xd |
---|
340 | c10=uwind2(kn-1,jn,in-1)*(1.-xd)+uwind2(kn-1,jn,in)*xd |
---|
341 | c11=uwind2(kn,jn,in-1)*(1.-xd)+uwind2(kn,jn,in)*xd |
---|
342 | |
---|
343 | |
---|
344 | c0=c00*(1.-yd)+c10*yd |
---|
345 | c1=c01*(1.-yd)+c11*yd |
---|
346 | |
---|
347 | c=c0*(1.-zd)+c1*zd |
---|
348 | |
---|
349 | unorm2=c |
---|
350 | |
---|
351 | |
---|
352 | print("Die Windgeschwindigkeit am Normierungspunkt betraegt bei a2: "+c+" m/s.") |
---|
353 | print(" ") |
---|
354 | |
---|
355 | end if |
---|
356 | |
---|
357 | |
---|
358 | |
---|
359 | |
---|
360 | |
---|
361 | |
---|
362 | ;--------------------------------------------------------------- |
---|
363 | ;----Gitterpunkte fÃŒr VDI Datei C1 bestimmen-------------------------------------------- |
---|
364 | ;--------------------------------------------------------------- |
---|
365 | if(test_c1 .ge. 1) then |
---|
366 | ;Initialisierung |
---|
367 | U_zaehl=0. |
---|
368 | W_zaehl=0. |
---|
369 | DKM_zaehl=0. |
---|
370 | U_treffer=0. |
---|
371 | W_treffer=0. |
---|
372 | ;----fuer u--------------------- |
---|
373 | |
---|
374 | |
---|
375 | do jj=0,vdi-1 ;Schleife ÃŒber einzelne Vergleichspunkte |
---|
376 | |
---|
377 | |
---|
378 | |
---|
379 | findin=0. |
---|
380 | findjn=0. |
---|
381 | findkn=0. |
---|
382 | |
---|
383 | xn=doubletofloat(xvdi(jj)) |
---|
384 | yn=doubletofloat(yvdi(jj)) |
---|
385 | zn=doubletofloat(zvdi(jj)) |
---|
386 | |
---|
387 | do i=1,nx |
---|
388 | if(findin .le.0.) then |
---|
389 | if(xu1(i) .ge. xn) then |
---|
390 | in=i |
---|
391 | findin=findin+1. |
---|
392 | |
---|
393 | end if |
---|
394 | end if |
---|
395 | end do |
---|
396 | |
---|
397 | |
---|
398 | |
---|
399 | |
---|
400 | do j=1,ny |
---|
401 | if(findjn .le. 0.) then |
---|
402 | if(y1(j) .ge. yn) then |
---|
403 | jn=j |
---|
404 | findjn=findjn+1. |
---|
405 | end if |
---|
406 | end if |
---|
407 | end do |
---|
408 | |
---|
409 | |
---|
410 | |
---|
411 | |
---|
412 | do k=1,nz |
---|
413 | if(findkn .le. 0.) then |
---|
414 | if(hoehe1(k) .ge. zn) then |
---|
415 | kn=k |
---|
416 | findkn=findkn+1. |
---|
417 | end if |
---|
418 | end if |
---|
419 | end do |
---|
420 | |
---|
421 | |
---|
422 | |
---|
423 | |
---|
424 | |
---|
425 | xd=(xn-(xu1(in-1)))/(xu1(in)-(xu1(in-1))) |
---|
426 | yd=(yn-(y1(jn-1)))/(y1(jn)-(y1(jn-1))) |
---|
427 | zd=(zn-hoehe1(kn-1))/(hoehe1(kn)-hoehe1(kn-1)) |
---|
428 | |
---|
429 | |
---|
430 | c00=uwind1(kn-1,jn-1,in-1)*(1.-xd)+uwind1(kn-1,jn-1,in)*xd |
---|
431 | c01=uwind1(kn,jn-1,in-1)*(1.-xd)+uwind1(kn,jn-1,in)*xd |
---|
432 | c10=uwind1(kn-1,jn,in-1)*(1.-xd)+uwind1(kn-1,jn,in)*xd |
---|
433 | c11=uwind1(kn,jn,in-1)*(1.-xd)+uwind1(kn,jn,in)*xd |
---|
434 | |
---|
435 | |
---|
436 | c0=c00*(1.-yd)+c10*yd |
---|
437 | c1=c01*(1.-yd)+c11*yd |
---|
438 | |
---|
439 | c=c0*(1.-zd)+c1*zd |
---|
440 | |
---|
441 | |
---|
442 | |
---|
443 | |
---|
444 | |
---|
445 | |
---|
446 | |
---|
447 | |
---|
448 | ;----Abweichung von vdi-Wert----------------------------------------------------- |
---|
449 | if(.not. ismissing(c/unorm1) .and. .not. ismissing(unormvdi(jj)) .and. unormvdi(jj) .ne. 0.) then |
---|
450 | |
---|
451 | Dc=abs((c/unorm1-unormvdi(jj))/unormvdi(jj)) |
---|
452 | Wc=abs(c/unorm1-unormvdi(jj)) |
---|
453 | |
---|
454 | U_zaehl=U_zaehl+1 |
---|
455 | |
---|
456 | if(Dc .le. Dc1 .or. Wc .le. Wc1) then |
---|
457 | U_treffer=U_treffer+1. |
---|
458 | end if |
---|
459 | end if |
---|
460 | |
---|
461 | |
---|
462 | end do |
---|
463 | |
---|
464 | |
---|
465 | |
---|
466 | print("Trefferquote fuer U bei c1: " +U_treffer/U_zaehl*100.+" %") |
---|
467 | |
---|
468 | |
---|
469 | ;----fuer w (anderes Gitter)--------------------- |
---|
470 | |
---|
471 | |
---|
472 | do jj=0,vdi-1 ;Schleife ÃŒber einzelne Vergleichspunkte |
---|
473 | |
---|
474 | |
---|
475 | findin=0. |
---|
476 | findjn=0. |
---|
477 | findkn=0. |
---|
478 | |
---|
479 | xn=doubletofloat(xvdi(jj)) |
---|
480 | yn=doubletofloat(yvdi(jj)) |
---|
481 | zn=doubletofloat(zvdi(jj)) |
---|
482 | |
---|
483 | do i=1,nx |
---|
484 | if(findin .le.0.) then |
---|
485 | if(x1(i) .ge. xn) then |
---|
486 | in=i |
---|
487 | findin=findin+1. |
---|
488 | |
---|
489 | end if |
---|
490 | end if |
---|
491 | end do |
---|
492 | |
---|
493 | |
---|
494 | |
---|
495 | |
---|
496 | do j=1,ny |
---|
497 | if(findjn .le. 0.) then |
---|
498 | if(y1(j) .ge. yn) then |
---|
499 | jn=j |
---|
500 | findjn=findjn+1. |
---|
501 | end if |
---|
502 | end if |
---|
503 | end do |
---|
504 | |
---|
505 | |
---|
506 | |
---|
507 | |
---|
508 | do k=1,nz |
---|
509 | if(findkn .le. 0.) then |
---|
510 | if(hoehew1(k) .ge. zn) then |
---|
511 | kn=k |
---|
512 | findkn=findkn+1. |
---|
513 | end if |
---|
514 | end if |
---|
515 | end do |
---|
516 | |
---|
517 | |
---|
518 | xd=(xn-(x1(in-1)))/(x1(in)-(x1(in-1))) |
---|
519 | yd=(yn-(y1(jn-1)))/(y1(jn)-(y1(jn-1))) |
---|
520 | zd=(zn-hoehew1(kn-1))/(hoehew1(kn)-hoehew1(kn-1)) |
---|
521 | |
---|
522 | |
---|
523 | |
---|
524 | c00=wwind1(kn-1,jn-1,in-1)*(1.-xd)+wwind1(kn-1,jn-1,in)*xd |
---|
525 | c01=wwind1(kn,jn-1,in-1)*(1.-xd)+wwind1(kn,jn-1,in)*xd |
---|
526 | c10=wwind1(kn-1,jn,in-1)*(1.-xd)+wwind1(kn-1,jn,in)*xd |
---|
527 | c11=wwind1(kn,jn,in-1)*(1.-xd)+wwind1(kn,jn,in)*xd |
---|
528 | |
---|
529 | |
---|
530 | c0=c00*(1.-yd)+c10*yd |
---|
531 | c1=c01*(1.-yd)+c11*yd |
---|
532 | |
---|
533 | c=c0*(1.-zd)+c1*zd |
---|
534 | |
---|
535 | |
---|
536 | |
---|
537 | |
---|
538 | ;----Abweichung von vdi-Wert----------------------------------------------------- |
---|
539 | |
---|
540 | if(.not. ismissing(c/unorm1) .and. .not. ismissing(wnormvdi(jj)) .and. wnormvdi(jj) .ne. 0.) then |
---|
541 | |
---|
542 | Dc=abs((c/unorm1-wnormvdi(jj))/wnormvdi(jj)) |
---|
543 | Wc=abs(c/unorm1-wnormvdi(jj)) |
---|
544 | |
---|
545 | W_zaehl=W_zaehl+1 |
---|
546 | |
---|
547 | if(Dc .le. Dc1 .or. Wc .le. Wc1) then |
---|
548 | W_treffer=W_treffer+1. |
---|
549 | end if |
---|
550 | |
---|
551 | end if |
---|
552 | |
---|
553 | end do |
---|
554 | |
---|
555 | print("Trefferquote fuer W bei c1: " +W_treffer/W_zaehl*100.+" %") |
---|
556 | |
---|
557 | ;-----Testfall bestanden?---------------------------- |
---|
558 | |
---|
559 | if(U_treffer/U_zaehl*100..gt. 66. .and. W_treffer/W_zaehl*100..gt. 66. ) then |
---|
560 | print("Testfall c1 bestanden") |
---|
561 | end if |
---|
562 | |
---|
563 | print(" ") |
---|
564 | end if |
---|
565 | ;------------------------------------------------------------------ |
---|
566 | |
---|
567 | |
---|
568 | |
---|
569 | |
---|
570 | |
---|
571 | |
---|
572 | |
---|
573 | |
---|
574 | |
---|
575 | ;--------------------------------------------------------------- |
---|
576 | ;----Vergleich Homogen-------------------------------------------- |
---|
577 | ;--------------------------------------------------------------- |
---|
578 | |
---|
579 | if(test_a1_1 .eq. 1) then ;!!!!!!!!!!!!!!!!!!TEST |
---|
580 | ;Initialisierung |
---|
581 | U_zaehl=0. |
---|
582 | W_zaehl=0. |
---|
583 | DKM_zaehl=0. |
---|
584 | U_treffer=0. |
---|
585 | W_treffer=0. |
---|
586 | DKM_treffer=0. |
---|
587 | |
---|
588 | |
---|
589 | |
---|
590 | do k=1,nz |
---|
591 | do j=1,ny |
---|
592 | do i=1,nx |
---|
593 | |
---|
594 | |
---|
595 | if(j .ne. nyh) then |
---|
596 | ;----u-Komponente----------- |
---|
597 | if(.not. ismissing(uwind(k,j,i)) .and. .not. ismissing(uwind(k,nyh,i))) then |
---|
598 | |
---|
599 | Dc=abs((uwind(k,j,i)-uwind(k,nyh,i))/uwind(k,nyh,i)) |
---|
600 | Wc=abs(uwind(k,j,i)-uwind(k,nyh,i)) |
---|
601 | |
---|
602 | U_zaehl=U_zaehl+1 |
---|
603 | |
---|
604 | if(Dc .le. D .or. Wc .le. W) then |
---|
605 | U_treffer=U_treffer+1. |
---|
606 | end if |
---|
607 | |
---|
608 | end if |
---|
609 | |
---|
610 | |
---|
611 | ;;----w-Komponente--------- |
---|
612 | if(.not. ismissing(wwind(k,j,i)) .and. .not. ismissing(wwind(k,nyh,i))) then |
---|
613 | |
---|
614 | Dc=abs((wwind(k,j,i)-wwind(k,nyh,i))/wwind(k,nyh,i)) |
---|
615 | Wc=abs(wwind(k,j,i)-wwind(k,nyh,i)) |
---|
616 | |
---|
617 | W_zaehl=W_zaehl+1 |
---|
618 | |
---|
619 | if(Dc .le. D .or. Wc .le. W) then |
---|
620 | W_treffer=W_treffer+1. |
---|
621 | end if |
---|
622 | |
---|
623 | end if |
---|
624 | |
---|
625 | ;----DKM-------------- |
---|
626 | if(.not. ismissing(DKM(k,j,i)) .and. .not. ismissing(DKM(k,nyh,i)) .and. DKM(k,nyh,i) .ne. 0.) then |
---|
627 | |
---|
628 | Dc=abs((DKM(k,j,i)-DKM(k,nyh,i))/DKM(k,nyh,i)) |
---|
629 | Wc=abs(DKM(k,j,i)-DKM(k,nyh,i)) |
---|
630 | |
---|
631 | DKM_zaehl=DKM_zaehl+1 |
---|
632 | |
---|
633 | if(Dc .le. D .or. Wc .le. W) then |
---|
634 | DKM_treffer=DKM_treffer+1. |
---|
635 | end if |
---|
636 | |
---|
637 | end if |
---|
638 | |
---|
639 | |
---|
640 | end if |
---|
641 | |
---|
642 | end do |
---|
643 | end do |
---|
644 | end do |
---|
645 | |
---|
646 | |
---|
647 | |
---|
648 | print("Trefferquote fuer U bei a1-1: " +U_treffer/U_zaehl*100.+" %") |
---|
649 | |
---|
650 | |
---|
651 | print("Trefferquote fuer W bei a1-1: " +W_treffer/W_zaehl*100.+" %") |
---|
652 | |
---|
653 | |
---|
654 | print("Trefferquote fuer DKM bei a1-1: " +DKM_treffer/DKM_zaehl*100.+" %") |
---|
655 | |
---|
656 | |
---|
657 | if(U_treffer/U_zaehl*100..gt. 95. .and. W_treffer/W_zaehl*100..gt. 95. .and. DKM_treffer/DKM_zaehl*100..gt. 95.) then |
---|
658 | print("Testfall a1-1 bestanden") |
---|
659 | end if |
---|
660 | |
---|
661 | print(" ") |
---|
662 | end if |
---|
663 | |
---|
664 | |
---|
665 | ;--------------------------------------------------------------- |
---|
666 | ;----Vergleich Skalierbarkeit a1-2-------------------------------------------- |
---|
667 | ;--------------------------------------------------------------- |
---|
668 | |
---|
669 | if(test_a1_2 .eq. 1) then |
---|
670 | ;Initialisierung |
---|
671 | U_zaehl=0. |
---|
672 | W_zaehl=0. |
---|
673 | DKM_zaehl=0. |
---|
674 | U_treffer=0. |
---|
675 | W_treffer=0. |
---|
676 | |
---|
677 | do k=nznb,nznea1_2 |
---|
678 | do i=nxnb,nxne |
---|
679 | |
---|
680 | |
---|
681 | |
---|
682 | |
---|
683 | ;u-Komponente |
---|
684 | if(.not. ismissing(uwind(k,nyh,i)/unorm) .and. .not. ismissing(uwind1(k,nyh,i)/unorm1)) then |
---|
685 | |
---|
686 | |
---|
687 | unorma1_1=doubletofloat(uwind(k,nyh,i)/unorm) |
---|
688 | unorma1_2=doubletofloat(uwind1(k,nyh,i)/unorm1) |
---|
689 | |
---|
690 | |
---|
691 | |
---|
692 | Dc=abs((unorma1_2-unorma1_1)/unorma1_1) |
---|
693 | Wc=abs(unorma1_2-unorma1_1) |
---|
694 | |
---|
695 | U_zaehl=U_zaehl+1 |
---|
696 | |
---|
697 | if(Dc .le. D .or. Wc .le. W) then |
---|
698 | U_treffer=U_treffer+1. |
---|
699 | end if |
---|
700 | |
---|
701 | end if |
---|
702 | |
---|
703 | |
---|
704 | ;;w-Komponente |
---|
705 | if(.not. ismissing(wwind(k,nyh,i)/unorm) .and. .not. ismissing(wwind1(k,nyh,i)/unorm1)) then |
---|
706 | |
---|
707 | |
---|
708 | wnorma1_1=doubletofloat(wwind(k,nyh,i)/unorm) |
---|
709 | wnorma1_2=doubletofloat(wwind1(k,nyh,i)/unorm1) |
---|
710 | |
---|
711 | Dc=abs((wnorma1_2-wnorma1_1)/wnorma1_1) |
---|
712 | Wc=abs(wnorma1_2-wnorma1_1) |
---|
713 | |
---|
714 | W_zaehl=W_zaehl+1 |
---|
715 | |
---|
716 | if(Dc .le. D .or. Wc .le. W) then |
---|
717 | W_treffer=W_treffer+1. |
---|
718 | end if |
---|
719 | |
---|
720 | end if |
---|
721 | |
---|
722 | end do |
---|
723 | end do |
---|
724 | |
---|
725 | |
---|
726 | |
---|
727 | |
---|
728 | print("Trefferquote fuer U bei a1-2: " +U_treffer/U_zaehl*100.+" %") |
---|
729 | |
---|
730 | |
---|
731 | |
---|
732 | print("Trefferquote fuer W bei a1-2: " +W_treffer/W_zaehl*100.+" %") |
---|
733 | |
---|
734 | |
---|
735 | if(U_treffer/U_zaehl*100..gt. 95. .and. W_treffer/W_zaehl*100..gt. 95.) then |
---|
736 | print("Testfall a1-2 bestanden") |
---|
737 | end if |
---|
738 | print(" ") |
---|
739 | end if |
---|
740 | |
---|
741 | |
---|
742 | ;--------------------------------------------------------------- |
---|
743 | ;----Vergleich Stationaritaet a2-------------------------------------------- |
---|
744 | ;--------------------------------------------------------------- |
---|
745 | |
---|
746 | if(test_a2 .eq. 1) then |
---|
747 | ;Initialisierung |
---|
748 | U_zaehl=0. |
---|
749 | W_zaehl=0. |
---|
750 | DKM_zaehl=0. |
---|
751 | U_treffer=0. |
---|
752 | W_treffer=0. |
---|
753 | |
---|
754 | |
---|
755 | unorm1=1. |
---|
756 | unorm2=1. |
---|
757 | |
---|
758 | do k=nznb,nznea1_2 |
---|
759 | do i=nxnb,nxne |
---|
760 | |
---|
761 | |
---|
762 | |
---|
763 | |
---|
764 | ;u-Komponente |
---|
765 | if(.not. ismissing(uwind1(k,nyh,i)/unorm1) .and. .not. ismissing(uwind2(k,nyh,i)/unorm2)) then |
---|
766 | |
---|
767 | |
---|
768 | unorma2=doubletofloat(uwind2(k,nyh,i)/unorm2) |
---|
769 | unorma1_2=doubletofloat(uwind1(k,nyh,i)/unorm1) |
---|
770 | |
---|
771 | |
---|
772 | |
---|
773 | Dc=abs((unorma2-unorma1_2)/unorma1_2) |
---|
774 | Wc=abs(unorma2-unorma1_2) |
---|
775 | |
---|
776 | U_zaehl=U_zaehl+1 |
---|
777 | |
---|
778 | if(Dc .le. D .or. Wc .le. W) then |
---|
779 | U_treffer=U_treffer+1. |
---|
780 | end if |
---|
781 | |
---|
782 | end if |
---|
783 | |
---|
784 | |
---|
785 | ;;w-Komponente |
---|
786 | if(.not. ismissing(wwind1(k,nyh,i)/unorm1) .and. .not. ismissing(wwind2(k,nyh,i)/unorm2)) then |
---|
787 | |
---|
788 | |
---|
789 | wnorma2=doubletofloat(wwind2(k,nyh,i)/unorm2) |
---|
790 | wnorma1_2=doubletofloat(wwind1(k,nyh,i)/unorm1) |
---|
791 | |
---|
792 | Dc=abs((wnorma2-wnorma1_2)/wnorma1_2) |
---|
793 | Wc=abs(wnorma2-wnorma1_2) |
---|
794 | |
---|
795 | W_zaehl=W_zaehl+1 |
---|
796 | |
---|
797 | if(Dc .le. D .or. Wc .le. W) then |
---|
798 | W_treffer=W_treffer+1. |
---|
799 | end if |
---|
800 | |
---|
801 | end if |
---|
802 | |
---|
803 | end do |
---|
804 | end do |
---|
805 | |
---|
806 | |
---|
807 | |
---|
808 | |
---|
809 | print("Trefferquote fuer U bei a2: " +U_treffer/U_zaehl*100.+" %") |
---|
810 | |
---|
811 | |
---|
812 | |
---|
813 | print("Trefferquote fuer W bei a2: " +W_treffer/W_zaehl*100.+" %") |
---|
814 | |
---|
815 | |
---|
816 | if(U_treffer/U_zaehl*100..gt. 95. .and. W_treffer/W_zaehl*100..gt. 95.) then |
---|
817 | print("Testfall a2 bestanden") |
---|
818 | end if |
---|
819 | print(" ") |
---|
820 | end if |
---|
821 | |
---|
822 | |
---|
823 | |
---|
824 | ;--------------------------------------------------------------- |
---|
825 | ;----Advektion, Turbulent, a3-1-------------------------------------------- |
---|
826 | ;--------------------------------------------------------------- |
---|
827 | |
---|
828 | if(test_a3_1 .eq. 1) then |
---|
829 | |
---|
830 | gebaeudeh = 25. |
---|
831 | wirbell = 0. |
---|
832 | l=0 |
---|
833 | |
---|
834 | do k=nznb,nznea1_2 |
---|
835 | do i=nxnb,nxne |
---|
836 | |
---|
837 | ;----Bestimmen der x-Koordinaten, bei denen u negativ ist |
---|
838 | if(.not. ismissing(uwind1(k,nyh,i))) then |
---|
839 | if(uwind1(k,nyh,i) .lt. 0..and. xu1(i) .ge. 12.5 ) then |
---|
840 | l=l+1 |
---|
841 | xspeicher(l)=xu(i) |
---|
842 | ipos(l)=i |
---|
843 | kpos(l)=k |
---|
844 | end if |
---|
845 | end if |
---|
846 | |
---|
847 | end do |
---|
848 | end do |
---|
849 | |
---|
850 | |
---|
851 | |
---|
852 | ;----das groesste x raussuchen |
---|
853 | maxu=0. |
---|
854 | do m=1,l-1 |
---|
855 | if(xspeicher(m) .gt. maxu) then |
---|
856 | maxu=doubletofloat(xspeicher(m)) |
---|
857 | ind_i=ipos(m) |
---|
858 | ind_k=kpos(m) |
---|
859 | end if |
---|
860 | end do |
---|
861 | |
---|
862 | |
---|
863 | |
---|
864 | diff=uwind1(ind_k,nyh,ind_i+1)-uwind1(ind_k,nyh,ind_i) |
---|
865 | |
---|
866 | |
---|
867 | |
---|
868 | |
---|
869 | wirbell=maxu-12.5 + dx/(diff/abs(uwind1(ind_k,nyh,ind_i))) ;halbe Gebaeudebreite abziehen |
---|
870 | |
---|
871 | |
---|
872 | print("Die LÀnge des Nachlaufwirbels betrÀgt bei a3-1: " +wirbell+" m") |
---|
873 | |
---|
874 | |
---|
875 | if(wirbell .ge. 4.* gebaeudeh .and. wirbell .le. 5. * gebaeudeh) then |
---|
876 | print("Testfall a3-1 bestanden") |
---|
877 | end if |
---|
878 | |
---|
879 | print(" ") |
---|
880 | end if |
---|
881 | |
---|
882 | |
---|
883 | |
---|
884 | ;--------------------------------------------------------------- |
---|
885 | ;----Advektion, Turbulent, a3-2-------------------------------------------- |
---|
886 | ;--------------------------------------------------------------- |
---|
887 | |
---|
888 | if(test_a3_2 .eq. 1) then |
---|
889 | |
---|
890 | |
---|
891 | wirbell2 = 0. |
---|
892 | l=0 |
---|
893 | ipos=0 |
---|
894 | kpos=0 |
---|
895 | |
---|
896 | do k=nznb,nznea1_2 |
---|
897 | do i=nxnb,nxne |
---|
898 | |
---|
899 | ;----Bestimmen der x-Koordinaten, bei denen u negativ ist |
---|
900 | if(.not. ismissing(uwind3(k,nyh,i))) then |
---|
901 | if(uwind3(k,nyh,i) .lt. 0..and. xu(i) .ge. 12.5 ) then |
---|
902 | l=l+1 |
---|
903 | xspeicher(l)=xu(i) |
---|
904 | ipos(l)=i |
---|
905 | kpos(l)=k |
---|
906 | end if |
---|
907 | end if |
---|
908 | |
---|
909 | end do |
---|
910 | end do |
---|
911 | |
---|
912 | |
---|
913 | |
---|
914 | ;----das groesste x raussuchen |
---|
915 | maxu=0. |
---|
916 | do m=1,l-1 |
---|
917 | if(xspeicher(m) .gt. maxu) then |
---|
918 | maxu=doubletofloat(xspeicher(m)) |
---|
919 | ind_i=ipos(m) |
---|
920 | ind_k=kpos(m) |
---|
921 | end if |
---|
922 | end do |
---|
923 | |
---|
924 | |
---|
925 | |
---|
926 | diff=uwind3(ind_k,nyh,ind_i+1)-uwind3(ind_k,nyh,ind_i) |
---|
927 | |
---|
928 | |
---|
929 | |
---|
930 | wirbell2=maxu-12.5+dx/(diff/abs(uwind3(ind_k,nyh,ind_i))) ;halbe Gebaeudebreite abziehen |
---|
931 | |
---|
932 | |
---|
933 | print("Die LÀnge des Nachlaufwirbels betrÀgt bei a3-2: " +wirbell2+" m") |
---|
934 | |
---|
935 | |
---|
936 | if(wirbell2 .gt. wirbell) then |
---|
937 | print("Testfall a3-2 bestanden") |
---|
938 | end if |
---|
939 | |
---|
940 | print(" ") |
---|
941 | |
---|
942 | end if |
---|
943 | |
---|
944 | |
---|
945 | |
---|
946 | |
---|
947 | |
---|
948 | |
---|
949 | |
---|
950 | |
---|
951 | end |
---|
952 | |
---|