Changeset 4646 for palm/trunk
- Timestamp:
- Aug 24, 2020 4:02:40 PM (5 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/fft_xy_mod.f90
r4370 r4646 1 1 !> @file fft_xy_mod.f90 2 !------------------------------------------------------------------------------ !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !17 !--------------------------------------------------------------------------------------------------! 19 18 ! 20 19 ! Current revisions: 21 20 ! ----------------- 22 ! 23 ! 21 ! 22 ! 24 23 ! Former revisions: 25 24 ! ----------------- 26 25 ! $Id$ 26 ! file re-formatted to follow the PALM coding standard 27 ! 28 ! 4370 2020-01-10 14:00:44Z raasch 27 29 ! bugfix for Temperton-fft usage on GPU 28 ! 30 ! 29 31 ! 4366 2020-01-09 08:12:43Z raasch 30 32 ! Vectorized Temperton-fft added 31 ! 33 ! 32 34 ! 4360 2020-01-07 11:25:50Z suehring 33 35 ! Corrected "Former revisions" section 34 ! 36 ! 35 37 ! 4069 2019-07-01 14:05:51Z Giersch 36 38 ! Code added to avoid compiler warnings 37 ! 39 ! 38 40 ! 3655 2019-01-07 16:51:22Z knoop 39 41 ! OpenACC port for SPEC … … 50 52 !------------------------------------------------------------------------------! 51 53 MODULE fft_xy 52 53 54 USE control_parameters, &54 55 56 USE control_parameters, & 55 57 ONLY: fft_method, loop_optimization, message_string 56 58 57 59 USE cuda_fft_interfaces 58 59 USE indices, &60 61 USE indices, & 60 62 ONLY: nx, ny, nz 61 63 … … 67 69 68 70 USE kinds 69 70 USE singleton, &71 72 USE singleton, & 71 73 ONLY: fftn 72 74 73 75 USE temperton_fft 74 75 USE transpose_indices, &76 77 USE transpose_indices, & 76 78 ONLY: nxl_y, nxr_y, nyn_x, nys_x, nzb_x, nzb_y, nzt_x, nzt_y 77 79 … … 79 81 80 82 PRIVATE 81 PUBLIC fft_ x, fft_x_1d, fft_y, fft_y_1d, fft_init, fft_x_m, fft_y_m, f_vec_x, temperton_fft_vec83 PUBLIC fft_init, f_vec_x, fft_x, fft_x_1d, fft_x_m, fft_y, fft_y_1d, fft_y_m, temperton_fft_vec 82 84 83 85 INTEGER(iwp), DIMENSION(:), ALLOCATABLE, SAVE :: ifax_x !< … … 91 93 REAL(wp), SAVE :: sqr_dnx !< 92 94 REAL(wp), SAVE :: sqr_dny !< 93 94 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trigs_x !< 95 96 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trigs_x !< 95 97 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trigs_y !< 96 98 … … 98 100 99 101 #if defined( __ibm ) 100 INTEGER(iwp), PARAMETER :: nau1 = 20000 !< 102 INTEGER(iwp), PARAMETER :: nau1 = 20000 !< 101 103 INTEGER(iwp), PARAMETER :: nau2 = 22000 !< 102 104 ! 103 !-- The following working arrays contain tables and have to be "save" and 104 !-- shared in OpenMP sense 105 REAL(wp), DIMENSION(nau1), SAVE :: aux1 !< 105 !-- The following working arrays contain tables and have to be "save" and shared in OpenMP sense 106 REAL(wp), DIMENSION(nau1), SAVE :: aux1 !< 106 107 REAL(wp), DIMENSION(nau1), SAVE :: auy1 !< 107 REAL(wp), DIMENSION(nau1), SAVE :: aux3 !< 108 REAL(wp), DIMENSION(nau1), SAVE :: aux3 !< 108 109 REAL(wp), DIMENSION(nau1), SAVE :: auy3 !< 109 110 110 111 #elif defined( __nec_fft ) 111 112 INTEGER(iwp), SAVE :: nz1 !< 112 113 113 114 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trig_xb !< 114 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trig_xf !< 115 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trig_xf !< 115 116 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trig_yb !< 116 117 REAL(wp), DIMENSION(:), ALLOCATABLE, SAVE :: trig_yf !< 117 118 118 119 #elif defined( __cuda_fft ) 119 120 INTEGER(C_INT), SAVE :: plan_xf !< … … 126 127 #if defined( __fftw ) 127 128 INCLUDE 'fftw3.f03' 129 COMPLEX(KIND=C_DOUBLE_COMPLEX), DIMENSION(:), ALLOCATABLE, SAVE :: x_out !< 130 COMPLEX(KIND=C_DOUBLE_COMPLEX), DIMENSION(:), ALLOCATABLE, SAVE :: y_out !< 131 128 132 INTEGER(KIND=C_INT) :: nx_c !< 129 133 INTEGER(KIND=C_INT) :: ny_c !< 130 131 COMPLEX(KIND=C_DOUBLE_COMPLEX), DIMENSION(:), ALLOCATABLE, SAVE :: x_out !< 132 COMPLEX(KIND=C_DOUBLE_COMPLEX), DIMENSION(:), ALLOCATABLE, SAVE :: & 133 y_out !< 134 135 REAL(KIND=C_DOUBLE), DIMENSION(:), ALLOCATABLE, SAVE :: & 136 x_in !< 137 REAL(KIND=C_DOUBLE), DIMENSION(:), ALLOCATABLE, SAVE :: & 138 y_in !< 134 135 REAL(KIND=C_DOUBLE), DIMENSION(:), ALLOCATABLE, SAVE :: x_in !< 136 REAL(KIND=C_DOUBLE), DIMENSION(:), ALLOCATABLE, SAVE :: y_in !< 139 137 !$OMP THREADPRIVATE( x_out, y_out, x_in, y_in ) 140 141 138 139 142 140 TYPE(C_PTR), SAVE :: plan_xf, plan_xi, plan_yf, plan_yi 143 141 #endif … … 176 174 177 175 178 !------------------------------------------------------------------------------ !176 !--------------------------------------------------------------------------------------------------! 179 177 ! Description: 180 178 ! ------------ 181 179 !> @todo Missing subroutine description. 182 !------------------------------------------------------------------------------ !180 !--------------------------------------------------------------------------------------------------! 183 181 SUBROUTINE fft_init 184 182 … … 192 190 !-- in OpenMP sense 193 191 #if defined( __ibm ) 192 REAL(wp), DIMENSION(nau2) :: aux2 !< 193 REAL(wp), DIMENSION(nau2) :: auy2 !< 194 REAL(wp), DIMENSION(nau2) :: aux4 !< 195 REAL(wp), DIMENSION(nau2) :: auy4 !< 194 196 REAL(wp), DIMENSION(0:nx+2) :: workx !< 195 197 REAL(wp), DIMENSION(0:ny+2) :: worky !< 196 REAL(wp), DIMENSION(nau2) :: aux2 !<197 REAL(wp), DIMENSION(nau2) :: auy2 !<198 REAL(wp), DIMENSION(nau2) :: aux4 !<199 REAL(wp), DIMENSION(nau2) :: auy4 !<200 198 #elif defined( __nec_fft ) 201 199 REAL(wp), DIMENSION(0:nx+3,nz+1) :: work_x !< … … 203 201 REAL(wp), DIMENSION(6*(nx+3),nz+1) :: workx !< 204 202 REAL(wp), DIMENSION(6*(ny+3),nz+1) :: worky !< 205 #endif 203 #endif 206 204 207 205 ! … … 233 231 ! 234 232 !-- Initialize tables for fft along x 235 CALL DRCFT( 1, workx, 1, workx, 1, nx+1, 1, 1, sqr_dnx, aux1, nau1, & 236 aux2, nau2 ) 237 CALL DCRFT( 1, workx, 1, workx, 1, nx+1, 1, -1, sqr_dnx, aux3, nau1, & 238 aux4, nau2 ) 233 CALL DRCFT( 1, workx, 1, workx, 1, nx+1, 1, 1, sqr_dnx, aux1, nau1, aux2, nau2 ) 234 CALL DCRFT( 1, workx, 1, workx, 1, nx+1, 1, -1, sqr_dnx, aux3, nau1, aux4, nau2 ) 239 235 ! 240 236 !-- Initialize tables for fft along y 241 CALL DRCFT( 1, worky, 1, worky, 1, ny+1, 1, 1, sqr_dny, auy1, nau1, & 242 auy2, nau2 ) 243 CALL DCRFT( 1, worky, 1, worky, 1, ny+1, 1, -1, sqr_dny, auy3, nau1, & 244 auy4, nau2 ) 237 CALL DRCFT( 1, worky, 1, worky, 1, ny+1, 1, 1, sqr_dny, auy1, nau1, auy2, nau2 ) 238 CALL DCRFT( 1, worky, 1, worky, 1, ny+1, 1, -1, sqr_dny, auy3, nau1, auy4, nau2 ) 245 239 #elif defined( __nec_fft ) 246 message_string = 'fft method "' // TRIM( fft_method) // & 247 '" currently does not work on NEC' 240 message_string = 'fft method "' // TRIM( fft_method) // '" currently does not work on NEC' 248 241 CALL message( 'fft_init', 'PA0187', 1, 2, 0, 6, 0 ) 249 242 250 ALLOCATE( trig_xb(2*(nx+1)), trig_xf(2*(nx+1)), & 251 trig_yb(2*(ny+1)), trig_yf(2*(ny+1)) ) 243 ALLOCATE( trig_xb(2*(nx+1)), trig_xf(2*(nx+1)), trig_yb(2*(ny+1)), trig_yf(2*(ny+1)) ) 252 244 253 245 work_x = 0.0_wp … … 260 252 CALL DZFFT( 0, nx+1, sqr_dnx, work_x, work_x, trig_xf, workx, 0 ) 261 253 CALL ZDFFT( 0, nx+1, sqr_dnx, work_x, work_x, trig_xb, workx, 0 ) 262 CALL DZFFTM( 0, nx+1, nz1, sqr_dnx, work_x, nx+4, work_x, nx+4, & 263 trig_xf, workx, 0 ) 264 CALL ZDFFTM( 0, nx+1, nz1, sqr_dnx, work_x, nx+4, work_x, nx+4, & 265 trig_xb, workx, 0 ) 254 CALL DZFFTM( 0, nx+1, nz1, sqr_dnx, work_x, nx+4, work_x, nx+4, trig_xf, workx, 0 ) 255 CALL ZDFFTM( 0, nx+1, nz1, sqr_dnx, work_x, nx+4, work_x, nx+4, trig_xb, workx, 0 ) 266 256 ! 267 257 !-- Initialize tables for fft along y (non-vector and vector case (M)) 268 258 CALL DZFFT( 0, ny+1, sqr_dny, work_y, work_y, trig_yf, worky, 0 ) 269 259 CALL ZDFFT( 0, ny+1, sqr_dny, work_y, work_y, trig_yb, worky, 0 ) 270 CALL DZFFTM( 0, ny+1, nz1, sqr_dny, work_y, ny+4, work_y, ny+4, & 271 trig_yf, worky, 0 ) 272 CALL ZDFFTM( 0, ny+1, nz1, sqr_dny, work_y, ny+4, work_y, ny+4, & 273 trig_yb, worky, 0 ) 260 CALL DZFFTM( 0, ny+1, nz1, sqr_dny, work_y, ny+4, work_y, ny+4, trig_yf, worky, 0 ) 261 CALL ZDFFTM( 0, ny+1, nz1, sqr_dny, work_y, ny+4, work_y, ny+4, trig_yb, worky, 0 ) 274 262 #elif defined( __cuda_fft ) 275 263 CALL CUFFTPLAN1D( plan_xf, nx+1, CUFFT_D2Z, (nyn_x-nys_x+1) * (nzt_x-nzb_x+1) ) … … 303 291 ny_c = ny+1 304 292 !$OMP PARALLEL 305 ALLOCATE( x_in(0:nx+2), y_in(0:ny+2), x_out(0:(nx+1)/2), & 306 y_out(0:(ny+1)/2) ) 293 ALLOCATE( x_in(0:nx+2), y_in(0:ny+2), x_out(0:(nx+1)/2), y_out(0:(ny+1)/2) ) 307 294 !$OMP END PARALLEL 308 295 plan_xf = FFTW_PLAN_DFT_R2C_1D( nx_c, x_in, x_out, FFTW_ESTIMATE ) … … 321 308 ELSE 322 309 323 message_string = 'fft method "' // TRIM( fft_method) // & 324 '" not available' 310 message_string = 'fft method "' // TRIM( fft_method) // '" not available' 325 311 CALL message( 'fft_init', 'PA0189', 1, 2, 0, 6, 0 ) 326 312 ENDIF … … 329 315 330 316 331 !------------------------------------------------------------------------------ !317 !--------------------------------------------------------------------------------------------------! 332 318 ! Description: 333 319 ! ------------ 334 !> Fourier-transformation along x-direction. 320 !> Fourier-transformation along x-direction. 335 321 !> Version for 2D-decomposition. 336 !> It uses internal algorithms (Singleton or Temperton) or 337 !> system-specific routines, if they are available338 !------------------------------------------------------------------------------ !339 322 !> It uses internal algorithms (Singleton or Temperton) or system-specific routines, if they are 323 !> available. 324 !--------------------------------------------------------------------------------------------------! 325 340 326 SUBROUTINE fft_x( ar, direction, ar_2d, ar_inv ) 341 327 … … 344 330 345 331 CHARACTER (LEN=*) :: direction !< 346 332 347 333 COMPLEX(wp), DIMENSION(:), ALLOCATABLE :: cwork !< 348 334 349 INTEGER(iwp) :: i !< 335 INTEGER(iwp) :: i !< 350 336 INTEGER(iwp) :: ishape(1) !< 351 337 INTEGER(iwp) :: j !< … … 354 340 355 341 LOGICAL :: forward_fft !< 356 342 357 343 REAL(wp), DIMENSION(0:nx+2) :: work !< 358 344 REAL(wp), DIMENSION(nx+2) :: work1 !< 359 345 360 346 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: work_vec !< 361 347 REAL(wp), DIMENSION(0:nx,nys_x:nyn_x), OPTIONAL :: ar_2d !< 362 348 349 REAL(wp), DIMENSION(0:nx,nys_x:nyn_x,nzb_x:nzt_x) :: ar !< 363 350 REAL(wp), DIMENSION(nys_x:nyn_x,nzb_x:nzt_x,0:nx), OPTIONAL :: ar_inv !< 364 REAL(wp), DIMENSION(0:nx,nys_x:nyn_x,nzb_x:nzt_x) :: ar !<365 351 366 352 #if defined( __ibm ) 367 REAL(wp), DIMENSION(nau2) :: aux2 !< 353 REAL(wp), DIMENSION(nau2) :: aux2 !< 368 354 REAL(wp), DIMENSION(nau2) :: aux4 !< 369 355 #elif defined( __nec_fft ) … … 387 373 388 374 ! 389 !-- Performing the fft with singleton's software works on every system, 390 !-- since it is part of the model375 !-- Performing the fft with singleton's software works on every system, since it is part of 376 !-- the model. 391 377 ALLOCATE( cwork(0:nx) ) 392 393 IF ( forward_fft ) then378 379 IF ( forward_fft ) THEN 394 380 395 381 !$OMP PARALLEL PRIVATE ( cwork, i, ishape, j, k ) … … 425 411 cwork(0) = CMPLX( ar(0,j,k), 0.0_wp, KIND=wp ) 426 412 DO i = 1, (nx+1)/2 - 1 427 cwork(i) = CMPLX( ar(i,j,k), -ar(nx+1-i,j,k), & 428 KIND=wp ) 429 cwork(nx+1-i) = CMPLX( ar(i,j,k), ar(nx+1-i,j,k), & 430 KIND=wp ) 413 cwork(i) = CMPLX( ar(i,j,k), -ar(nx+1-i,j,k), KIND=wp ) 414 cwork(nx+1-i) = CMPLX( ar(i,j,k), ar(nx+1-i,j,k), KIND=wp ) 431 415 ENDDO 432 416 cwork((nx+1)/2) = CMPLX( ar((nx+1)/2,j,k), 0.0_wp, KIND=wp ) … … 450 434 451 435 ! 452 !-- Performing the fft with Temperton's software works on every system, 453 !-- since it is part of the model436 !-- Performing the fft with Temperton's software works on every system, since it is part of 437 !-- the model. 454 438 IF ( forward_fft ) THEN 455 439 … … 633 617 x_out(0) = CMPLX( ar_2d(0,j), 0.0_wp, KIND=wp ) 634 618 DO i = 1, (nx+1)/2 - 1 635 x_out(i) = CMPLX( ar_2d(i,j), ar_2d(nx+1-i,j), & 636 KIND=wp ) 637 ENDDO 638 x_out((nx+1)/2) = CMPLX( ar_2d((nx+1)/2,j), 0.0_wp, & 639 KIND=wp ) 619 x_out(i) = CMPLX( ar_2d(i,j), ar_2d(nx+1-i,j), KIND=wp ) 620 ENDDO 621 x_out((nx+1)/2) = CMPLX( ar_2d((nx+1)/2,j), 0.0_wp, KIND=wp ) 640 622 641 623 ELSE … … 645 627 x_out(i) = CMPLX( ar(i,j,k), ar(nx+1-i,j,k), KIND=wp ) 646 628 ENDDO 647 x_out((nx+1)/2) = CMPLX( ar((nx+1)/2,j,k), 0.0_wp, & 648 KIND=wp ) 629 x_out((nx+1)/2) = CMPLX( ar((nx+1)/2,j,k), 0.0_wp, KIND=wp ) 649 630 650 631 ENDIF … … 670 651 DO j = nys_x, nyn_x 671 652 672 CALL DRCFT( 0, ar, 1, work, 1, nx+1, 1, 1, sqr_dnx, aux1, & 673 nau1, aux2, nau2 ) 653 CALL DRCFT( 0, ar, 1, work, 1, nx+1, 1, 1, sqr_dnx, aux1, nau1, aux2, nau2 ) 674 654 675 655 DO i = 0, (nx+1)/2 … … 700 680 work(nx+2) = 0.0_wp 701 681 702 CALL DCRFT( 0, work, 1, work, 1, nx+1, 1, -1, sqr_dnx, & 703 aux3, nau1, aux4, nau2 ) 682 CALL DCRFT( 0, work, 1, work, 1, nx+1, 1, -1, sqr_dnx, aux3, nau1, aux4, nau2 ) 704 683 705 684 DO i = 0, nx … … 725 704 726 705 CALL DZFFT( 1, nx+1, sqr_dnx, work, work, trig_xf, work2, 0 ) 727 706 728 707 DO i = 0, (nx+1)/2 729 708 ar(i,j,k) = work(2*i) … … 797 776 798 777 DO i = 1, (nx+1)/2 - 1 799 ar_tmp(i,j,k) = CMPLX( ar(i,j,k), ar(nx+1-i,j,k), & 800 KIND=wp ) 801 ENDDO 802 ar_tmp((nx+1)/2,j,k) = CMPLX( ar((nx+1)/2,j,k), 0.0_wp, & 803 KIND=wp ) 778 ar_tmp(i,j,k) = CMPLX( ar(i,j,k), ar(nx+1-i,j,k), KIND=wp ) 779 ENDDO 780 ar_tmp((nx+1)/2,j,k) = CMPLX( ar((nx+1)/2,j,k), 0.0_wp, KIND=wp ) 804 781 805 782 ENDDO … … 818 795 END SUBROUTINE fft_x 819 796 820 !------------------------------------------------------------------------------ !797 !--------------------------------------------------------------------------------------------------! 821 798 ! Description: 822 799 ! ------------ 823 800 !> Fourier-transformation along x-direction. 824 801 !> Version for 1D-decomposition. 825 !> It uses internal algorithms (Singleton or Temperton) or 826 !> system-specific routines, if they are available827 !------------------------------------------------------------------------------ !828 802 !> It uses internal algorithms (Singleton or Temperton) or system-specific routines, if they are 803 !> available. 804 !--------------------------------------------------------------------------------------------------! 805 829 806 SUBROUTINE fft_x_1d( ar, direction ) 830 807 … … 833 810 834 811 CHARACTER (LEN=*) :: direction !< 835 812 836 813 INTEGER(iwp) :: i !< 837 814 INTEGER(iwp) :: ishape(1) !< … … 842 819 REAL(wp), DIMENSION(0:nx+2) :: work !< 843 820 REAL(wp), DIMENSION(nx+2) :: work1 !< 844 821 845 822 COMPLEX(wp), DIMENSION(:), ALLOCATABLE :: cwork !< 846 823 847 824 #if defined( __ibm ) 848 825 REAL(wp), DIMENSION(nau2) :: aux2 !< … … 861 838 862 839 ! 863 !-- Performing the fft with singleton's software works on every system, 864 !-- since it is part of the model840 !-- Performing the fft with singleton's software works on every system, since it is part of 841 !-- the model. 865 842 ALLOCATE( cwork(0:nx) ) 866 867 IF ( forward_fft ) then843 844 IF ( forward_fft ) THEN 868 845 869 846 DO i = 0, nx … … 902 879 903 880 ! 904 !-- Performing the fft with Temperton's software works on every system, 905 !-- since it is part of the model881 !-- Performing the fft with Temperton's software works on every system, since it is part of 882 !-- the model. 906 883 IF ( forward_fft ) THEN 907 884 … … 966 943 IF ( forward_fft ) THEN 967 944 968 CALL DRCFT( 0, ar, 1, work, 1, nx+1, 1, 1, sqr_dnx, aux1, nau1, & 969 aux2, nau2 ) 945 CALL DRCFT( 0, ar, 1, work, 1, nx+1, 1, 1, sqr_dnx, aux1, nau1, aux2, nau2 ) 970 946 971 947 DO i = 0, (nx+1)/2 … … 987 963 work(nx+2) = 0.0_wp 988 964 989 CALL DCRFT( 0, work, 1, work, 1, nx+1, 1, -1, sqr_dnx, aux3, nau1, & 990 aux4, nau2 ) 965 CALL DCRFT( 0, work, 1, work, 1, nx+1, 1, -1, sqr_dnx, aux3, nau1, aux4, nau2 ) 991 966 992 967 DO i = 0, nx … … 1001 976 1002 977 CALL DZFFT( 1, nx+1, sqr_dnx, work, work, trig_xf, work2, 0 ) 1003 978 1004 979 DO i = 0, (nx+1)/2 1005 980 ar(i) = work(2*i) … … 1031 1006 END SUBROUTINE fft_x_1d 1032 1007 1033 !------------------------------------------------------------------------------ !1008 !--------------------------------------------------------------------------------------------------! 1034 1009 ! Description: 1035 1010 ! ------------ 1036 1011 !> Fourier-transformation along y-direction. 1037 1012 !> Version for 2D-decomposition. 1038 !> It uses internal algorithms (Singleton or Temperton) or 1039 !> system-specific routines, if they areavailable.1040 !> 1013 !> It uses internal algorithms (Singleton or Temperton) or system-specific routines, if they are 1014 !> available. 1015 !> 1041 1016 !> direction: 'forward' or 'backward' 1042 !> ar, ar_tr: 3D data arrays 1017 !> ar, ar_tr: 3D data arrays 1043 1018 !> forward: ar: before ar_tr: after transformation 1044 1019 !> backward: ar_tr: before ar: after transfosition 1045 !> 1020 !> 1046 1021 !> In case of non-overlapping transposition/transformation: 1047 !> nxl_y_bound = nxl_y_l = nxl_y 1048 !> nxr_y_bound = nxr_y_l = nxr_y 1049 !> 1022 !> nxl_y_bound = nxl_y_l = nxl_y 1023 !> nxr_y_bound = nxr_y_l = nxr_y 1024 !> 1050 1025 !> In case of overlapping transposition/transformation 1051 !> - nxl_y_bound and nxr_y_bound have the original values of 1052 !> nxl_y, nxr_y. ar_tr is dimensioned using these values. 1053 !> - nxl_y_l = nxr_y_r. ar is dimensioned with these values, so that 1054 !> transformation is carried out for a 2D-plane only. 1055 !------------------------------------------------------------------------------! 1056 1057 SUBROUTINE fft_y( ar, direction, ar_tr, nxl_y_bound, nxr_y_bound, nxl_y_l, & 1058 nxr_y_l, ar_inv ) 1026 !> - nxl_y_bound and nxr_y_bound have the original values of nxl_y, nxr_y. ar_tr is dimensioned 1027 !> using these values. 1028 !> - nxl_y_l = nxr_y_r. ar is dimensioned with these values, so that transformation is carried out 1029 !> for a 2D-plane only. 1030 !--------------------------------------------------------------------------------------------------! 1031 1032 SUBROUTINE fft_y( ar, direction, ar_tr, nxl_y_bound, nxr_y_bound, nxl_y_l, nxr_y_l, ar_inv ) 1059 1033 1060 1034 … … 1062 1036 1063 1037 CHARACTER (LEN=*) :: direction !< 1064 1038 1065 1039 INTEGER(iwp) :: i !< 1066 INTEGER(iwp) :: j !< 1040 INTEGER(iwp) :: j !< 1067 1041 INTEGER(iwp) :: jshape(1) !< 1068 1042 INTEGER(iwp) :: k !< … … 1077 1051 REAL(wp), DIMENSION(0:ny+2) :: work !< 1078 1052 REAL(wp), DIMENSION(ny+2) :: work1 !< 1079 1053 1080 1054 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: f_vec_y 1081 1055 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: work_vec … … 1086 1060 1087 1061 COMPLEX(wp), DIMENSION(:), ALLOCATABLE :: cwork !< 1088 1062 1089 1063 #if defined( __ibm ) 1090 1064 REAL(wp), DIMENSION(nau2) :: auy2 !< … … 1093 1067 REAL(wp), DIMENSION(6*(ny+1)) :: work2 !< 1094 1068 #elif defined( __cuda_fft ) 1095 COMPLEX(dp), DIMENSION(0:(ny+1)/2,nxl_y:nxr_y,nzb_y:nzt_y) :: & 1096 ar_tmp !< 1069 COMPLEX(dp), DIMENSION(0:(ny+1)/2,nxl_y:nxr_y,nzb_y:nzt_y) :: ar_tmp !< 1097 1070 !$ACC DECLARE CREATE(ar_tmp) 1098 1071 #endif … … 1108 1081 1109 1082 ! 1110 !-- Performing the fft with singleton's software works on every system, 1111 !-- since it is part of the model1083 !-- Performing the fft with singleton's software works on every system, since it is part of 1084 !-- the model. 1112 1085 ALLOCATE( cwork(0:ny) ) 1113 1086 1114 IF ( forward_fft ) then1087 IF ( forward_fft ) THEN 1115 1088 1116 1089 !$OMP PARALLEL PRIVATE ( cwork, i, jshape, j, k ) … … 1146 1119 cwork(0) = CMPLX( ar_tr(0,i,k), 0.0_wp, KIND=wp ) 1147 1120 DO j = 1, (ny+1)/2 - 1 1148 cwork(j) = CMPLX( ar_tr(j,i,k), -ar_tr(ny+1-j,i,k), & 1149 KIND=wp ) 1150 cwork(ny+1-j) = CMPLX( ar_tr(j,i,k), ar_tr(ny+1-j,i,k), & 1151 KIND=wp ) 1152 ENDDO 1153 cwork((ny+1)/2) = CMPLX( ar_tr((ny+1)/2,i,k), 0.0_wp, & 1154 KIND=wp ) 1121 cwork(j) = CMPLX( ar_tr(j,i,k), -ar_tr(ny+1-j,i,k), KIND=wp ) 1122 cwork(ny+1-j) = CMPLX( ar_tr(j,i,k), ar_tr(ny+1-j,i,k), KIND=wp ) 1123 ENDDO 1124 cwork((ny+1)/2) = CMPLX( ar_tr((ny+1)/2,i,k), 0.0_wp, KIND=wp ) 1155 1125 1156 1126 jshape = SHAPE( cwork ) … … 1172 1142 1173 1143 ! 1174 !-- Performing the fft with Temperton's software works on every system, 1175 !-- since it is part of the model1144 !-- Performing the fft with Temperton's software works on every system, since it is part of 1145 !-- the model. 1176 1146 IF ( forward_fft ) THEN 1177 1147 … … 1361 1331 y_out(0) = CMPLX( ar_tr(0,i,k), 0.0_wp, KIND=wp ) 1362 1332 DO j = 1, (ny+1)/2 - 1 1363 y_out(j) = CMPLX( ar_tr(j,i,k), ar_tr(ny+1-j,i,k), & 1364 KIND=wp ) 1365 ENDDO 1366 y_out((ny+1)/2) = CMPLX( ar_tr((ny+1)/2,i,k), 0.0_wp, & 1367 KIND=wp ) 1333 y_out(j) = CMPLX( ar_tr(j,i,k), ar_tr(ny+1-j,i,k), KIND=wp ) 1334 ENDDO 1335 y_out((ny+1)/2) = CMPLX( ar_tr((ny+1)/2,i,k), 0.0_wp, KIND=wp ) 1368 1336 1369 1337 CALL FFTW_EXECUTE_DFT_C2R( plan_yi, y_out, y_in ) … … 1387 1355 DO i = nxl_y_l, nxr_y_l 1388 1356 1389 CALL DRCFT( 0, ar, 1, work, 1, ny+1, 1, 1, sqr_dny, auy1, & 1390 nau1, auy2, nau2 ) 1357 CALL DRCFT( 0, ar, 1, work, 1, ny+1, 1, 1, sqr_dny, auy1, nau1, auy2, nau2 ) 1391 1358 1392 1359 DO j = 0, (ny+1)/2 … … 1417 1384 work(ny+2) = 0.0_wp 1418 1385 1419 CALL DCRFT( 0, work, 1, work, 1, ny+1, 1, -1, sqr_dny, & 1420 auy3, nau1, auy4, nau2 ) 1386 CALL DCRFT( 0, work, 1, work, 1, ny+1, 1, -1, sqr_dny, auy3, nau1, auy4, nau2 ) 1421 1387 1422 1388 DO j = 0, ny … … 1491 1457 1492 1458 DO j = 0, (ny+1)/2 1493 ar(j,i,k) = REAL( ar_tmp(j,i,k), KIND=wp ) 1459 ar(j,i,k) = REAL( ar_tmp(j,i,k), KIND=wp ) * dny 1494 1460 ENDDO 1495 1461 … … 1511 1477 1512 1478 DO j = 1, (ny+1)/2 - 1 1513 ar_tmp(j,i,k) = CMPLX( ar(j,i,k), ar(ny+1-j,i,k), & 1514 KIND=wp ) 1515 ENDDO 1516 ar_tmp((ny+1)/2,i,k) = CMPLX( ar((ny+1)/2,i,k), 0.0_wp, & 1517 KIND=wp ) 1479 ar_tmp(j,i,k) = CMPLX( ar(j,i,k), ar(ny+1-j,i,k), KIND=wp ) 1480 ENDDO 1481 ar_tmp((ny+1)/2,i,k) = CMPLX( ar((ny+1)/2,i,k), 0.0_wp, KIND=wp ) 1518 1482 1519 1483 ENDDO … … 1532 1496 END SUBROUTINE fft_y 1533 1497 1534 !------------------------------------------------------------------------------ !1498 !--------------------------------------------------------------------------------------------------! 1535 1499 ! Description: 1536 1500 ! ------------ 1537 1501 !> Fourier-transformation along y-direction. 1538 1502 !> Version for 1D-decomposition. 1539 !> It uses internal algorithms (Singleton or Temperton) or 1540 !> system-specific routines, if they areavailable.1541 !------------------------------------------------------------------------------ !1542 1503 !> It uses internal algorithms (Singleton or Temperton) or system-specific routines, if they are 1504 !> available. 1505 !--------------------------------------------------------------------------------------------------! 1506 1543 1507 SUBROUTINE fft_y_1d( ar, direction ) 1544 1508 … … 1547 1511 1548 1512 CHARACTER (LEN=*) :: direction 1549 1513 1550 1514 INTEGER(iwp) :: j !< 1551 1515 INTEGER(iwp) :: jshape(1) !< … … 1556 1520 REAL(wp), DIMENSION(0:ny+2) :: work !< 1557 1521 REAL(wp), DIMENSION(ny+2) :: work1 !< 1558 1522 1559 1523 COMPLEX(wp), DIMENSION(:), ALLOCATABLE :: cwork !< 1560 1524 1561 1525 #if defined( __ibm ) 1562 1526 REAL(wp), DIMENSION(nau2) :: auy2 !< … … 1575 1539 1576 1540 ! 1577 !-- Performing the fft with singleton's software works on every system, 1578 !-- since it is part of the model1541 !-- Performing the fft with singleton's software works on every system, since it is part of 1542 !-- the model. 1579 1543 ALLOCATE( cwork(0:ny) ) 1580 1544 … … 1618 1582 1619 1583 ! 1620 !-- Performing the fft with Temperton's software works on every system, 1621 !-- since it is part of the model1584 !-- Performing the fft with Temperton's software works on every system, since it is part of 1585 !-- the model. 1622 1586 IF ( forward_fft ) THEN 1623 1587 … … 1682 1646 IF ( forward_fft ) THEN 1683 1647 1684 CALL DRCFT( 0, ar, 1, work, 1, ny+1, 1, 1, sqr_dny, auy1, nau1, & 1685 auy2, nau2 ) 1648 CALL DRCFT( 0, ar, 1, work, 1, ny+1, 1, 1, sqr_dny, auy1, nau1, auy2, nau2 ) 1686 1649 1687 1650 DO j = 0, (ny+1)/2 … … 1703 1666 work(ny+2) = 0.0_wp 1704 1667 1705 CALL DCRFT( 0, work, 1, work, 1, ny+1, 1, -1, sqr_dny, auy3, & 1706 nau1, auy4, nau2 ) 1668 CALL DCRFT( 0, work, 1, work, 1, ny+1, 1, -1, sqr_dny, auy3, nau1, auy4, nau2 ) 1707 1669 1708 1670 DO j = 0, ny … … 1747 1709 END SUBROUTINE fft_y_1d 1748 1710 1749 !------------------------------------------------------------------------------ !1711 !--------------------------------------------------------------------------------------------------! 1750 1712 ! Description: 1751 1713 ! ------------ 1752 1714 !> Fourier-transformation along x-direction. 1753 !> Version for 1d domain decomposition 1715 !> Version for 1d domain decomposition, 1754 1716 !> using multiple 1D FFT from Math Keisan on NEC or Temperton-algorithm 1755 !> (no singleton-algorithm on NEC because it does not vectorize) 1756 !------------------------------------------------------------------------------ !1757 1717 !> (no singleton-algorithm on NEC because it does not vectorize). 1718 !--------------------------------------------------------------------------------------------------! 1719 1758 1720 SUBROUTINE fft_x_m( ar, direction ) 1759 1721 … … 1762 1724 1763 1725 CHARACTER (LEN=*) :: direction !< 1764 1726 1765 1727 INTEGER(iwp) :: i !< 1766 1728 INTEGER(iwp) :: k !< … … 1773 1735 REAL(wp), DIMENSION(0:nx+3,nz+1) :: ai !< 1774 1736 REAL(wp), DIMENSION(6*(nx+4),nz+1) :: work1 !< 1775 1737 1776 1738 #if defined( __nec_fft ) 1777 1739 COMPLEX(wp), DIMENSION(:,:), ALLOCATABLE :: work … … 1827 1789 1828 1790 ! 1829 !-- Tables are initialized once more. This call should not be 1830 !-- necessary, but otherwise program aborts in asymmetric case 1831 CALL DZFFTM( 0, nx+1, nz1, sqr_dnx, work, nx+4, work, nx+4, & 1832 trig_xf, work1, 0 ) 1791 !-- Tables are initialized once more. This call should not be necessary, but otherwise 1792 !-- program aborts in asymmetric case. 1793 CALL DZFFTM( 0, nx+1, nz1, sqr_dnx, work, nx+4, work, nx+4, trig_xf, work1, 0 ) 1833 1794 1834 1795 ai(0:nx,1:nz) = ar(0:nx,1:nz) … … 1837 1798 ENDIF 1838 1799 1839 CALL DZFFTM( 1, nx+1, nz1, sqr_dnx, ai, siza, work, sizw, & 1840 trig_xf, work1, 0 ) 1800 CALL DZFFTM( 1, nx+1, nz1, sqr_dnx, ai, siza, work, sizw, trig_xf, work1, 0 ) 1841 1801 1842 1802 DO k = 1, nz … … 1854 1814 !-- Tables are initialized once more. This call should not be 1855 1815 !-- necessary, but otherwise program aborts in asymmetric case 1856 CALL ZDFFTM( 0, nx+1, nz1, sqr_dnx, work, nx+4, work, nx+4, & 1857 trig_xb, work1, 0 ) 1816 CALL ZDFFTM( 0, nx+1, nz1, sqr_dnx, work, nx+4, work, nx+4, trig_xb, work1, 0 ) 1858 1817 1859 1818 IF ( nz1 > nz ) THEN … … 1868 1827 ENDDO 1869 1828 1870 CALL ZDFFTM( -1, nx+1, nz1, sqr_dnx, work, sizw, ai, siza, & 1871 trig_xb, work1, 0 ) 1829 CALL ZDFFTM( -1, nx+1, nz1, sqr_dnx, work, sizw, ai, siza, trig_xb, work1, 0 ) 1872 1830 1873 1831 ar(0:nx,1:nz) = ai(0:nx,1:nz) … … 1882 1840 END SUBROUTINE fft_x_m 1883 1841 1884 !------------------------------------------------------------------------------ !1842 !--------------------------------------------------------------------------------------------------! 1885 1843 ! Description: 1886 1844 ! ------------ 1887 1845 !> Fourier-transformation along y-direction. 1888 !> Version for 1d domain decomposition 1846 !> Version for 1d domain decomposition, 1889 1847 !> using multiple 1D FFT from Math Keisan on NEC or Temperton-algorithm 1890 !> (no singleton-algorithm on NEC because it does not vectorize) 1891 !------------------------------------------------------------------------------ !1892 1848 !> (no singleton-algorithm on NEC because it does not vectorize). 1849 !--------------------------------------------------------------------------------------------------! 1850 1893 1851 SUBROUTINE fft_y_m( ar, ny1, direction ) 1894 1852 … … 1897 1855 1898 1856 CHARACTER (LEN=*) :: direction !< 1899 1900 INTEGER(iwp) :: j !< 1857 1858 INTEGER(iwp) :: j !< 1901 1859 INTEGER(iwp) :: k !< 1902 1860 INTEGER(iwp) :: ny1 !< … … 1964 1922 1965 1923 ! 1966 !-- Tables are initialized once more. This call should not be 1967 !-- necessary, but otherwise program aborts in asymmetric case 1968 CALL DZFFTM( 0, ny+1, nz1, sqr_dny, work, ny+4, work, ny+4, & 1969 trig_yf, work1, 0 ) 1924 !-- Tables are initialized once more. This call should not be necessary, but otherwise 1925 !-- program aborts in asymmetric case. 1926 CALL DZFFTM( 0, ny+1, nz1, sqr_dny, work, ny+4, work, ny+4, trig_yf, work1, 0 ) 1970 1927 1971 1928 ai(0:ny,1:nz) = ar(0:ny,1:nz) … … 1974 1931 ENDIF 1975 1932 1976 CALL DZFFTM( 1, ny+1, nz1, sqr_dny, ai, siza, work, sizw, & 1977 trig_yf, work1, 0 ) 1933 CALL DZFFTM( 1, ny+1, nz1, sqr_dny, ai, siza, work, sizw, trig_yf, work1, 0 ) 1978 1934 1979 1935 DO k = 1, nz … … 1989 1945 1990 1946 ! 1991 !-- Tables are initialized once more. This call should not be 1992 !-- necessary, but otherwise program aborts in asymmetric case 1993 CALL ZDFFTM( 0, ny+1, nz1, sqr_dny, work, ny+4, work, ny+4, & 1994 trig_yb, work1, 0 ) 1947 !-- Tables are initialized once more. This call should not be necessary, but otherwise 1948 !-- program aborts in asymmetric case. 1949 CALL ZDFFTM( 0, ny+1, nz1, sqr_dny, work, ny+4, work, ny+4, trig_yb, work1, 0 ) 1995 1950 1996 1951 IF ( nz1 > nz ) THEN … … 2005 1960 ENDDO 2006 1961 2007 CALL ZDFFTM( -1, ny+1, nz1, sqr_dny, work, sizw, ai, siza, & 2008 trig_yb, work1, 0 ) 1962 CALL ZDFFTM( -1, ny+1, nz1, sqr_dny, work, sizw, ai, siza, trig_yb, work1, 0 ) 2009 1963 2010 1964 ar(0:ny,1:nz) = ai(0:ny,1:nz) -
palm/trunk/SOURCE/flow_statistics.f90
r4581 r4646 1 1 !> @file flow_statistics.f90 2 !------------------------------------------------------------------------------ !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !17 !--------------------------------------------------------------------------------------------------! 19 18 ! 20 19 ! Current revisions: 21 20 ! ------------------ 22 ! 23 ! 21 ! 22 ! 24 23 ! Former revisions: 25 24 ! ----------------- 26 25 ! $Id$ 26 ! file re-formatted to follow the PALM coding standard 27 ! 28 ! 4581 2020-06-29 08:49:58Z suehring 27 29 ! Formatting adjustment 28 ! 30 ! 29 31 ! 4551 2020-06-02 10:22:25Z suehring 30 32 ! Bugfix in summation for statistical regions 31 ! 33 ! 32 34 ! 4521 2020-05-06 11:39:49Z schwenkel 33 35 ! Rename variable 34 ! 36 ! 35 37 ! 4502 2020-04-17 16:14:16Z schwenkel 36 38 ! Implementation of ice microphysics 37 ! 39 ! 38 40 ! 4472 2020-03-24 12:21:00Z Giersch 39 41 ! Calculations of the Kolmogorov lengt scale eta implemented … … 43 45 ! 44 46 ! 4463 2020-03-17 09:27:36Z Giersch 45 ! Calculate horizontally averaged profiles of all velocity components at the 46 ! same place 47 ! Calculate horizontally averaged profiles of all velocity components at the same place 47 48 ! 48 49 ! 4444 2020-03-05 15:59:50Z raasch … … 50 51 ! 51 52 ! 4442 2020-03-04 19:21:13Z suehring 52 ! Change order of dimension in surface array %frac to allow for better 53 ! vectorization. 53 ! Change order of dimension in surface array %frac to allow for better vectorization. 54 54 ! 55 55 ! 4441 2020-03-04 19:20:35Z suehring 56 ! Introduction of wall_flags_total_0, which currently sets bits based on static 57 ! topographyinformation used in wall_flags_static_056 ! Introduction of wall_flags_total_0, which currently sets bits based on static topography 57 ! information used in wall_flags_static_0 58 58 ! 59 59 ! 4329 2019-12-10 15:46:36Z motisi … … 67 67 ! 68 68 ! 4039 2019-06-18 10:32:41Z suehring 69 ! Correct conversion to kinematic scalar fluxes in case of pw-scheme and 70 ! statistic regions 69 ! Correct conversion to kinematic scalar fluxes in case of pw-scheme and statistic regions 71 70 ! 72 71 ! 3828 2019-03-27 19:36:23Z raasch … … 82 81 ! Description: 83 82 ! ------------ 84 !> Compute average profiles and further average flow quantities for the different 85 !> user-defined(sub-)regions. The region indexed 0 is the total model domain.83 !> Compute average profiles and further average flow quantities for the different user-defined 84 !> (sub-)regions. The region indexed 0 is the total model domain. 86 85 !> 87 !> @note For simplicity, nzb_s_inner and nzb_diff_s_inner are being used as a 88 !> lower vertical index for k-loops for all variables, although strictly 89 !> speaking the k-loops would have to be split up according to the staggered 90 !> grid. However, this implies no error since staggered velocity components 91 !> are zero at the walls and inside buildings. 92 !------------------------------------------------------------------------------! 86 !> @note For simplicity, nzb_s_inner and nzb_diff_s_inner are used as a lower vertical index for 87 !> k-loops for all variables, although strictly speaking the k-loops would have to be split 88 !> up according to the staggered grid. However, this implies no error since staggered velocity 89 !> components are zero at the walls and inside buildings. 90 !--------------------------------------------------------------------------------------------------! 93 91 SUBROUTINE flow_statistics 94 92 95 93 96 USE arrays_3d, & 97 ONLY: ddzu, ddzw, e, heatflux_output_conversion, hyp, km, kh, & 98 momentumflux_output_conversion, nc, ni, nr, p, prho, prr, pt, q,& 99 qc, qi, ql, qr, rho_air, rho_air_zw, rho_ocean, s, & 100 sa, u, ug, v, vg, vpt, w, w_subs, waterflux_output_conversion, & 101 zw, d_exner 102 103 USE basic_constants_and_equations_mod, & 94 USE arrays_3d, & 95 ONLY: ddzu, ddzw, d_exner, e, heatflux_output_conversion, hyp, km, kh, & 96 momentumflux_output_conversion, nc, ni, nr, p, prho, prr, pt, q, qc, qi, ql, qr, & 97 rho_air, rho_air_zw, rho_ocean, s, sa, u, ug, v, vg, vpt, w, w_subs, & 98 waterflux_output_conversion, zw 99 100 USE basic_constants_and_equations_mod, & 104 101 ONLY: g, lv_d_cp 105 102 106 USE bulk_cloud_model_mod, & 107 ONLY: bulk_cloud_model, microphysics_morrison, microphysics_seifert, & 108 microphysics_ice_phase 109 110 USE chem_modules, & 103 USE bulk_cloud_model_mod, & 104 ONLY: bulk_cloud_model, microphysics_morrison, microphysics_seifert, microphysics_ice_phase 105 106 USE chem_modules, & 111 107 ONLY: max_pr_cs 112 108 113 USE control_parameters, & 114 ONLY: air_chemistry, average_count_pr, cloud_droplets, do_sum, & 115 dt_3d, humidity, initializing_actions, kolmogorov_length_scale,& 116 land_surface, large_scale_forcing, large_scale_subsidence, & 117 max_pr_user, message_string, neutral, ocean_mode, & 118 passive_scalar, simulated_time, simulated_time_at_begin, & 119 use_subsidence_tendencies, use_surface_fluxes, use_top_fluxes, & 120 ws_scheme_mom, ws_scheme_sca, salsa, max_pr_salsa 121 122 USE cpulog, & 109 USE control_parameters, & 110 ONLY: air_chemistry, average_count_pr, cloud_droplets, do_sum, dt_3d, humidity, & 111 initializing_actions, kolmogorov_length_scale, land_surface, large_scale_forcing, & 112 large_scale_subsidence, max_pr_salsa, max_pr_user, message_string, neutral, & 113 ocean_mode, passive_scalar, salsa, simulated_time, simulated_time_at_begin, & 114 use_subsidence_tendencies, use_surface_fluxes, use_top_fluxes, ws_scheme_mom, & 115 ws_scheme_sca 116 117 USE cpulog, & 123 118 ONLY: cpu_log, log_point 124 119 125 USE grid_variables, &120 USE grid_variables, & 126 121 ONLY: ddx, ddy 127 122 128 USE indices, &129 ONLY: ngp_2dh, ngp_2dh_s_inner, ngp_3d, ngp_3d_inner, nxl, nxr, nyn, &130 nys, nzb, nzt,topo_min_level, wall_flags_total_0123 USE indices, & 124 ONLY: ngp_2dh, ngp_2dh_s_inner, ngp_3d, ngp_3d_inner, nxl, nxr, nyn, nys, nzb, nzt, & 125 topo_min_level, wall_flags_total_0 131 126 132 127 #if defined( __parallel ) 133 USE indices, &128 USE indices, & 134 129 ONLY: ngp_sums, ngp_sums_ls 135 130 #endif … … 137 132 USE kinds 138 133 139 USE land_surface_model_mod, &134 USE land_surface_model_mod, & 140 135 ONLY: m_soil_h, nzb_soil, nzt_soil, t_soil_h 141 136 142 USE lsf_nudging_mod, &137 USE lsf_nudging_mod, & 143 138 ONLY: td_lsa_lpt, td_lsa_q, td_sub_lpt, td_sub_q, time_vert 144 139 145 USE module_interface, &140 USE module_interface, & 146 141 ONLY: module_interface_statistics 147 142 148 USE netcdf_interface, &143 USE netcdf_interface, & 149 144 ONLY: dots_rad, dots_soil, dots_max 150 145 151 146 USE pegrid 152 147 153 USE radiation_model_mod, &154 ONLY: radiation, radiation_scheme, &155 rad_lw_in, rad_lw_out, rad_lw_cs_hr, rad_lw_hr, &148 USE radiation_model_mod, & 149 ONLY: radiation, radiation_scheme, & 150 rad_lw_in, rad_lw_out, rad_lw_cs_hr, rad_lw_hr, & 156 151 rad_sw_in, rad_sw_out, rad_sw_cs_hr, rad_sw_hr 157 152 158 153 USE statistics 159 154 160 USE surface_mod, &155 USE surface_mod, & 161 156 ONLY : surf_def_h, surf_lsm_h, surf_usm_h 162 157 … … 215 210 REAL(wp) :: sums_ll(nzb:nzt+1,2) !< 216 211 212 217 213 CALL cpu_log( log_point(10), 'flow_statistics', 'start' ) 218 214 219 215 220 216 ! 221 !-- To be on the safe side, check whether flow_statistics has already been 222 !-- c alled once after the current time step217 !-- To be on the safe side, check whether flow_statistics has already been called once after the 218 !-- current time step. 223 219 IF ( flow_statistics_called ) THEN 224 220 225 message_string = 'flow_statistics is called two times within one ' // & 226 'timestep' 221 message_string = 'flow_statistics is called two times within one ' // 'timestep' 227 222 CALL message( 'flow_statistics', 'PA0190', 1, 2, 0, 6, 0 ) 228 223 … … 243 238 244 239 ! 245 !-- Store sums that have been computed in other subroutines in summation 246 !-- array 240 !-- Store sums that have been computed in other subroutines in summation array 247 241 sums_l(:,11,:) = sums_l_l(:,sr,:) ! mixing length from diffusivities 248 242 !-- WARNING: next line still has to be adjusted for OpenMP 249 sums_l(:,21,0) = sums_wsts_bc_l(:,sr) * &243 sums_l(:,21,0) = sums_wsts_bc_l(:,sr) * & 250 244 heatflux_output_conversion ! heat flux from advec_s_bc 251 245 sums_l(nzb+9,pr_palm,0) = sums_divold_l(sr) ! old divergence from pres … … 253 247 254 248 ! 255 !-- When calcuating horizontally-averaged total (resolved- plus subgrid- 256 !-- scale) vertical fluxes and velocity variances by using commonly- 257 !-- applied Reynolds-based methods ( e.g. <w'pt'> = (w-<w>)*(pt-<pt>) ) 258 !-- in combination with the 5th order advection scheme, pronounced 259 !-- artificial kinks could be observed in the vertical profiles near the 260 !-- surface. Please note: these kinks were not related to the model truth, 261 !-- i.e. these kinks are just related to an evaluation problem. 262 !-- In order avoid these kinks, vertical fluxes and horizontal as well 263 !-- vertical velocity variances are calculated directly within the advection 264 !-- routines, according to the numerical discretization, to evaluate the 265 !-- statistical quantities as they will appear within the prognostic 266 !-- equations. 267 !-- Copy the turbulent quantities, evaluated in the advection routines to 268 !-- the local array sums_l() for further computations. 249 !-- When calcuating horizontally-averaged total (resolved- plus subgrid-scale) vertical fluxes 250 !-- and velocity variances by using commonly-applied Reynolds-based methods 251 !-- ( e.g. <w'pt'> = (w-<w>)*(pt-<pt>) ) in combination with the 5th order advection scheme, 252 !-- pronounced artificial kinks could be observed in the vertical profiles near the surface. 253 !-- Please note: these kinks were not related to the model truth, i.e. these kinks are just 254 !-- related to an evaluation problem. 255 !-- In order avoid these kinks, vertical fluxes and horizontal as well vertical velocity 256 !-- variances are calculated directly within the advection routines, according to the numerical 257 !-- discretization, to evaluate the statistical quantities as they will appear within the 258 !-- prognostic equations. 259 !-- Copy the turbulent quantities, evaluated in the advection routines to the local array 260 !-- sums_l() for further computations. 269 261 IF ( ws_scheme_mom .AND. sr == 0 ) THEN 270 262 271 263 ! 272 !-- According to the Neumann bc for the horizontal velocity components, 273 !-- the correspondingfluxes has to satisfiy the same bc.264 !-- According to the Neumann bc for the horizontal velocity components, the corresponding 265 !-- fluxes has to satisfiy the same bc. 274 266 IF ( ocean_mode ) THEN 275 267 sums_us2_ws_l(nzt+1,:) = sums_us2_ws_l(nzt,:) … … 280 272 ! 281 273 !-- Swap the turbulent quantities evaluated in advec_ws. 282 sums_l(:,13,i) = sums_wsus_ws_l(:,i) & 283 * momentumflux_output_conversion ! w*u* 284 sums_l(:,15,i) = sums_wsvs_ws_l(:,i) & 285 * momentumflux_output_conversion ! w*v* 286 sums_l(:,30,i) = sums_us2_ws_l(:,i) ! u*2 287 sums_l(:,31,i) = sums_vs2_ws_l(:,i) ! v*2 288 sums_l(:,32,i) = sums_ws2_ws_l(:,i) ! w*2 289 sums_l(:,34,i) = sums_l(:,34,i) + 0.5_wp * & 290 ( sums_us2_ws_l(:,i) + sums_vs2_ws_l(:,i) + & 291 sums_ws2_ws_l(:,i) ) ! e* 274 sums_l(:,13,i) = sums_wsus_ws_l(:,i) * momentumflux_output_conversion ! w*u* 275 sums_l(:,15,i) = sums_wsvs_ws_l(:,i) * momentumflux_output_conversion ! w*v* 276 sums_l(:,30,i) = sums_us2_ws_l(:,i) ! u*2 277 sums_l(:,31,i) = sums_vs2_ws_l(:,i) ! v*2 278 sums_l(:,32,i) = sums_ws2_ws_l(:,i) ! w*2 279 sums_l(:,34,i) = sums_l(:,34,i) + 0.5_wp * & 280 ( sums_us2_ws_l(:,i) + sums_vs2_ws_l(:,i) + sums_ws2_ws_l(:,i) ) ! e* 292 281 ENDDO 293 282 … … 297 286 298 287 DO i = 0, threads_per_task-1 299 sums_l(:,17,i) = sums_wspts_ws_l(:,i) &300 * heatflux_output_conversion! w*pt*301 IF ( ocean_mode ) sums_l(:,66,i) = sums_wssas_ws_l(:,i) ! w*sa*302 IF ( humidity ) sums_l(:,49,i) = sums_wsqs_ws_l(:,i) &303 * waterflux_output_conversion ! w*q*304 IF ( passive_scalar ) sums_l(:,114,i) = sums_wsss_ws_l(:,i) ! w*s*288 sums_l(:,17,i) = sums_wspts_ws_l(:,i) & 289 * heatflux_output_conversion ! w*pt* 290 IF ( ocean_mode ) sums_l(:,66,i) = sums_wssas_ws_l(:,i) ! w*sa* 291 IF ( humidity ) sums_l(:,49,i) = sums_wsqs_ws_l(:,i) & 292 * waterflux_output_conversion ! w*q* 293 IF ( passive_scalar ) sums_l(:,114,i) = sums_wsss_ws_l(:,i) ! w*s* 305 294 ENDDO 306 295 … … 308 297 ! 309 298 !-- Horizontally averaged profiles of horizontal velocities and temperature. 310 !-- They must have been computed before, because they are already required 311 !-- for other horizontalaverages.299 !-- They must have been computed before, because they are already required for other horizontal 300 !-- averages. 312 301 tn = 0 313 302 !$OMP PARALLEL PRIVATE( i, j, k, tn, flag ) … … 321 310 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 22 ) ) 322 311 !$ACC ATOMIC 323 sums_l(k,1,tn) = sums_l(k,1,tn) + u(k,j,i) * rmask(j,i,sr) & 324 * flag 325 !$ACC ATOMIC 326 sums_l(k,2,tn) = sums_l(k,2,tn) + v(k,j,i) * rmask(j,i,sr) & 327 * flag 328 !$ACC ATOMIC 329 sums_l(k,4,tn) = sums_l(k,4,tn) + pt(k,j,i) * rmask(j,i,sr) & 330 * flag 312 sums_l(k,1,tn) = sums_l(k,1,tn) + u(k,j,i) * rmask(j,i,sr) * flag 313 !$ACC ATOMIC 314 sums_l(k,2,tn) = sums_l(k,2,tn) + v(k,j,i) * rmask(j,i,sr) * flag 315 !$ACC ATOMIC 316 sums_l(k,4,tn) = sums_l(k,4,tn) + pt(k,j,i) * rmask(j,i,sr) * flag 331 317 ENDDO 332 318 ENDDO … … 341 327 DO j = nys, nyn 342 328 DO k = nzb, nzt+1 343 sums_l(k,23,tn) = sums_l(k,23,tn) + sa(k,j,i) &344 * rmask(j,i,sr)&345 * MERGE( 1.0_wp, 0.0_wp,&346 BTEST( wall_flags_total_0(k,j,i), 22 ) )329 sums_l(k,23,tn) = sums_l(k,23,tn) + sa(k,j,i) & 330 * rmask(j,i,sr) & 331 * MERGE( 1.0_wp, 0.0_wp, & 332 BTEST( wall_flags_total_0(k,j,i), 22 ) ) 347 333 ENDDO 348 334 ENDDO … … 351 337 352 338 ! 353 !-- Horizontally averaged profiles of virtual potential temperature, 354 !-- total water content, water vapor mixing ratio and liquid water potential 355 !-- temperature 339 !-- Horizontally averaged profiles of virtual potential temperature, total water content, water 340 !-- vapor mixing ratio and liquid water potential temperature 356 341 IF ( humidity ) THEN 357 342 !$OMP DO … … 360 345 DO k = nzb, nzt+1 361 346 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 22 ) ) 362 sums_l(k,44,tn) = sums_l(k,44,tn) + & 363 vpt(k,j,i) * rmask(j,i,sr) * flag 364 sums_l(k,41,tn) = sums_l(k,41,tn) + & 365 q(k,j,i) * rmask(j,i,sr) * flag 347 sums_l(k,44,tn) = sums_l(k,44,tn) + vpt(k,j,i) * rmask(j,i,sr) * flag 348 sums_l(k,41,tn) = sums_l(k,41,tn) + q(k,j,i) * rmask(j,i,sr) * flag 366 349 ENDDO 367 350 ENDDO … … 374 357 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 22 ) ) 375 358 sums_l(k,42,tn) = sums_l(k,42,tn) + & 376 ( q(k,j,i) - ql(k,j,i) ) * rmask(j,i,sr) & 377 * flag 378 sums_l(k,43,tn) = sums_l(k,43,tn) + ( & 379 pt(k,j,i) + lv_d_cp * d_exner(k) * ql(k,j,i) & 380 ) * rmask(j,i,sr) & 381 * flag 359 ( q(k,j,i) - ql(k,j,i) ) * rmask(j,i,sr) * flag 360 sums_l(k,43,tn) = sums_l(k,43,tn) + ( & 361 pt(k,j,i) + lv_d_cp * d_exner(k) * ql(k,j,i) & 362 ) * rmask(j,i,sr) * flag 382 363 ENDDO 383 364 ENDDO … … 393 374 DO j = nys, nyn 394 375 DO k = nzb, nzt+1 395 sums_l(k,115,tn) = sums_l(k,115,tn) + s(k,j,i) &396 * rmask(j,i,sr)&397 * MERGE( 1.0_wp, 0.0_wp,&398 BTEST( wall_flags_total_0(k,j,i), 22 ) )376 sums_l(k,115,tn) = sums_l(k,115,tn) + s(k,j,i) & 377 * rmask(j,i,sr) & 378 * MERGE( 1.0_wp, 0.0_wp, & 379 BTEST( wall_flags_total_0(k,j,i), 22 ) ) 399 380 ENDDO 400 381 ENDDO … … 430 411 !-- Compute total sum from local sums 431 412 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 432 CALL MPI_ALLREDUCE( sums_l(nzb,1,0), sums(nzb,1), nzt+2-nzb, MPI_REAL, &433 MPI_SUM, comm2d,ierr )413 CALL MPI_ALLREDUCE( sums_l(nzb,1,0), sums(nzb,1), nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d, & 414 ierr ) 434 415 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 435 CALL MPI_ALLREDUCE( sums_l(nzb,2,0), sums(nzb,2), nzt+2-nzb, MPI_REAL, &436 MPI_SUM, comm2d,ierr )416 CALL MPI_ALLREDUCE( sums_l(nzb,2,0), sums(nzb,2), nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d, & 417 ierr ) 437 418 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 438 CALL MPI_ALLREDUCE( sums_l(nzb,4,0), sums(nzb,4), nzt+2-nzb, MPI_REAL, &439 MPI_SUM, comm2d,ierr )419 CALL MPI_ALLREDUCE( sums_l(nzb,4,0), sums(nzb,4), nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d, & 420 ierr ) 440 421 IF ( ocean_mode ) THEN 441 422 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 442 CALL MPI_ALLREDUCE( sums_l(nzb,23,0), sums(nzb,23), nzt+2-nzb, 443 MPI_REAL, MPI_SUM, comm2d,ierr )423 CALL MPI_ALLREDUCE( sums_l(nzb,23,0), sums(nzb,23), nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d,& 424 ierr ) 444 425 ENDIF 445 426 IF ( humidity ) THEN 446 427 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 447 CALL MPI_ALLREDUCE( sums_l(nzb,44,0), sums(nzb,44), nzt+2-nzb, 448 MPI_REAL, MPI_SUM, comm2d,ierr )428 CALL MPI_ALLREDUCE( sums_l(nzb,44,0), sums(nzb,44), nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d,& 429 ierr ) 449 430 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 450 CALL MPI_ALLREDUCE( sums_l(nzb,41,0), sums(nzb,41), nzt+2-nzb, 451 MPI_REAL, MPI_SUM, comm2d,ierr )431 CALL MPI_ALLREDUCE( sums_l(nzb,41,0), sums(nzb,41), nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d,& 432 ierr ) 452 433 IF ( bulk_cloud_model ) THEN 453 434 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 454 CALL MPI_ALLREDUCE( sums_l(nzb,42,0), sums(nzb,42), nzt+2-nzb, &455 MPI_REAL, MPI_SUM,comm2d, ierr )435 CALL MPI_ALLREDUCE( sums_l(nzb,42,0), sums(nzb,42), nzt+2-nzb, MPI_REAL, MPI_SUM, & 436 comm2d, ierr ) 456 437 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 457 CALL MPI_ALLREDUCE( sums_l(nzb,43,0), sums(nzb,43), nzt+2-nzb, &458 MPI_REAL, MPI_SUM,comm2d, ierr )438 CALL MPI_ALLREDUCE( sums_l(nzb,43,0), sums(nzb,43), nzt+2-nzb, MPI_REAL, MPI_SUM, & 439 comm2d, ierr ) 459 440 ENDIF 460 441 ENDIF … … 462 443 IF ( passive_scalar ) THEN 463 444 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 464 CALL MPI_ALLREDUCE( sums_l(nzb,115,0), sums(nzb,115), nzt+2-nzb, &465 MPI_REAL, MPI_SUM,comm2d, ierr )445 CALL MPI_ALLREDUCE( sums_l(nzb,115,0), sums(nzb,115), nzt+2-nzb, MPI_REAL, MPI_SUM, & 446 comm2d, ierr ) 466 447 ENDIF 467 448 #else … … 482 463 483 464 ! 484 !-- Final values are obtained by division by the total number of grid points 485 !-- used for summation.After that store profiles.465 !-- Final values are obtained by division by the total number of grid points used for summation. 466 !-- After that store profiles. 486 467 sums(:,1) = sums(:,1) / ngp_2dh(sr) 487 468 sums(:,2) = sums(:,2) / ngp_2dh(sr) … … 517 498 ! 518 499 !-- Passive scalar 519 IF ( passive_scalar ) hom(:,1,115,sr) = sums(:,115) / & 520 ngp_2dh_s_inner(:,sr) ! s 521 522 ! 523 !-- Horizontally averaged profiles of the remaining prognostic variables, 524 !-- variances, the total and the perturbation energy (single values in last 525 !-- column of sums_l) and some diagnostic quantities. 526 !-- NOTE: for simplicity, nzb_s_inner is used below, although strictly 527 !-- ---- speaking the following k-loop would have to be split up and 528 !-- rearranged according to the staggered grid. 529 !-- However, this implies no error since staggered velocity components 530 !-- are zero at the walls and inside buildings. 500 IF ( passive_scalar ) hom(:,1,115,sr) = sums(:,115) / ngp_2dh_s_inner(:,sr) ! s 501 502 ! 503 !-- Horizontally averaged profiles of the remaining prognostic variables, variances, the total 504 !-- and the perturbation energy (single values in last column of sums_l) and some diagnostic 505 !-- quantities. 506 !-- NOTE: for simplicity, nzb_s_inner is used below, although strictly speaking the following 507 !-- ---- k-loop would have to be split up and rearranged according to the staggered grid. 508 !-- However, this implies no error since staggered velocity components are zero at the 509 !-- walls and inside buildings. 531 510 tn = 0 532 511 !$OMP PARALLEL PRIVATE( i, j, k, pts, sums_ll, & … … 554 533 !-- Prognostic and diagnostic variables 555 534 !$ACC ATOMIC 556 sums_l(k,3,tn) = sums_l(k,3,tn) + w(k,j,i) * rmask(j,i,sr) & 557 * flag 558 !$ACC ATOMIC 559 sums_l(k,8,tn) = sums_l(k,8,tn) + e(k,j,i) * rmask(j,i,sr) & 560 * flag 561 !$ACC ATOMIC 562 sums_l(k,9,tn) = sums_l(k,9,tn) + km(k,j,i) * rmask(j,i,sr) & 563 * flag 564 !$ACC ATOMIC 565 sums_l(k,10,tn) = sums_l(k,10,tn) + kh(k,j,i) * rmask(j,i,sr) & 566 * flag 567 !$ACC ATOMIC 568 sums_l(k,40,tn) = sums_l(k,40,tn) + ( p(k,j,i) & 569 / momentumflux_output_conversion(k) ) & 570 * flag 535 sums_l(k,3,tn) = sums_l(k,3,tn) + w(k,j,i) * rmask(j,i,sr) * flag 536 !$ACC ATOMIC 537 sums_l(k,8,tn) = sums_l(k,8,tn) + e(k,j,i) * rmask(j,i,sr) * flag 538 !$ACC ATOMIC 539 sums_l(k,9,tn) = sums_l(k,9,tn) + km(k,j,i) * rmask(j,i,sr) * flag 540 !$ACC ATOMIC 541 sums_l(k,10,tn) = sums_l(k,10,tn) + kh(k,j,i) * rmask(j,i,sr) * flag 542 !$ACC ATOMIC 543 sums_l(k,40,tn) = sums_l(k,40,tn) + ( p(k,j,i) & 544 / momentumflux_output_conversion(k) ) * flag 571 545 572 546 !$ACC ATOMIC 573 547 sums_l(k,33,tn) = sums_l(k,33,tn) + & 574 ( pt(k,j,i)-hom(k,1,4,sr) )**2 * rmask(j,i,sr)& 575 * flag 548 ( pt(k,j,i)-hom(k,1,4,sr) )**2 * rmask(j,i,sr) * flag 576 549 #ifndef _OPENACC 577 550 IF ( humidity ) THEN 578 sums_l(k,70,tn) = sums_l(k,70,tn) + & 579 ( q(k,j,i)-hom(k,1,41,sr) )**2 * rmask(j,i,sr)& 580 * flag 551 sums_l(k,70,tn) = sums_l(k,70,tn) + & 552 ( q(k,j,i)-hom(k,1,41,sr) )**2 * rmask(j,i,sr) * flag 581 553 ENDIF 582 554 IF ( passive_scalar ) THEN 583 sums_l(k,116,tn) = sums_l(k,116,tn) + & 584 ( s(k,j,i)-hom(k,1,115,sr) )**2 * rmask(j,i,sr)& 585 * flag 555 sums_l(k,116,tn) = sums_l(k,116,tn) + & 556 ( s(k,j,i)-hom(k,1,115,sr) )**2 * rmask(j,i,sr) * flag 586 557 ENDIF 587 558 #endif … … 590 561 !-- (Computation of the skewness of w further below) 591 562 !$ACC ATOMIC 592 sums_l(k,38,tn) = sums_l(k,38,tn) + w(k,j,i)**3 * rmask(j,i,sr) & 593 * flag 594 595 sums_l_etot = sums_l_etot + & 596 0.5_wp * ( u(k,j,i)**2 + v(k,j,i)**2 + & 597 w(k,j,i)**2 ) * rmask(j,i,sr)& 598 * flag 599 600 ! 601 !-- Computation of the Kolmogorov length scale. Calculation is based 602 !-- on gradients of the deviations from the horizontal mean. 563 sums_l(k,38,tn) = sums_l(k,38,tn) + w(k,j,i)**3 * rmask(j,i,sr) * flag 564 565 sums_l_etot = sums_l_etot + 0.5_wp * ( u(k,j,i)**2 + v(k,j,i)**2 + w(k,j,i)**2 ) & 566 * rmask(j,i,sr) * flag 567 568 ! 569 !-- Computation of the Kolmogorov length scale. Calculation is based on gradients of the 570 !-- deviations from the horizontal mean. 603 571 !-- Kolmogorov scale at the boundaries (k=0/z=0m and k=nzt+1) is set to zero. 604 572 IF ( kolmogorov_length_scale .AND. k /= nzb .AND. k /= nzt+1) THEN … … 607 575 ! 608 576 !-- Calculate components of the fluctuating rate-of-strain tensor 609 !-- (0.5*(del u'_i/del x_j + del u'_j/del x_i)) defined in the 610 !-- center of each gridbox.611 du_dx = ( ( u(k,j,i+1) - hom(k,1,1,sr) ) - &577 !-- (0.5*(del u'_i/del x_j + del u'_j/del x_i)) defined in the center of each grid 578 !-- box. 579 du_dx = ( ( u(k,j,i+1) - hom(k,1,1,sr) ) - & 612 580 ( u(k,j,i) - hom(k,1,1,sr) ) ) * ddx 613 du_dy = 0.25_wp * ddy * &614 ( ( u(k,j+1,i) - hom(k,1,1,sr) ) - &615 ( u(k,j-1,i) - hom(k,1,1,sr) ) + &616 ( u(k,j+1,i+1) - hom(k,1,1,sr) ) - &581 du_dy = 0.25_wp * ddy * & 582 ( ( u(k,j+1,i) - hom(k,1,1,sr) ) - & 583 ( u(k,j-1,i) - hom(k,1,1,sr) ) + & 584 ( u(k,j+1,i+1) - hom(k,1,1,sr) ) - & 617 585 ( u(k,j-1,i+1) - hom(k,1,1,sr) ) ) 618 du_dz = 0.25_wp * ( ( ( u(k+1,j,i) - hom(k+1,1,1,sr) ) - &619 ( u(k,j,i) - hom(k,1,1,sr) ) ) * &620 ddzu(k+1) +&621 ( ( u(k,j,i) - hom(k,1,1,sr) ) - &622 ( u(k-1,j,i) - hom(k-1,1,1,sr) ) ) *&623 ddzu(k) +&624 ( ( u(k+1,j,i+1) - hom(k+1,1,1,sr) ) -&625 ( u(k,j,i+1) - hom(k,1,1,sr) ) ) * &626 ddzu(k+1) +&627 ( ( u(k,j,i+1) - hom(k,1,1,sr) ) - &628 ( u(k-1,j,i+1) - hom(k-1,1,1,sr) ) ) * &629 630 631 dv_dx = 0.25_wp * ddx * &632 ( ( v(k,j,i+1) - hom(k,1,2,sr) ) - &633 ( v(k,j,i-1) - hom(k,1,2,sr) ) + &634 ( v(k,j+1,i+1) - hom(k,1,2,sr) ) - &586 du_dz = 0.25_wp * ( ( ( u(k+1,j,i) - hom(k+1,1,1,sr) ) - & 587 ( u(k,j,i) - hom(k,1,1,sr) ) ) * & 588 ddzu(k+1) + & 589 ( ( u(k,j,i) - hom(k,1,1,sr) ) - & 590 ( u(k-1,j,i) - hom(k-1,1,1,sr) ) ) * & 591 ddzu(k) + & 592 ( ( u(k+1,j,i+1) - hom(k+1,1,1,sr) ) - & 593 ( u(k,j,i+1) - hom(k,1,1,sr) ) ) * & 594 ddzu(k+1) + & 595 ( ( u(k,j,i+1) - hom(k,1,1,sr) ) - & 596 ( u(k-1,j,i+1) - hom(k-1,1,1,sr) ) ) * & 597 ddzu(k) ) 598 599 dv_dx = 0.25_wp * ddx * & 600 ( ( v(k,j,i+1) - hom(k,1,2,sr) ) - & 601 ( v(k,j,i-1) - hom(k,1,2,sr) ) + & 602 ( v(k,j+1,i+1) - hom(k,1,2,sr) ) - & 635 603 ( v(k,j+1,i-1) - hom(k,1,2,sr) ) ) 636 dv_dy = ( ( v(k,j+1,i) - hom(k,1,2,sr) ) - & 637 ( v(k,j,i) - hom(k,1,2,sr) ) ) * ddy 638 dv_dz = 0.25_wp * ( ( ( v(k+1,j,i) - hom(k+1,1,2,sr) ) - & 639 ( v(k,j,i) - hom(k,1,2,sr) ) ) * & 640 ddzu(k+1) + & 641 ( ( v(k,j,i) - hom(k,1,2,sr) ) - & 642 ( v(k-1,j,i) - hom(k-1,1,2,sr) ) ) * & 643 ddzu(k) + & 644 ( ( v(k+1,j+1,i) - hom(k+1,1,2,sr) ) - & 645 ( v(k,j+1,i) - hom(k,1,2,sr) ) ) * & 646 ddzu(k+1) + & 647 ( ( v(k,j+1,i) - hom(k,1,2,sr) ) - & 648 ( v(k-1,j+1,i) - hom(k-1,1,2,sr) ) ) *& 649 ddzu(k) ) 650 651 dw_dx = 0.25_wp * ddx * ( w(k,j,i+1) - w(k,j,i-1) + & 652 w(k-1,j,i+1) - w(k-1,j,i-1) ) 653 dw_dy = 0.25_wp * ddy * ( w(k,j+1,i) - w(k,j-1,i) + & 654 w(k-1,j+1,i) - w(k-1,j-1,i) ) 604 dv_dy = ( ( v(k,j+1,i) - hom(k,1,2,sr) ) - ( v(k,j,i) - hom(k,1,2,sr) ) ) * ddy 605 dv_dz = 0.25_wp * ( ( ( v(k+1,j,i) - hom(k+1,1,2,sr) ) - & 606 ( v(k,j,i) - hom(k,1,2,sr) ) ) * & 607 ddzu(k+1) + & 608 ( ( v(k,j,i) - hom(k,1,2,sr) ) - & 609 ( v(k-1,j,i) - hom(k-1,1,2,sr) ) ) * & 610 ddzu(k) + & 611 ( ( v(k+1,j+1,i) - hom(k+1,1,2,sr) ) - & 612 ( v(k,j+1,i) - hom(k,1,2,sr) ) ) * & 613 ddzu(k+1) + & 614 ( ( v(k,j+1,i) - hom(k,1,2,sr) ) - & 615 ( v(k-1,j+1,i) - hom(k-1,1,2,sr) ) ) * & 616 ddzu(k) ) 617 618 dw_dx = 0.25_wp * ddx * ( w(k,j,i+1) - w(k,j,i-1) + w(k-1,j,i+1) - w(k-1,j,i-1) ) 619 dw_dy = 0.25_wp * ddy * ( w(k,j+1,i) - w(k,j-1,i) + w(k-1,j+1,i) - w(k-1,j-1,i) ) 655 620 dw_dz = ( w(k,j,i) - w(k-1,j,i) ) * ddzw(k) 656 621 … … 667 632 s33 = 0.5_wp * ( dw_dz + dw_dz ) 668 633 669 !-- Calculate 3D instantaneous energy dissipation rate after 670 !-- Pope (2000): Turbulent flows, p.259. It is defined in the center 671 !-- of each grid volume. 672 dissipation = 2.0_wp * km(k,j,i) * & 673 ( s11*s11 + s21*s21 + s31*s31 + & 674 s12*s12 + s22*s22 + s32*s32 + & 675 s13*s13 + s23*s23 + s33*s33 ) 634 !-- Calculate 3D instantaneous energy dissipation rate following Pope (2000): 635 !-- Turbulent flows, p.259. It is defined in the center of each grid volume. 636 dissipation = 2.0_wp * km(k,j,i) * & 637 ( s11*s11 + s21*s21 + s31*s31 + & 638 s12*s12 + s22*s22 + s32*s32 + & 639 s13*s13 + s23*s23 + s33*s33 ) 676 640 eta = ( km(k,j,i)**3.0_wp / ( dissipation+1.0E-12 ) )**(1.0_wp/4.0_wp) 677 641 678 642 !$ACC ATOMIC 679 sums_l(k,121,tn) = sums_l(k,121,tn) + eta * rmask(j,i,sr) & 680 * flag 643 sums_l(k,121,tn) = sums_l(k,121,tn) + eta * rmask(j,i,sr) * flag 681 644 682 645 … … 685 648 ENDDO !k-loop 686 649 ! 687 !-- Total and perturbation energy for the total domain (being 688 !-- collected in the last column of sums_l). Summation of these 689 !-- quantities is seperated from the previous loop in order to 690 !-- allow vectorization of that loop. 650 !-- Total and perturbation energy for the total domain (being collected in the last column 651 !-- of sums_l). Summation of these quantities is seperated from the previous loop in order 652 !-- to allow vectorization of that loop. 691 653 !$ACC ATOMIC 692 654 sums_l(nzb+4,pr_palm,tn) = sums_l(nzb+4,pr_palm,tn) + sums_l_etot 693 655 ! 694 656 !-- 2D-arrays (being collected in the last column of sums_l) 695 IF ( surf_def_h(0)%end_index(j,i) >= & 696 surf_def_h(0)%start_index(j,i) ) THEN 657 IF ( surf_def_h(0)%end_index(j,i) >= surf_def_h(0)%start_index(j,i) ) THEN 697 658 m = surf_def_h(0)%start_index(j,i) 698 659 !$ACC ATOMIC 699 sums_l(nzb,pr_palm,tn) = sums_l(nzb,pr_palm,tn) + &700 surf_def_h(0)%us(m) * rmask(j,i,sr)701 !$ACC ATOMIC 702 sums_l(nzb+1,pr_palm,tn) = sums_l(nzb+1,pr_palm,tn) + &703 surf_def_h(0)%usws(m) * rmask(j,i,sr)704 !$ACC ATOMIC 705 sums_l(nzb+2,pr_palm,tn) = sums_l(nzb+2,pr_palm,tn) + &706 surf_def_h(0)%vsws(m) * rmask(j,i,sr)707 !$ACC ATOMIC 708 sums_l(nzb+3,pr_palm,tn) = sums_l(nzb+3,pr_palm,tn) + &709 surf_def_h(0)%ts(m) * rmask(j,i,sr)660 sums_l(nzb,pr_palm,tn) = sums_l(nzb,pr_palm,tn) + & 661 surf_def_h(0)%us(m) * rmask(j,i,sr) 662 !$ACC ATOMIC 663 sums_l(nzb+1,pr_palm,tn) = sums_l(nzb+1,pr_palm,tn) + & 664 surf_def_h(0)%usws(m) * rmask(j,i,sr) 665 !$ACC ATOMIC 666 sums_l(nzb+2,pr_palm,tn) = sums_l(nzb+2,pr_palm,tn) + & 667 surf_def_h(0)%vsws(m) * rmask(j,i,sr) 668 !$ACC ATOMIC 669 sums_l(nzb+3,pr_palm,tn) = sums_l(nzb+3,pr_palm,tn) + & 670 surf_def_h(0)%ts(m) * rmask(j,i,sr) 710 671 #ifndef _OPENACC 711 672 IF ( humidity ) THEN 712 sums_l(nzb+12,pr_palm,tn) = sums_l(nzb+12,pr_palm,tn) + &713 surf_def_h(0)%qs(m) * rmask(j,i,sr)673 sums_l(nzb+12,pr_palm,tn) = sums_l(nzb+12,pr_palm,tn) + & 674 surf_def_h(0)%qs(m) * rmask(j,i,sr) 714 675 ENDIF 715 676 IF ( passive_scalar ) THEN 716 sums_l(nzb+13,pr_palm,tn) = sums_l(nzb+13,pr_palm,tn) + &717 surf_def_h(0)%ss(m) * rmask(j,i,sr)677 sums_l(nzb+13,pr_palm,tn) = sums_l(nzb+13,pr_palm,tn) + & 678 surf_def_h(0)%ss(m) * rmask(j,i,sr) 718 679 ENDIF 719 680 #endif … … 721 682 !-- Summation of surface temperature. 722 683 !$ACC ATOMIC 723 sums_l(nzb+14,pr_palm,tn) = sums_l(nzb+14,pr_palm,tn) + & 724 surf_def_h(0)%pt_surface(m) * & 725 rmask(j,i,sr) 684 sums_l(nzb+14,pr_palm,tn) = sums_l(nzb+14,pr_palm,tn) + & 685 surf_def_h(0)%pt_surface(m) * rmask(j,i,sr) 726 686 ENDIF 727 687 IF ( surf_lsm_h%end_index(j,i) >= surf_lsm_h%start_index(j,i) ) THEN 728 688 m = surf_lsm_h%start_index(j,i) 729 689 !$ACC ATOMIC 730 sums_l(nzb,pr_palm,tn) = sums_l(nzb,pr_palm,tn) + &731 surf_lsm_h%us(m) * rmask(j,i,sr)732 !$ACC ATOMIC 733 sums_l(nzb+1,pr_palm,tn) = sums_l(nzb+1,pr_palm,tn) + &734 surf_lsm_h%usws(m) * rmask(j,i,sr)735 !$ACC ATOMIC 736 sums_l(nzb+2,pr_palm,tn) = sums_l(nzb+2,pr_palm,tn) + &737 surf_lsm_h%vsws(m) * rmask(j,i,sr)738 !$ACC ATOMIC 739 sums_l(nzb+3,pr_palm,tn) = sums_l(nzb+3,pr_palm,tn) + &740 surf_lsm_h%ts(m) * rmask(j,i,sr)690 sums_l(nzb,pr_palm,tn) = sums_l(nzb,pr_palm,tn) + & 691 surf_lsm_h%us(m) * rmask(j,i,sr) 692 !$ACC ATOMIC 693 sums_l(nzb+1,pr_palm,tn) = sums_l(nzb+1,pr_palm,tn) + & 694 surf_lsm_h%usws(m) * rmask(j,i,sr) 695 !$ACC ATOMIC 696 sums_l(nzb+2,pr_palm,tn) = sums_l(nzb+2,pr_palm,tn) + & 697 surf_lsm_h%vsws(m) * rmask(j,i,sr) 698 !$ACC ATOMIC 699 sums_l(nzb+3,pr_palm,tn) = sums_l(nzb+3,pr_palm,tn) + & 700 surf_lsm_h%ts(m) * rmask(j,i,sr) 741 701 #ifndef _OPENACC 742 702 IF ( humidity ) THEN 743 sums_l(nzb+12,pr_palm,tn) = sums_l(nzb+12,pr_palm,tn) + &744 surf_lsm_h%qs(m) * rmask(j,i,sr)703 sums_l(nzb+12,pr_palm,tn) = sums_l(nzb+12,pr_palm,tn) + & 704 surf_lsm_h%qs(m) * rmask(j,i,sr) 745 705 ENDIF 746 706 IF ( passive_scalar ) THEN 747 sums_l(nzb+13,pr_palm,tn) = sums_l(nzb+13,pr_palm,tn) + &748 surf_lsm_h%ss(m) * rmask(j,i,sr)707 sums_l(nzb+13,pr_palm,tn) = sums_l(nzb+13,pr_palm,tn) + & 708 surf_lsm_h%ss(m) * rmask(j,i,sr) 749 709 ENDIF 750 710 #endif … … 752 712 !-- Summation of surface temperature. 753 713 !$ACC ATOMIC 754 sums_l(nzb+14,pr_palm,tn) = sums_l(nzb+14,pr_palm,tn) + & 755 surf_lsm_h%pt_surface(m) * & 756 rmask(j,i,sr) 714 sums_l(nzb+14,pr_palm,tn) = sums_l(nzb+14,pr_palm,tn) + & 715 surf_lsm_h%pt_surface(m) * rmask(j,i,sr) 757 716 ENDIF 758 717 IF ( surf_usm_h%end_index(j,i) >= surf_usm_h%start_index(j,i) ) THEN 759 718 m = surf_usm_h%start_index(j,i) 760 719 !$ACC ATOMIC 761 sums_l(nzb,pr_palm,tn) = sums_l(nzb,pr_palm,tn) + &762 surf_usm_h%us(m) * rmask(j,i,sr)763 !$ACC ATOMIC 764 sums_l(nzb+1,pr_palm,tn) = sums_l(nzb+1,pr_palm,tn) + &765 surf_usm_h%usws(m) * rmask(j,i,sr)766 !$ACC ATOMIC 767 sums_l(nzb+2,pr_palm,tn) = sums_l(nzb+2,pr_palm,tn) + &768 surf_usm_h%vsws(m) * rmask(j,i,sr)769 !$ACC ATOMIC 770 sums_l(nzb+3,pr_palm,tn) = sums_l(nzb+3,pr_palm,tn) + &771 surf_usm_h%ts(m) * rmask(j,i,sr)720 sums_l(nzb,pr_palm,tn) = sums_l(nzb,pr_palm,tn) + & 721 surf_usm_h%us(m) * rmask(j,i,sr) 722 !$ACC ATOMIC 723 sums_l(nzb+1,pr_palm,tn) = sums_l(nzb+1,pr_palm,tn) + & 724 surf_usm_h%usws(m) * rmask(j,i,sr) 725 !$ACC ATOMIC 726 sums_l(nzb+2,pr_palm,tn) = sums_l(nzb+2,pr_palm,tn) + & 727 surf_usm_h%vsws(m) * rmask(j,i,sr) 728 !$ACC ATOMIC 729 sums_l(nzb+3,pr_palm,tn) = sums_l(nzb+3,pr_palm,tn) + & 730 surf_usm_h%ts(m) * rmask(j,i,sr) 772 731 #ifndef _OPENACC 773 732 IF ( humidity ) THEN 774 sums_l(nzb+12,pr_palm,tn) = sums_l(nzb+12,pr_palm,tn) + &775 surf_usm_h%qs(m) * rmask(j,i,sr)733 sums_l(nzb+12,pr_palm,tn) = sums_l(nzb+12,pr_palm,tn) + & 734 surf_usm_h%qs(m) * rmask(j,i,sr) 776 735 ENDIF 777 736 IF ( passive_scalar ) THEN 778 sums_l(nzb+13,pr_palm,tn) = sums_l(nzb+13,pr_palm,tn) + &779 surf_usm_h%ss(m)* rmask(j,i,sr)737 sums_l(nzb+13,pr_palm,tn) = sums_l(nzb+13,pr_palm,tn) + & 738 surf_usm_h%ss(m) * rmask(j,i,sr) 780 739 ENDIF 781 740 #endif … … 783 742 !-- Summation of surface temperature. 784 743 !$ACC ATOMIC 785 sums_l(nzb+14,pr_palm,tn) = sums_l(nzb+14,pr_palm,tn) + & 786 surf_usm_h%pt_surface(m) * & 787 rmask(j,i,sr) 744 sums_l(nzb+14,pr_palm,tn) = sums_l(nzb+14,pr_palm,tn) + & 745 surf_usm_h%pt_surface(m) * rmask(j,i,sr) 788 746 ENDIF 789 747 ENDDO !j-loop … … 798 756 !-- Computation of statistics when ws-scheme is not used. Else these 799 757 !-- quantities are evaluated in the advection routines. 800 IF ( .NOT. ws_scheme_mom .OR. sr /= 0 .OR. simulated_time == 0.0_wp ) & 801 THEN 758 IF ( .NOT. ws_scheme_mom .OR. sr /= 0 .OR. simulated_time == 0.0_wp ) THEN 802 759 !$OMP DO 803 760 DO i = nxl, nxr … … 812 769 vst2 = ( v(k,j,i) - hom(k,1,2,sr) )**2 813 770 814 sums_l(k,30,tn) = sums_l(k,30,tn) + ust2 * rmask(j,i,sr) & 815 * flag 816 sums_l(k,31,tn) = sums_l(k,31,tn) + vst2 * rmask(j,i,sr) & 817 * flag 818 sums_l(k,32,tn) = sums_l(k,32,tn) + w2 * rmask(j,i,sr) & 819 * flag 771 sums_l(k,30,tn) = sums_l(k,30,tn) + ust2 * rmask(j,i,sr) * flag 772 sums_l(k,31,tn) = sums_l(k,31,tn) + vst2 * rmask(j,i,sr) * flag 773 sums_l(k,32,tn) = sums_l(k,32,tn) + w2 * rmask(j,i,sr) * flag 820 774 ! 821 775 !-- Perturbation energy 822 823 sums_l(k,34,tn) = sums_l(k,34,tn) + 0.5_wp * & 824 ( ust2 + vst2 + w2 ) * rmask(j,i,sr) & 825 * flag 776 sums_l(k,34,tn) = sums_l(k,34,tn) + & 777 0.5_wp * ( ust2 + vst2 + w2 ) * rmask(j,i,sr) * flag 826 778 ENDDO 827 779 ENDDO … … 829 781 ENDIF 830 782 ! 831 !-- Computaion of domain-averaged perturbation energy. Please note, 832 !-- to prevent that perturbation energy is larger (even if only slightly) 833 !-- than the total kinetic energy, calculation is based on deviations from 834 !-- the horizontal mean, instead of spatial descretization of the advection 783 !-- Computaion of domain-averaged perturbation energy. Please note, to prevent that perturbation 784 !-- energy is larger (even if only slightly) than the total kinetic energy, calculation is based 785 !-- on deviations from the horizontal mean, instead of spatial descretization of the advection 835 786 !-- term. 836 787 !$OMP DO … … 849 800 850 801 !$ACC ATOMIC 851 sums_l(nzb+5,pr_palm,tn) = sums_l(nzb+5,pr_palm,tn) & 852 + 0.5_wp * ( ust2 + vst2 + w2 ) & 853 * rmask(j,i,sr) & 854 * flag 802 sums_l(nzb+5,pr_palm,tn) = sums_l(nzb+5,pr_palm,tn) & 803 + 0.5_wp * ( ust2 + vst2 + w2 ) * rmask(j,i,sr) * flag 855 804 856 805 ENDDO … … 861 810 ! 862 811 !-- Horizontally averaged profiles of the vertical fluxes 863 864 812 !$OMP DO 865 813 !$ACC PARALLEL LOOP COLLAPSE(2) PRIVATE(i, j, k, l, m) & … … 873 821 DO j = nys, nyn 874 822 ! 875 !-- Subgridscale fluxes (without Prandtl layer from k=nzb, 876 !-- oterwise from k=nzb+1) 877 !-- NOTE: for simplicity, nzb_diff_s_inner is used below, although 878 !-- ---- strictly speaking the following k-loop would have to be 879 !-- split up according to the staggered grid. 880 !-- However, this implies no error since staggered velocity 881 !-- components are zero at the walls and inside buildings. 882 !-- Flag 23 is used to mask surface fluxes as well as model-top fluxes, 883 !-- which are added further below. 823 !-- Subgridscale fluxes (without Prandtl layer from k=nzb, oterwise from k=nzb+1) 824 !-- NOTE: for simplicity, nzb_diff_s_inner is used below, although strictly speaking the 825 !-- ---- following k-loop would have to be split up according to the staggered grid. 826 !-- However, this implies no error since staggered velocity components are zero at 827 !-- the walls and inside buildings. 828 !-- Flag 23 is used to mask surface fluxes as well as model-top fluxes, which are added 829 !-- further below. 884 830 DO k = nzb, nzt 885 flag = MERGE( 1.0_wp, 0.0_wp, & 886 BTEST( wall_flags_total_0(k,j,i), 23 ) ) * & 887 MERGE( 1.0_wp, 0.0_wp, & 888 BTEST( wall_flags_total_0(k,j,i), 9 ) ) 831 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 23 ) ) * & 832 MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 9 ) ) 889 833 ! 890 834 !-- Momentum flux w"u" 891 835 !$ACC ATOMIC 892 sums_l(k,12,tn) = sums_l(k,12,tn) - 0.25_wp * ( &893 km(k,j,i)+km(k+1,j,i)+km(k,j,i-1)+km(k+1,j,i-1)&894 ) * (&895 ( u(k+1,j,i) - u(k,j,i) ) * ddzu(k+1)&896 + ( w(k,j,i) - w(k,j,i-1) ) * ddx&897 ) * rmask(j,i,sr)&898 * rho_air_zw(k)&899 * momentumflux_output_conversion(k)&900 * flag836 sums_l(k,12,tn) = sums_l(k,12,tn) - 0.25_wp * ( & 837 km(k,j,i) + km(k+1,j,i) + km(k,j,i-1) + km(k+1,j,i-1) & 838 ) * ( & 839 ( u(k+1,j,i) - u(k,j,i) ) * ddzu(k+1) & 840 + ( w(k,j,i) - w(k,j,i-1) ) * ddx & 841 ) * rmask(j,i,sr) & 842 * rho_air_zw(k) & 843 * momentumflux_output_conversion(k) & 844 * flag 901 845 ! 902 846 !-- Momentum flux w"v" 903 847 !$ACC ATOMIC 904 sums_l(k,14,tn) = sums_l(k,14,tn) - 0.25_wp * ( &905 km(k,j,i)+km(k+1,j,i)+km(k,j-1,i)+km(k+1,j-1,i)&906 ) * (&907 ( v(k+1,j,i) - v(k,j,i) ) * ddzu(k+1)&908 + ( w(k,j,i) - w(k,j-1,i) ) * ddy&909 ) * rmask(j,i,sr)&910 * rho_air_zw(k)&911 * momentumflux_output_conversion(k)&912 * flag848 sums_l(k,14,tn) = sums_l(k,14,tn) - 0.25_wp * ( & 849 km(k,j,i) + km(k+1,j,i) + km(k,j-1,i) + km(k+1,j-1,i) & 850 ) * ( & 851 ( v(k+1,j,i) - v(k,j,i) ) * ddzu(k+1) & 852 + ( w(k,j,i) - w(k,j-1,i) ) * ddy & 853 ) * rmask(j,i,sr) & 854 * rho_air_zw(k) & 855 * momentumflux_output_conversion(k) & 856 * flag 913 857 ! 914 858 !-- Heat flux w"pt" 915 859 !$ACC ATOMIC 916 sums_l(k,16,tn) = sums_l(k,16,tn) &917 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) &918 * ( pt(k+1,j,i) - pt(k,j,i) ) &919 * rho_air_zw(k) &920 * heatflux_output_conversion(k) &921 * ddzu(k+1) * rmask(j,i,sr) &860 sums_l(k,16,tn) = sums_l(k,16,tn) & 861 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) & 862 * ( pt(k+1,j,i) - pt(k,j,i) ) & 863 * rho_air_zw(k) & 864 * heatflux_output_conversion(k) & 865 * ddzu(k+1) * rmask(j,i,sr) & 922 866 * flag 923 867 … … 926 870 #ifndef _OPENACC 927 871 IF ( ocean_mode ) THEN 928 sums_l(k,65,tn) = sums_l(k,65,tn) &929 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) &930 * ( sa(k+1,j,i) - sa(k,j,i) ) &931 * ddzu(k+1) * rmask(j,i,sr) &872 sums_l(k,65,tn) = sums_l(k,65,tn) & 873 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) & 874 * ( sa(k+1,j,i) - sa(k,j,i) ) & 875 * ddzu(k+1) * rmask(j,i,sr) & 932 876 * flag 933 877 ENDIF … … 936 880 !-- Buoyancy flux, water flux (humidity flux) w"q" 937 881 IF ( humidity ) THEN 938 sums_l(k,45,tn) = sums_l(k,45,tn) &939 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) &940 * ( vpt(k+1,j,i) - vpt(k,j,i) ) &941 * rho_air_zw(k) &942 * heatflux_output_conversion(k) &882 sums_l(k,45,tn) = sums_l(k,45,tn) & 883 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) & 884 * ( vpt(k+1,j,i) - vpt(k,j,i) ) & 885 * rho_air_zw(k) & 886 * heatflux_output_conversion(k) & 943 887 * ddzu(k+1) * rmask(j,i,sr) * flag 944 sums_l(k,48,tn) = sums_l(k,48,tn) &945 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) &946 * ( q(k+1,j,i) - q(k,j,i) ) &947 * rho_air_zw(k) &948 * waterflux_output_conversion(k) &888 sums_l(k,48,tn) = sums_l(k,48,tn) & 889 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) & 890 * ( q(k+1,j,i) - q(k,j,i) ) & 891 * rho_air_zw(k) & 892 * waterflux_output_conversion(k) & 949 893 * ddzu(k+1) * rmask(j,i,sr) * flag 950 894 951 895 IF ( bulk_cloud_model ) THEN 952 sums_l(k,51,tn) = sums_l(k,51,tn) &953 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) &954 * ( ( q(k+1,j,i) - ql(k+1,j,i) ) &955 - ( q(k,j,i) - ql(k,j,i) ) ) &956 * rho_air_zw(k) &957 * waterflux_output_conversion(k) &896 sums_l(k,51,tn) = sums_l(k,51,tn) & 897 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) & 898 * ( ( q(k+1,j,i) - ql(k+1,j,i) ) & 899 - ( q(k,j,i) - ql(k,j,i) ) ) & 900 * rho_air_zw(k) & 901 * waterflux_output_conversion(k) & 958 902 * ddzu(k+1) * rmask(j,i,sr) * flag 959 903 ENDIF … … 963 907 !-- Passive scalar flux 964 908 IF ( passive_scalar ) THEN 965 sums_l(k,117,tn) = sums_l(k,117,tn) &966 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) &967 * ( s(k+1,j,i) - s(k,j,i) ) &968 * ddzu(k+1) * rmask(j,i,sr) &909 sums_l(k,117,tn) = sums_l(k,117,tn) & 910 - 0.5_wp * ( kh(k,j,i) + kh(k+1,j,i) ) & 911 * ( s(k+1,j,i) - s(k,j,i) ) & 912 * ddzu(k+1) * rmask(j,i,sr) & 969 913 * flag 970 914 ENDIF … … 983 927 ki = -1 + l 984 928 IF ( surf_def_h(l)%ns >= 1 ) THEN 985 DO m = surf_def_h(l)%start_index(j,i), &929 DO m = surf_def_h(l)%start_index(j,i), & 986 930 surf_def_h(l)%end_index(j,i) 987 931 k = surf_def_h(l)%k(m) 988 932 989 933 !$ACC ATOMIC 990 sums_l(k+ki,12,tn) = sums_l(k+ki,12,tn) + &991 momentumflux_output_conversion(k+ki) *&992 surf_def_h(l)%usws(m) * rmask(j,i,sr) ! w"u"934 sums_l(k+ki,12,tn) = sums_l(k+ki,12,tn) + & 935 momentumflux_output_conversion(k+ki) * & 936 surf_def_h(l)%usws(m) * rmask(j,i,sr) ! w"u" 993 937 !$ACC ATOMIC 994 sums_l(k+ki,14,tn) = sums_l(k+ki,14,tn) + &995 momentumflux_output_conversion(k+ki) *&996 surf_def_h(l)%vsws(m) * rmask(j,i,sr) ! w"v"938 sums_l(k+ki,14,tn) = sums_l(k+ki,14,tn) + & 939 momentumflux_output_conversion(k+ki) * & 940 surf_def_h(l)%vsws(m) * rmask(j,i,sr) ! w"v" 997 941 !$ACC ATOMIC 998 sums_l(k+ki,16,tn) = sums_l(k+ki,16,tn) + &999 heatflux_output_conversion(k+ki) *&1000 surf_def_h(l)%shf(m) * rmask(j,i,sr) ! w"pt"942 sums_l(k+ki,16,tn) = sums_l(k+ki,16,tn) + & 943 heatflux_output_conversion(k+ki) * & 944 surf_def_h(l)%shf(m) * rmask(j,i,sr) ! w"pt" 1001 945 #if 0 1002 sums_l(k+ki,58,tn) = sums_l(k+ki,58,tn) + &1003 0.0_wp * rmask(j,i,sr)! u"pt"1004 sums_l(k+ki,61,tn) = sums_l(k+ki,61,tn) + &1005 0.0_wp * rmask(j,i,sr)! v"pt"946 sums_l(k+ki,58,tn) = sums_l(k+ki,58,tn) + & 947 0.0_wp * rmask(j,i,sr) ! u"pt" 948 sums_l(k+ki,61,tn) = sums_l(k+ki,61,tn) + & 949 0.0_wp * rmask(j,i,sr) ! v"pt" 1006 950 #endif 1007 951 #ifndef _OPENACC 1008 952 IF ( ocean_mode ) THEN 1009 sums_l(k+ki,65,tn) = sums_l(k+ki,65,tn) + &1010 surf_def_h(l)%sasws(m) * rmask(j,i,sr) ! w"sa"953 sums_l(k+ki,65,tn) = sums_l(k+ki,65,tn) + & 954 surf_def_h(l)%sasws(m) * rmask(j,i,sr) ! w"sa" 1011 955 ENDIF 1012 956 IF ( humidity ) THEN 1013 sums_l(k+ki,48,tn) = sums_l(k+ki,48,tn) + &1014 waterflux_output_conversion(k+ki) *&1015 surf_def_h(l)%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv")1016 sums_l(k+ki,45,tn) = sums_l(k+ki,45,tn) + (&1017 ( 1.0_wp + 0.61_wp * q(k+ki,j,i) ) *&1018 surf_def_h(l)%shf(m) + 0.61_wp * pt(k+ki,j,i) *&1019 surf_def_h(l)%qsws(m) )&1020 * heatflux_output_conversion(k+ki)957 sums_l(k+ki,48,tn) = sums_l(k+ki,48,tn) + & 958 waterflux_output_conversion(k+ki) * & 959 surf_def_h(l)%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 960 sums_l(k+ki,45,tn) = sums_l(k+ki,45,tn) + ( & 961 ( 1.0_wp + 0.61_wp * q(k+ki,j,i) ) * & 962 surf_def_h(l)%shf(m) + 0.61_wp * pt(k+ki,j,i) * & 963 surf_def_h(l)%qsws(m) ) & 964 * heatflux_output_conversion(k+ki) 1021 965 IF ( cloud_droplets ) THEN 1022 sums_l(k+ki,45,tn) = sums_l(k+ki,45,tn) + ( & 1023 ( 1.0_wp + 0.61_wp * q(k+ki,j,i) - & 1024 ql(k+ki,j,i) ) * surf_def_h(l)%shf(m) + & 1025 0.61_wp * pt(k+ki,j,i) * surf_def_h(l)%qsws(m) ) & 1026 * heatflux_output_conversion(k+ki) 966 sums_l(k+ki,45,tn) = sums_l(k+ki,45,tn) + ( & 967 ( 1.0_wp + 0.61_wp * q(k+ki,j,i) - & 968 ql(k+ki,j,i) ) * surf_def_h(l)%shf(m) + & 969 0.61_wp * pt(k+ki,j,i) & 970 * surf_def_h(l)%qsws(m) ) & 971 * heatflux_output_conversion(k+ki) 1027 972 ENDIF 1028 973 IF ( bulk_cloud_model ) THEN 1029 974 ! 1030 975 !-- Formula does not work if ql(k+ki) /= 0.0 1031 sums_l(k+ki,51,tn) = sums_l(k+ki,51,tn) + &1032 waterflux_output_conversion(k+ki) *&1033 surf_def_h(l)%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv")976 sums_l(k+ki,51,tn) = sums_l(k+ki,51,tn) + & 977 waterflux_output_conversion(k+ki) * & 978 surf_def_h(l)%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1034 979 ENDIF 1035 980 ENDIF 1036 981 IF ( passive_scalar ) THEN 1037 sums_l(k+ki,117,tn) = sums_l(k+ki,117,tn) + &1038 surf_def_h(l)%ssws(m) * rmask(j,i,sr) ! w"s"982 sums_l(k+ki,117,tn) = sums_l(k+ki,117,tn) + & 983 surf_def_h(l)%ssws(m) * rmask(j,i,sr) ! w"s" 1039 984 ENDIF 1040 985 #endif … … 1044 989 ENDIF 1045 990 ENDDO 1046 IF ( surf_lsm_h%end_index(j,i) >= & 1047 surf_lsm_h%start_index(j,i) ) THEN 991 IF ( surf_lsm_h%end_index(j,i) >= surf_lsm_h%start_index(j,i) ) THEN 1048 992 m = surf_lsm_h%start_index(j,i) 1049 993 !$ACC ATOMIC 1050 sums_l(nzb,12,tn) = sums_l(nzb,12,tn) + &1051 momentumflux_output_conversion(nzb) *&1052 surf_lsm_h%usws(m) * rmask(j,i,sr) ! w"u"994 sums_l(nzb,12,tn) = sums_l(nzb,12,tn) + & 995 momentumflux_output_conversion(nzb) * & 996 surf_lsm_h%usws(m) * rmask(j,i,sr) ! w"u" 1053 997 !$ACC ATOMIC 1054 sums_l(nzb,14,tn) = sums_l(nzb,14,tn) + &1055 momentumflux_output_conversion(nzb) *&1056 surf_lsm_h%vsws(m) * rmask(j,i,sr) ! w"v"998 sums_l(nzb,14,tn) = sums_l(nzb,14,tn) + & 999 momentumflux_output_conversion(nzb) * & 1000 surf_lsm_h%vsws(m) * rmask(j,i,sr) ! w"v" 1057 1001 !$ACC ATOMIC 1058 sums_l(nzb,16,tn) = sums_l(nzb,16,tn) + &1059 heatflux_output_conversion(nzb) *&1060 surf_lsm_h%shf(m) * rmask(j,i,sr) ! w"pt"1002 sums_l(nzb,16,tn) = sums_l(nzb,16,tn) + & 1003 heatflux_output_conversion(nzb) * & 1004 surf_lsm_h%shf(m) * rmask(j,i,sr) ! w"pt" 1061 1005 #if 0 1062 sums_l(nzb,58,tn) = sums_l(nzb,58,tn) + &1063 0.0_wp * rmask(j,i,sr) ! u"pt"1064 sums_l(nzb,61,tn) = sums_l(nzb,61,tn) + &1065 0.0_wp * rmask(j,i,sr) ! v"pt"1006 sums_l(nzb,58,tn) = sums_l(nzb,58,tn) + & 1007 0.0_wp * rmask(j,i,sr) ! u"pt" 1008 sums_l(nzb,61,tn) = sums_l(nzb,61,tn) + & 1009 0.0_wp * rmask(j,i,sr) ! v"pt" 1066 1010 #endif 1067 1011 #ifndef _OPENACC 1068 1012 IF ( ocean_mode ) THEN 1069 sums_l(nzb,65,tn) = sums_l(nzb,65,tn) + &1070 surf_lsm_h%sasws(m) * rmask(j,i,sr) ! w"sa"1013 sums_l(nzb,65,tn) = sums_l(nzb,65,tn) + & 1014 surf_lsm_h%sasws(m) * rmask(j,i,sr) ! w"sa" 1071 1015 ENDIF 1072 1016 IF ( humidity ) THEN 1073 sums_l(nzb,48,tn) = sums_l(nzb,48,tn) + & 1074 waterflux_output_conversion(nzb) * & 1075 surf_lsm_h%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1076 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( & 1077 ( 1.0_wp + 0.61_wp * q(nzb,j,i) ) * & 1078 surf_lsm_h%shf(m) + 0.61_wp * pt(nzb,j,i) * & 1079 surf_lsm_h%qsws(m) ) & 1080 * heatflux_output_conversion(nzb) 1017 sums_l(nzb,48,tn) = sums_l(nzb,48,tn) + & 1018 waterflux_output_conversion(nzb) * & 1019 surf_lsm_h%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1020 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( & 1021 ( 1.0_wp + 0.61_wp * q(nzb,j,i) ) * surf_lsm_h%shf(m) + & 1022 0.61_wp * pt(nzb,j,i) * surf_lsm_h%qsws(m) ) & 1023 * heatflux_output_conversion(nzb) 1081 1024 IF ( cloud_droplets ) THEN 1082 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( &1083 ( 1.0_wp + 0.61_wp * q(nzb,j,i) -&1084 ql(nzb,j,i) ) * surf_lsm_h%shf(m) +&1085 0.61_wp * pt(nzb,j,i) * surf_lsm_h%qsws(m) )&1086 * heatflux_output_conversion(nzb)1025 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( & 1026 ( 1.0_wp + 0.61_wp * q(nzb,j,i) - & 1027 ql(nzb,j,i) ) * surf_lsm_h%shf(m) + & 1028 0.61_wp * pt(nzb,j,i) * surf_lsm_h%qsws(m) ) & 1029 * heatflux_output_conversion(nzb) 1087 1030 ENDIF 1088 1031 IF ( bulk_cloud_model ) THEN 1089 1032 ! 1090 1033 !-- Formula does not work if ql(nzb) /= 0.0 1091 sums_l(nzb,51,tn) = sums_l(nzb,51,tn) + &1092 waterflux_output_conversion(nzb) *&1093 surf_lsm_h%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv")1034 sums_l(nzb,51,tn) = sums_l(nzb,51,tn) + & 1035 waterflux_output_conversion(nzb) * & 1036 surf_lsm_h%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1094 1037 ENDIF 1095 1038 ENDIF 1096 1039 IF ( passive_scalar ) THEN 1097 sums_l(nzb,117,tn) = sums_l(nzb,117,tn) + &1098 surf_lsm_h%ssws(m) * rmask(j,i,sr) ! w"s"1040 sums_l(nzb,117,tn) = sums_l(nzb,117,tn) + & 1041 surf_lsm_h%ssws(m) * rmask(j,i,sr) ! w"s" 1099 1042 ENDIF 1100 1043 #endif 1101 1044 1102 1045 ENDIF 1103 IF ( surf_usm_h%end_index(j,i) >= & 1104 surf_usm_h%start_index(j,i) ) THEN 1046 IF ( surf_usm_h%end_index(j,i) >= surf_usm_h%start_index(j,i) ) THEN 1105 1047 m = surf_usm_h%start_index(j,i) 1106 1048 !$ACC ATOMIC 1107 sums_l(nzb,12,tn) = sums_l(nzb,12,tn) + &1108 momentumflux_output_conversion(nzb) *&1109 surf_usm_h%usws(m) * rmask(j,i,sr)! w"u"1049 sums_l(nzb,12,tn) = sums_l(nzb,12,tn) + & 1050 momentumflux_output_conversion(nzb) * & 1051 surf_usm_h%usws(m) * rmask(j,i,sr) ! w"u" 1110 1052 !$ACC ATOMIC 1111 sums_l(nzb,14,tn) = sums_l(nzb,14,tn) + &1112 momentumflux_output_conversion(nzb) *&1113 surf_usm_h%vsws(m) * rmask(j,i,sr)! w"v"1053 sums_l(nzb,14,tn) = sums_l(nzb,14,tn) + & 1054 momentumflux_output_conversion(nzb) * & 1055 surf_usm_h%vsws(m) * rmask(j,i,sr) ! w"v" 1114 1056 !$ACC ATOMIC 1115 sums_l(nzb,16,tn) = sums_l(nzb,16,tn) + &1116 heatflux_output_conversion(nzb) *&1117 surf_usm_h%shf(m) * rmask(j,i,sr)! w"pt"1057 sums_l(nzb,16,tn) = sums_l(nzb,16,tn) + & 1058 heatflux_output_conversion(nzb) * & 1059 surf_usm_h%shf(m) * rmask(j,i,sr) ! w"pt" 1118 1060 #if 0 1119 sums_l(nzb,58,tn) = sums_l(nzb,58,tn) + & 1120 0.0_wp * rmask(j,i,sr) ! u"pt" 1121 sums_l(nzb,61,tn) = sums_l(nzb,61,tn) + & 1122 0.0_wp * rmask(j,i,sr) ! v"pt" 1061 sums_l(nzb,58,tn) = sums_l(nzb,58,tn) + 0.0_wp * rmask(j,i,sr) ! u"pt" 1062 sums_l(nzb,61,tn) = sums_l(nzb,61,tn) + 0.0_wp * rmask(j,i,sr) ! v"pt" 1123 1063 #endif 1124 1064 #ifndef _OPENACC 1125 1065 IF ( ocean_mode ) THEN 1126 sums_l(nzb,65,tn) = sums_l(nzb,65,tn) + &1127 surf_usm_h%sasws(m) * rmask(j,i,sr)! w"sa"1066 sums_l(nzb,65,tn) = sums_l(nzb,65,tn) + & 1067 surf_usm_h%sasws(m) * rmask(j,i,sr) ! w"sa" 1128 1068 ENDIF 1129 1069 IF ( humidity ) THEN 1130 sums_l(nzb,48,tn) = sums_l(nzb,48,tn) + &1131 waterflux_output_conversion(nzb) *&1132 surf_usm_h%qsws(m) * rmask(j,i,sr)! w"q" (w"qv")1133 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( &1134 ( 1.0_wp + 0.61_wp * q(nzb,j,i) ) *&1135 surf_usm_h%shf(m) + 0.61_wp * pt(nzb,j,i) *&1136 surf_usm_h%qsws(m) )&1137 * heatflux_output_conversion(nzb)1070 sums_l(nzb,48,tn) = sums_l(nzb,48,tn) + & 1071 waterflux_output_conversion(nzb) * & 1072 surf_usm_h%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1073 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( & 1074 ( 1.0_wp + 0.61_wp * q(nzb,j,i) ) * & 1075 surf_usm_h%shf(m) + 0.61_wp * pt(nzb,j,i) * & 1076 surf_usm_h%qsws(m) ) & 1077 * heatflux_output_conversion(nzb) 1138 1078 IF ( cloud_droplets ) THEN 1139 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( &1140 ( 1.0_wp + 0.61_wp * q(nzb,j,i) -&1141 ql(nzb,j,i) ) * surf_usm_h%shf(m) +&1142 0.61_wp * pt(nzb,j,i) * surf_usm_h%qsws(m) )&1143 * heatflux_output_conversion(nzb)1079 sums_l(nzb,45,tn) = sums_l(nzb,45,tn) + ( & 1080 ( 1.0_wp + 0.61_wp * q(nzb,j,i) - & 1081 ql(nzb,j,i) ) * surf_usm_h%shf(m) + & 1082 0.61_wp * pt(nzb,j,i) * surf_usm_h%qsws(m) ) & 1083 * heatflux_output_conversion(nzb) 1144 1084 ENDIF 1145 1085 IF ( bulk_cloud_model ) THEN 1146 1086 ! 1147 1087 !-- Formula does not work if ql(nzb) /= 0.0 1148 sums_l(nzb,51,tn) = sums_l(nzb,51,tn) + &1149 waterflux_output_conversion(nzb) *&1150 surf_usm_h%qsws(m) * rmask(j,i,sr)! w"q" (w"qv")1088 sums_l(nzb,51,tn) = sums_l(nzb,51,tn) + & 1089 waterflux_output_conversion(nzb) * & 1090 surf_usm_h%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1151 1091 ENDIF 1152 1092 ENDIF 1153 1093 IF ( passive_scalar ) THEN 1154 sums_l(nzb,117,tn) = sums_l(nzb,117,tn) + &1155 surf_usm_h%ssws(m) * rmask(j,i,sr)! w"s"1094 sums_l(nzb,117,tn) = sums_l(nzb,117,tn) + & 1095 surf_usm_h%ssws(m) * rmask(j,i,sr) ! w"s" 1156 1096 ENDIF 1157 1097 #endif … … 1163 1103 #ifndef _OPENACC 1164 1104 IF ( .NOT. neutral ) THEN 1165 IF ( surf_def_h(0)%end_index(j,i) >= & 1166 surf_def_h(0)%start_index(j,i) ) THEN 1105 IF ( surf_def_h(0)%end_index(j,i) >= surf_def_h(0)%start_index(j,i) ) THEN 1167 1106 m = surf_def_h(0)%start_index(j,i) 1168 sums_l(nzb,112,tn) = sums_l(nzb,112,tn) + & 1169 surf_def_h(0)%ol(m) * rmask(j,i,sr) ! L 1170 ENDIF 1171 IF ( surf_lsm_h%end_index(j,i) >= & 1172 surf_lsm_h%start_index(j,i) ) THEN 1107 sums_l(nzb,112,tn) = sums_l(nzb,112,tn) + surf_def_h(0)%ol(m) * rmask(j,i,sr) ! L 1108 ENDIF 1109 IF ( surf_lsm_h%end_index(j,i) >= surf_lsm_h%start_index(j,i) ) THEN 1173 1110 m = surf_lsm_h%start_index(j,i) 1174 sums_l(nzb,112,tn) = sums_l(nzb,112,tn) + & 1175 surf_lsm_h%ol(m) * rmask(j,i,sr) ! L 1176 ENDIF 1177 IF ( surf_usm_h%end_index(j,i) >= & 1178 surf_usm_h%start_index(j,i) ) THEN 1111 sums_l(nzb,112,tn) = sums_l(nzb,112,tn) + surf_lsm_h%ol(m) * rmask(j,i,sr) ! L 1112 ENDIF 1113 IF ( surf_usm_h%end_index(j,i) >= surf_usm_h%start_index(j,i) ) THEN 1179 1114 m = surf_usm_h%start_index(j,i) 1180 sums_l(nzb,112,tn) = sums_l(nzb,112,tn) + & 1181 surf_usm_h%ol(m) * rmask(j,i,sr) ! L 1115 sums_l(nzb,112,tn) = sums_l(nzb,112,tn) + surf_usm_h%ol(m) * rmask(j,i,sr) ! L 1182 1116 ENDIF 1183 1117 ENDIF 1184 1118 1185 1119 IF ( radiation ) THEN 1186 IF ( surf_def_h(0)%end_index(j,i) >= & 1187 surf_def_h(0)%start_index(j,i) ) THEN 1120 IF ( surf_def_h(0)%end_index(j,i) >= surf_def_h(0)%start_index(j,i) ) THEN 1188 1121 m = surf_def_h(0)%start_index(j,i) 1189 sums_l(nzb,99,tn) = sums_l(nzb,99,tn) +&1190 surf_def_h(0)%rad_net(m) * rmask(j,i,sr)1191 sums_l(nzb,100,tn) = sums_l(nzb,100,tn) + &1192 surf_def_h(0)%rad_lw_in(m) * rmask(j,i,sr)1193 sums_l(nzb,101,tn) = sums_l(nzb,101,tn) + &1122 sums_l(nzb,99,tn) = sums_l(nzb,99,tn) + & 1123 surf_def_h(0)%rad_net(m) * rmask(j,i,sr) 1124 sums_l(nzb,100,tn) = sums_l(nzb,100,tn) + & 1125 surf_def_h(0)%rad_lw_in(m) * rmask(j,i,sr) 1126 sums_l(nzb,101,tn) = sums_l(nzb,101,tn) + & 1194 1127 surf_def_h(0)%rad_lw_out(m) * rmask(j,i,sr) 1195 sums_l(nzb,102,tn) = sums_l(nzb,102,tn) + &1196 surf_def_h(0)%rad_sw_in(m) * rmask(j,i,sr)1197 sums_l(nzb,103,tn) = sums_l(nzb,103,tn) + &1128 sums_l(nzb,102,tn) = sums_l(nzb,102,tn) + & 1129 surf_def_h(0)%rad_sw_in(m) * rmask(j,i,sr) 1130 sums_l(nzb,103,tn) = sums_l(nzb,103,tn) + & 1198 1131 surf_def_h(0)%rad_sw_out(m) * rmask(j,i,sr) 1199 1132 ENDIF 1200 IF ( surf_lsm_h%end_index(j,i) >= & 1201 surf_lsm_h%start_index(j,i) ) THEN 1133 IF ( surf_lsm_h%end_index(j,i) >= surf_lsm_h%start_index(j,i) ) THEN 1202 1134 m = surf_lsm_h%start_index(j,i) 1203 sums_l(nzb,99,tn) = sums_l(nzb,99,tn) +&1204 surf_lsm_h%rad_net(m) * rmask(j,i,sr)1205 sums_l(nzb,100,tn) = sums_l(nzb,100,tn) + &1206 surf_lsm_h%rad_lw_in(m) * rmask(j,i,sr)1207 sums_l(nzb,101,tn) = sums_l(nzb,101,tn) + &1135 sums_l(nzb,99,tn) = sums_l(nzb,99,tn) + & 1136 surf_lsm_h%rad_net(m) * rmask(j,i,sr) 1137 sums_l(nzb,100,tn) = sums_l(nzb,100,tn) + & 1138 surf_lsm_h%rad_lw_in(m) * rmask(j,i,sr) 1139 sums_l(nzb,101,tn) = sums_l(nzb,101,tn) + & 1208 1140 surf_lsm_h%rad_lw_out(m) * rmask(j,i,sr) 1209 sums_l(nzb,102,tn) = sums_l(nzb,102,tn) + &1210 surf_lsm_h%rad_sw_in(m) * rmask(j,i,sr)1211 sums_l(nzb,103,tn) = sums_l(nzb,103,tn) + &1141 sums_l(nzb,102,tn) = sums_l(nzb,102,tn) + & 1142 surf_lsm_h%rad_sw_in(m) * rmask(j,i,sr) 1143 sums_l(nzb,103,tn) = sums_l(nzb,103,tn) + & 1212 1144 surf_lsm_h%rad_sw_out(m) * rmask(j,i,sr) 1213 1145 ENDIF 1214 IF ( surf_usm_h%end_index(j,i) >= & 1215 surf_usm_h%start_index(j,i) ) THEN 1146 IF ( surf_usm_h%end_index(j,i) >= surf_usm_h%start_index(j,i) ) THEN 1216 1147 m = surf_usm_h%start_index(j,i) 1217 sums_l(nzb,99,tn) = sums_l(nzb,99,tn) +&1218 surf_usm_h%rad_net(m) * rmask(j,i,sr)1219 sums_l(nzb,100,tn) = sums_l(nzb,100,tn) + &1220 surf_usm_h%rad_lw_in(m) * rmask(j,i,sr)1221 sums_l(nzb,101,tn) = sums_l(nzb,101,tn) + &1148 sums_l(nzb,99,tn) = sums_l(nzb,99,tn) + & 1149 surf_usm_h%rad_net(m) * rmask(j,i,sr) 1150 sums_l(nzb,100,tn) = sums_l(nzb,100,tn) + & 1151 surf_usm_h%rad_lw_in(m) * rmask(j,i,sr) 1152 sums_l(nzb,101,tn) = sums_l(nzb,101,tn) + & 1222 1153 surf_usm_h%rad_lw_out(m) * rmask(j,i,sr) 1223 sums_l(nzb,102,tn) = sums_l(nzb,102,tn) + &1224 surf_usm_h%rad_sw_in(m) * rmask(j,i,sr)1225 sums_l(nzb,103,tn) = sums_l(nzb,103,tn) + &1154 sums_l(nzb,102,tn) = sums_l(nzb,102,tn) + & 1155 surf_usm_h%rad_sw_in(m) * rmask(j,i,sr) 1156 sums_l(nzb,103,tn) = sums_l(nzb,103,tn) + & 1226 1157 surf_usm_h%rad_sw_out(m) * rmask(j,i,sr) 1227 1158 ENDIF … … 1230 1161 IF ( radiation_scheme == 'rrtmg' ) THEN 1231 1162 1232 IF ( surf_def_h(0)%end_index(j,i) >= & 1233 surf_def_h(0)%start_index(j,i) ) THEN 1163 IF ( surf_def_h(0)%end_index(j,i) >= surf_def_h(0)%start_index(j,i) ) THEN 1234 1164 m = surf_def_h(0)%start_index(j,i) 1235 sums_l(nzb,108,tn) = sums_l(nzb,108,tn) + &1236 surf_def_h(0)%rrtm_aldif(m,0) * rmask(j,i,sr)1237 sums_l(nzb,109,tn) = sums_l(nzb,109,tn) + &1238 surf_def_h(0)%rrtm_aldir(m,0) * rmask(j,i,sr)1239 sums_l(nzb,110,tn) = sums_l(nzb,110,tn) + &1240 surf_def_h(0)%rrtm_asdif(m,0) * rmask(j,i,sr)1241 sums_l(nzb,111,tn) = sums_l(nzb,111,tn) + &1242 surf_def_h(0)%rrtm_asdir(m,0) * rmask(j,i,sr)1165 sums_l(nzb,108,tn) = sums_l(nzb,108,tn) + & 1166 surf_def_h(0)%rrtm_aldif(m,0) * rmask(j,i,sr) 1167 sums_l(nzb,109,tn) = sums_l(nzb,109,tn) + & 1168 surf_def_h(0)%rrtm_aldir(m,0) * rmask(j,i,sr) 1169 sums_l(nzb,110,tn) = sums_l(nzb,110,tn) + & 1170 surf_def_h(0)%rrtm_asdif(m,0) * rmask(j,i,sr) 1171 sums_l(nzb,111,tn) = sums_l(nzb,111,tn) + & 1172 surf_def_h(0)%rrtm_asdir(m,0) * rmask(j,i,sr) 1243 1173 ENDIF 1244 IF ( surf_lsm_h%end_index(j,i) >= & 1245 surf_lsm_h%start_index(j,i) ) THEN 1174 IF ( surf_lsm_h%end_index(j,i) >= surf_lsm_h%start_index(j,i) ) THEN 1246 1175 m = surf_lsm_h%start_index(j,i) 1247 sums_l(nzb,108,tn) = sums_l(nzb,108,tn) + &1248 SUM( surf_lsm_h%frac(m,:) *&1249 surf_lsm_h%rrtm_aldif(m,:) ) * rmask(j,i,sr)1250 sums_l(nzb,109,tn) = sums_l(nzb,109,tn) + &1251 SUM( surf_lsm_h%frac(m,:) *&1252 surf_lsm_h%rrtm_aldir(m,:) ) * rmask(j,i,sr)1253 sums_l(nzb,110,tn) = sums_l(nzb,110,tn) + &1254 SUM( surf_lsm_h%frac(m,:) *&1255 surf_lsm_h%rrtm_asdif(m,:) ) * rmask(j,i,sr)1256 sums_l(nzb,111,tn) = sums_l(nzb,111,tn) + &1257 SUM( surf_lsm_h%frac(m,:) *&1258 surf_lsm_h%rrtm_asdir(m,:) ) * rmask(j,i,sr)1176 sums_l(nzb,108,tn) = sums_l(nzb,108,tn) + & 1177 SUM( surf_lsm_h%frac(m,:) * & 1178 surf_lsm_h%rrtm_aldif(m,:) ) * rmask(j,i,sr) 1179 sums_l(nzb,109,tn) = sums_l(nzb,109,tn) + & 1180 SUM( surf_lsm_h%frac(m,:) * & 1181 surf_lsm_h%rrtm_aldir(m,:) ) * rmask(j,i,sr) 1182 sums_l(nzb,110,tn) = sums_l(nzb,110,tn) + & 1183 SUM( surf_lsm_h%frac(m,:) * & 1184 surf_lsm_h%rrtm_asdif(m,:) ) * rmask(j,i,sr) 1185 sums_l(nzb,111,tn) = sums_l(nzb,111,tn) + & 1186 SUM( surf_lsm_h%frac(m,:) * & 1187 surf_lsm_h%rrtm_asdir(m,:) ) * rmask(j,i,sr) 1259 1188 ENDIF 1260 IF ( surf_usm_h%end_index(j,i) >= & 1261 surf_usm_h%start_index(j,i) ) THEN 1189 IF ( surf_usm_h%end_index(j,i) >= surf_usm_h%start_index(j,i) ) THEN 1262 1190 m = surf_usm_h%start_index(j,i) 1263 sums_l(nzb,108,tn) = sums_l(nzb,108,tn) + &1264 SUM( surf_usm_h%frac(m,:) *&1265 surf_usm_h%rrtm_aldif(m,:) ) * rmask(j,i,sr)1266 sums_l(nzb,109,tn) = sums_l(nzb,109,tn) + &1267 SUM( surf_usm_h%frac(m,:) *&1268 surf_usm_h%rrtm_aldir(m,:) ) * rmask(j,i,sr)1269 sums_l(nzb,110,tn) = sums_l(nzb,110,tn) + &1270 SUM( surf_usm_h%frac(m,:) *&1271 surf_usm_h%rrtm_asdif(m,:) ) * rmask(j,i,sr)1272 sums_l(nzb,111,tn) = sums_l(nzb,111,tn) + &1273 SUM( surf_usm_h%frac(m,:) *&1274 surf_usm_h%rrtm_asdir(m,:) ) * rmask(j,i,sr)1191 sums_l(nzb,108,tn) = sums_l(nzb,108,tn) + & 1192 SUM( surf_usm_h%frac(m,:) * & 1193 surf_usm_h%rrtm_aldif(m,:) ) * rmask(j,i,sr) 1194 sums_l(nzb,109,tn) = sums_l(nzb,109,tn) + & 1195 SUM( surf_usm_h%frac(m,:) * & 1196 surf_usm_h%rrtm_aldir(m,:) ) * rmask(j,i,sr) 1197 sums_l(nzb,110,tn) = sums_l(nzb,110,tn) + & 1198 SUM( surf_usm_h%frac(m,:) * & 1199 surf_usm_h%rrtm_asdif(m,:) ) * rmask(j,i,sr) 1200 sums_l(nzb,111,tn) = sums_l(nzb,111,tn) + & 1201 SUM( surf_usm_h%frac(m,:) * & 1202 surf_usm_h%rrtm_asdir(m,:) ) * rmask(j,i,sr) 1275 1203 ENDIF 1276 1204 … … 1284 1212 m = surf_def_h(2)%start_index(j,i) 1285 1213 !$ACC ATOMIC 1286 sums_l(nzt,12,tn) = sums_l(nzt,12,tn) + &1287 momentumflux_output_conversion(nzt) * &1214 sums_l(nzt,12,tn) = sums_l(nzt,12,tn) + & 1215 momentumflux_output_conversion(nzt) * & 1288 1216 surf_def_h(2)%usws(m) * rmask(j,i,sr) ! w"u" 1289 1217 !$ACC ATOMIC 1290 sums_l(nzt+1,12,tn) = sums_l(nzt+1,12,tn) + &1291 momentumflux_output_conversion(nzt+1) *&1292 surf_def_h(2)%usws(m) * rmask(j,i,sr)! w"u"1293 !$ACC ATOMIC 1294 sums_l(nzt,14,tn) = sums_l(nzt,14,tn) + &1295 momentumflux_output_conversion(nzt) * &1218 sums_l(nzt+1,12,tn) = sums_l(nzt+1,12,tn) + & 1219 momentumflux_output_conversion(nzt+1) * & 1220 surf_def_h(2)%usws(m) * rmask(j,i,sr) ! w"u" 1221 !$ACC ATOMIC 1222 sums_l(nzt,14,tn) = sums_l(nzt,14,tn) + & 1223 momentumflux_output_conversion(nzt) * & 1296 1224 surf_def_h(2)%vsws(m) * rmask(j,i,sr) ! w"v" 1297 1225 !$ACC ATOMIC 1298 sums_l(nzt+1,14,tn) = sums_l(nzt+1,14,tn) + &1299 momentumflux_output_conversion(nzt+1) *&1300 surf_def_h(2)%vsws(m) * rmask(j,i,sr)! w"v"1301 !$ACC ATOMIC 1302 sums_l(nzt,16,tn) = sums_l(nzt,16,tn) + &1303 heatflux_output_conversion(nzt) * &1304 surf_def_h(2)%shf(m) * rmask(j,i,sr) ! w"pt"1305 !$ACC ATOMIC 1306 sums_l(nzt+1,16,tn) = sums_l(nzt+1,16,tn) + &1307 heatflux_output_conversion(nzt+1) *&1308 surf_def_h(2)%shf(m) * rmask(j,i,sr)! w"pt"1226 sums_l(nzt+1,14,tn) = sums_l(nzt+1,14,tn) + & 1227 momentumflux_output_conversion(nzt+1) * & 1228 surf_def_h(2)%vsws(m) * rmask(j,i,sr) ! w"v" 1229 !$ACC ATOMIC 1230 sums_l(nzt,16,tn) = sums_l(nzt,16,tn) + & 1231 heatflux_output_conversion(nzt) * & 1232 surf_def_h(2)%shf(m) * rmask(j,i,sr) ! w"pt" 1233 !$ACC ATOMIC 1234 sums_l(nzt+1,16,tn) = sums_l(nzt+1,16,tn) + & 1235 heatflux_output_conversion(nzt+1) * & 1236 surf_def_h(2)%shf(m) * rmask(j,i,sr) ! w"pt" 1309 1237 #if 0 1310 sums_l(nzt:nzt+1,58,tn) = sums_l(nzt:nzt+1,58,tn) + &1311 0.0_wp * rmask(j,i,sr)! u"pt"1312 sums_l(nzt:nzt+1,61,tn) = sums_l(nzt:nzt+1,61,tn) + &1313 0.0_wp * rmask(j,i,sr)! v"pt"1238 sums_l(nzt:nzt+1,58,tn) = sums_l(nzt:nzt+1,58,tn) + & 1239 0.0_wp * rmask(j,i,sr) ! u"pt" 1240 sums_l(nzt:nzt+1,61,tn) = sums_l(nzt:nzt+1,61,tn) + & 1241 0.0_wp * rmask(j,i,sr) ! v"pt" 1314 1242 #endif 1315 1243 #ifndef _OPENACC … … 1319 1247 ENDIF 1320 1248 IF ( humidity ) THEN 1321 sums_l(nzt,48,tn) = sums_l(nzt,48,tn) + &1322 waterflux_output_conversion(nzt) * &1249 sums_l(nzt,48,tn) = sums_l(nzt,48,tn) + & 1250 waterflux_output_conversion(nzt) * & 1323 1251 surf_def_h(2)%qsws(m) * rmask(j,i,sr) ! w"q" (w"qv") 1324 sums_l(nzt,45,tn) = sums_l(nzt,45,tn) + (&1325 ( 1.0_wp + 0.61_wp * q(nzt,j,i) ) * &1326 surf_def_h(2)%shf(m) + &1327 0.61_wp * pt(nzt,j,i) * &1328 surf_def_h(2)%qsws(m) ) &1252 sums_l(nzt,45,tn) = sums_l(nzt,45,tn) + ( & 1253 ( 1.0_wp + 0.61_wp * q(nzt,j,i) ) * & 1254 surf_def_h(2)%shf(m) + & 1255 0.61_wp * pt(nzt,j,i) * & 1256 surf_def_h(2)%qsws(m) ) & 1329 1257 * heatflux_output_conversion(nzt) 1330 1258 IF ( cloud_droplets ) THEN 1331 sums_l(nzt,45,tn) = sums_l(nzt,45,tn) + (&1332 ( 1.0_wp + 0.61_wp * q(nzt,j,i) - &1333 ql(nzt,j,i) ) * &1334 surf_def_h(2)%shf(m) + &1335 0.61_wp * pt(nzt,j,i) * &1336 surf_def_h(2)%qsws(m) ) &1259 sums_l(nzt,45,tn) = sums_l(nzt,45,tn) + ( & 1260 ( 1.0_wp + 0.61_wp * q(nzt,j,i) - & 1261 ql(nzt,j,i) ) * & 1262 surf_def_h(2)%shf(m) + & 1263 0.61_wp * pt(nzt,j,i) * & 1264 surf_def_h(2)%qsws(m) ) & 1337 1265 * heatflux_output_conversion(nzt) 1338 1266 ENDIF … … 1340 1268 ! 1341 1269 !-- Formula does not work if ql(nzb) /= 0.0 1342 sums_l(nzt,51,tn) = sums_l(nzt,51,tn) + &! w"q" (w"qv")1343 waterflux_output_conversion(nzt) * &1270 sums_l(nzt,51,tn) = sums_l(nzt,51,tn) + & ! w"q" (w"qv") 1271 waterflux_output_conversion(nzt) * & 1344 1272 surf_def_h(2)%qsws(m) * rmask(j,i,sr) 1345 1273 ENDIF 1346 1274 ENDIF 1347 1275 IF ( passive_scalar ) THEN 1348 sums_l(nzt,117,tn) = sums_l(nzt,117,tn) + &1276 sums_l(nzt,117,tn) = sums_l(nzt,117,tn) + & 1349 1277 surf_def_h(2)%ssws(m) * rmask(j,i,sr) ! w"s" 1350 1278 ENDIF … … 1354 1282 ! 1355 1283 !-- Resolved fluxes (can be computed for all horizontal points) 1356 !-- NOTE: for simplicity, nzb_s_inner is used below, although strictly 1357 !-- ---- speaking the following k-loop would have to be split up and1358 !-- rearranged according to thestaggered grid.1284 !-- NOTE: for simplicity, nzb_s_inner is used below, although strictly speaking the 1285 !-- ---- following k-loop would have to be split up and rearranged according to the 1286 !-- staggered grid. 1359 1287 DO k = nzb, nzt 1360 1288 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 22 ) ) 1361 ust = 0.5_wp * ( u(k,j,i) - hom(k,1,1,sr) + &1289 ust = 0.5_wp * ( u(k,j,i) - hom(k,1,1,sr) + & 1362 1290 u(k+1,j,i) - hom(k+1,1,1,sr) ) 1363 vst = 0.5_wp * ( v(k,j,i) - hom(k,1,2,sr) + &1291 vst = 0.5_wp * ( v(k,j,i) - hom(k,1,2,sr) + & 1364 1292 v(k+1,j,i) - hom(k+1,1,2,sr) ) 1365 pts = 0.5_wp * ( pt(k,j,i) - hom(k,1,4,sr) + &1293 pts = 0.5_wp * ( pt(k,j,i) - hom(k,1,4,sr) + & 1366 1294 pt(k+1,j,i) - hom(k+1,1,4,sr) ) 1367 1295 ! 1368 1296 !-- Higher moments 1369 1297 !$ACC ATOMIC 1370 sums_l(k,35,tn) = sums_l(k,35,tn) + pts * w(k,j,i)**2 * & 1371 rmask(j,i,sr) * flag 1372 !$ACC ATOMIC 1373 sums_l(k,36,tn) = sums_l(k,36,tn) + pts**2 * w(k,j,i) * & 1374 rmask(j,i,sr) * flag 1375 1376 ! 1377 !-- Salinity flux and density (density does not belong to here, 1378 !-- but so far there is no other suitable place to calculate) 1298 sums_l(k,35,tn) = sums_l(k,35,tn) + pts * w(k,j,i)**2 * rmask(j,i,sr) * flag 1299 !$ACC ATOMIC 1300 sums_l(k,36,tn) = sums_l(k,36,tn) + pts**2 * w(k,j,i) * rmask(j,i,sr) * flag 1301 1302 ! 1303 !-- Salinity flux and density (density does not belong to here, but so far there is no 1304 !-- other suitable place to calculate) 1379 1305 #ifndef _OPENACC 1380 1306 IF ( ocean_mode ) THEN 1381 1307 IF( .NOT. ws_scheme_sca .OR. sr /= 0 ) THEN 1382 pts = 0.5_wp * ( sa(k,j,i) - hom(k,1,23,sr) + &1308 pts = 0.5_wp * ( sa(k,j,i) - hom(k,1,23,sr) + & 1383 1309 sa(k+1,j,i) - hom(k+1,1,23,sr) ) 1384 sums_l(k,66,tn) = sums_l(k,66,tn) + pts * w(k,j,i) * &1310 sums_l(k,66,tn) = sums_l(k,66,tn) + pts * w(k,j,i) * & 1385 1311 rmask(j,i,sr) * flag 1386 1312 ENDIF 1387 sums_l(k,64,tn) = sums_l(k,64,tn) + rho_ocean(k,j,i) * & 1388 rmask(j,i,sr) * flag 1389 sums_l(k,71,tn) = sums_l(k,71,tn) + prho(k,j,i) * & 1390 rmask(j,i,sr) * flag 1391 ENDIF 1392 1393 ! 1394 !-- Buoyancy flux, water flux, humidity flux, liquid water 1395 !-- content, rain drop concentration and rain water content 1313 sums_l(k,64,tn) = sums_l(k,64,tn) + rho_ocean(k,j,i) * rmask(j,i,sr) * flag 1314 sums_l(k,71,tn) = sums_l(k,71,tn) + prho(k,j,i) * rmask(j,i,sr) * flag 1315 ENDIF 1316 1317 ! 1318 !-- Buoyancy flux, water flux, humidity flux, liquid water content, rain drop 1319 !-- concentration and rain water content 1396 1320 IF ( humidity ) THEN 1397 IF ( bulk_cloud_model .OR.cloud_droplets ) THEN1398 pts = 0.5_wp * ( vpt(k,j,i) - hom(k,1,44,sr) + &1399 vpt(k+1,j,i) - hom(k+1,1,44,sr) )1400 sums_l(k,46,tn) = sums_l(k,46,tn) + pts * w(k,j,i) * &1401 rho_air_zw(k) *&1402 heatflux_output_conversion(k) *&1321 IF ( bulk_cloud_model .OR. cloud_droplets ) THEN 1322 pts = 0.5_wp * ( vpt(k,j,i) - hom(k,1,44,sr) + & 1323 vpt(k+1,j,i) - hom(k+1,1,44,sr) ) 1324 sums_l(k,46,tn) = sums_l(k,46,tn) + pts * w(k,j,i) * & 1325 rho_air_zw(k) * & 1326 heatflux_output_conversion(k) * & 1403 1327 rmask(j,i,sr) * flag 1404 sums_l(k,54,tn) = sums_l(k,54,tn) + ql(k,j,i) * rmask(j,i,sr) & 1405 * flag 1328 sums_l(k,54,tn) = sums_l(k,54,tn) + ql(k,j,i) * rmask(j,i,sr) * flag 1406 1329 1407 1330 IF ( .NOT. cloud_droplets ) THEN 1408 pts = 0.5_wp * & 1409 ( ( q(k,j,i) - ql(k,j,i) ) - & 1410 hom(k,1,42,sr) + & 1411 ( q(k+1,j,i) - ql(k+1,j,i) ) - & 1412 hom(k+1,1,42,sr) ) 1413 sums_l(k,52,tn) = sums_l(k,52,tn) + pts * w(k,j,i) * & 1414 rho_air_zw(k) * & 1415 waterflux_output_conversion(k) * & 1416 rmask(j,i,sr) * & 1417 flag 1418 sums_l(k,75,tn) = sums_l(k,75,tn) + qc(k,j,i) * & 1419 rmask(j,i,sr) * & 1420 flag 1421 sums_l(k,76,tn) = sums_l(k,76,tn) + prr(k,j,i) * & 1422 rmask(j,i,sr) * & 1423 flag 1331 pts = 0.5_wp * & 1332 ( ( q(k,j,i) - ql(k,j,i) ) - & 1333 hom(k,1,42,sr) + & 1334 ( q(k+1,j,i) - ql(k+1,j,i) ) - & 1335 hom(k+1,1,42,sr) ) 1336 sums_l(k,52,tn) = sums_l(k,52,tn) + pts * w(k,j,i) * & 1337 rho_air_zw(k) * & 1338 waterflux_output_conversion(k) * & 1339 rmask(j,i,sr) * flag 1340 sums_l(k,75,tn) = sums_l(k,75,tn) + qc(k,j,i) * rmask(j,i,sr) * flag 1341 sums_l(k,76,tn) = sums_l(k,76,tn) + prr(k,j,i) * rmask(j,i,sr) * flag 1424 1342 IF ( microphysics_morrison ) THEN 1425 sums_l(k,123,tn) = sums_l(k,123,tn) + nc(k,j,i) * & 1426 rmask(j,i,sr) *& 1427 flag 1343 sums_l(k,123,tn) = sums_l(k,123,tn) + nc(k,j,i) * rmask(j,i,sr) * flag 1428 1344 ENDIF 1429 1345 IF ( microphysics_ice_phase ) THEN 1430 sums_l(k,124,tn) = sums_l(k,124,tn) + ni(k,j,i) * & 1431 rmask(j,i,sr) *& 1432 flag 1433 sums_l(k,125,tn) = sums_l(k,125,tn) + qi(k,j,i) * & 1434 rmask(j,i,sr) *& 1435 flag 1346 sums_l(k,124,tn) = sums_l(k,124,tn) + ni(k,j,i) * rmask(j,i,sr) * flag 1347 sums_l(k,125,tn) = sums_l(k,125,tn) + qi(k,j,i) * rmask(j,i,sr) * flag 1436 1348 ENDIF 1437 1349 1438 1350 IF ( microphysics_seifert ) THEN 1439 sums_l(k,73,tn) = sums_l(k,73,tn) + nr(k,j,i) * & 1440 rmask(j,i,sr) *& 1441 flag 1442 sums_l(k,74,tn) = sums_l(k,74,tn) + qr(k,j,i) * & 1443 rmask(j,i,sr) *& 1444 flag 1351 sums_l(k,73,tn) = sums_l(k,73,tn) + nr(k,j,i) * rmask(j,i,sr) * flag 1352 sums_l(k,74,tn) = sums_l(k,74,tn) + qr(k,j,i) * rmask(j,i,sr) * flag 1445 1353 ENDIF 1446 1354 ENDIF 1447 1355 1448 1356 ELSE 1449 IF( .NOT. ws_scheme_sca .OR.sr /= 0 ) THEN1450 pts = 0.5_wp * ( vpt(k,j,i) - hom(k,1,44,sr) + &1357 IF( .NOT. ws_scheme_sca .OR. sr /= 0 ) THEN 1358 pts = 0.5_wp * ( vpt(k,j,i) - hom(k,1,44,sr) + & 1451 1359 vpt(k+1,j,i) - hom(k+1,1,44,sr) ) 1452 sums_l(k,46,tn) = sums_l(k,46,tn) + pts * w(k,j,i) * & 1453 rho_air_zw(k) * & 1454 heatflux_output_conversion(k) * & 1455 rmask(j,i,sr) * & 1456 flag 1457 ELSE IF ( ws_scheme_sca .AND. sr == 0 ) THEN 1458 sums_l(k,46,tn) = ( ( 1.0_wp + 0.61_wp * & 1459 hom(k,1,41,sr) ) * & 1460 sums_l(k,17,tn) + & 1461 0.61_wp * hom(k,1,4,sr) * & 1462 sums_l(k,49,tn) & 1463 ) * heatflux_output_conversion(k) * & 1464 flag 1360 sums_l(k,46,tn) = sums_l(k,46,tn) + pts * w(k,j,i) * & 1361 rho_air_zw(k) * & 1362 heatflux_output_conversion(k) * & 1363 rmask(j,i,sr) * flag 1364 ELSE IF ( ws_scheme_sca .AND. sr == 0 ) THEN 1365 sums_l(k,46,tn) = ( ( 1.0_wp + 0.61_wp * & 1366 hom(k,1,41,sr) ) * & 1367 sums_l(k,17,tn) + & 1368 0.61_wp * hom(k,1,4,sr) * & 1369 sums_l(k,49,tn) & 1370 ) * heatflux_output_conversion(k) * flag 1465 1371 END IF 1466 1372 END IF … … 1468 1374 ! 1469 1375 !-- Passive scalar flux 1470 IF ( passive_scalar .AND. ( .NOT. ws_scheme_sca & 1471 .OR. sr /= 0 ) ) THEN 1472 pts = 0.5_wp * ( s(k,j,i) - hom(k,1,115,sr) + & 1376 IF ( passive_scalar .AND. ( .NOT. ws_scheme_sca .OR. sr /= 0 ) ) THEN 1377 pts = 0.5_wp * ( s(k,j,i) - hom(k,1,115,sr) + & 1473 1378 s(k+1,j,i) - hom(k+1,1,115,sr) ) 1474 sums_l(k,114,tn) = sums_l(k,114,tn) + pts * w(k,j,i) * & 1475 rmask(j,i,sr) * flag 1379 sums_l(k,114,tn) = sums_l(k,114,tn) + pts * w(k,j,i) * rmask(j,i,sr) * flag 1476 1380 ENDIF 1477 1381 #endif … … 1481 1385 !-- has to be adjusted 1482 1386 !$ACC ATOMIC 1483 sums_l(k,37,tn) = sums_l(k,37,tn) + w(k,j,i) * 0.5_wp * &1484 ( ust**2 + vst**2 + w(k,j,i)**2 )&1485 * rho_air_zw(k)&1486 * momentumflux_output_conversion(k)&1487 * rmask(j,i,sr) * flag1387 sums_l(k,37,tn) = sums_l(k,37,tn) + w(k,j,i) * 0.5_wp * & 1388 ( ust**2 + vst**2 + w(k,j,i)**2 ) & 1389 * rho_air_zw(k) & 1390 * momentumflux_output_conversion(k) & 1391 * rmask(j,i,sr) * flag 1488 1392 ENDDO 1489 1393 ENDDO … … 1505 1409 j = surf_lsm_h%j(m) 1506 1410 1507 IF ( i >= nxl .AND. i <= nxr .AND. & 1508 j >= nys .AND. j <= nyn ) THEN 1411 IF ( i >= nxl .AND. i <= nxr .AND. j >= nys .AND. j <= nyn ) THEN 1509 1412 sums_l(nzb,93,tn) = sums_l(nzb,93,tn) + surf_lsm_h%ghf(m) * rmask(j,i,sr) 1510 1413 sums_l(nzb,94,tn) = sums_l(nzb,94,tn) + surf_lsm_h%qsws_liq(m) * rmask(j,i,sr) … … 1526 1429 j = surf_lsm_h%j(m) 1527 1430 1528 IF ( i >= nxl .AND. i <= nxr .AND. & 1529 j >= nys .AND. j <= nyn ) THEN 1431 IF ( i >= nxl .AND. i <= nxr .AND. j >= nys .AND. j <= nyn ) THEN 1530 1432 1531 1433 DO k = nzb_soil, nzt_soil 1532 sums_l(k,89,tn) = sums_l(k,89,tn) + t_soil_h%var_2d(k,m) & 1533 * rmask(j,i,sr) 1534 sums_l(k,91,tn) = sums_l(k,91,tn) + m_soil_h%var_2d(k,m) & 1535 * rmask(j,i,sr) 1434 sums_l(k,89,tn) = sums_l(k,89,tn) + t_soil_h%var_2d(k,m) * rmask(j,i,sr) 1435 sums_l(k,91,tn) = sums_l(k,91,tn) + m_soil_h%var_2d(k,m) * rmask(j,i,sr) 1536 1436 ENDDO 1537 1437 ENDIF … … 1540 1440 ENDIF 1541 1441 ! 1542 !-- For speed optimization fluxes which have been computed in part directly 1543 !-- inside the WS advection routines are treated seperatly1442 !-- For speed optimization fluxes which have been computed in part directly inside the WS 1443 !-- advection routines are treated seperatly. 1544 1444 !-- Momentum fluxes first: 1545 1445 … … 1553 1453 DO k = nzb, nzt 1554 1454 ! 1555 !-- Flag 23 is used to mask surface fluxes as well as model-top 1556 !-- fluxes, which are added further below. 1557 flag = MERGE( 1.0_wp, 0.0_wp, & 1558 BTEST( wall_flags_total_0(k,j,i), 23 ) ) * & 1559 MERGE( 1.0_wp, 0.0_wp, & 1560 BTEST( wall_flags_total_0(k,j,i), 9 ) ) 1561 1562 ust = 0.5_wp * ( u(k,j,i) - hom(k,1,1,sr) + & 1455 !-- Flag 23 is used to mask surface fluxes as well as model-top fluxes, which are 1456 !-- added further below. 1457 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 23 ) ) * & 1458 MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 9 ) ) 1459 1460 ust = 0.5_wp * ( u(k,j,i) - hom(k,1,1,sr) + & 1563 1461 u(k+1,j,i) - hom(k+1,1,1,sr) ) 1564 vst = 0.5_wp * ( v(k,j,i) - hom(k,1,2,sr) + &1462 vst = 0.5_wp * ( v(k,j,i) - hom(k,1,2,sr) + & 1565 1463 v(k+1,j,i) - hom(k+1,1,2,sr) ) 1566 1464 ! 1567 1465 !-- Momentum flux w*u* 1568 sums_l(k,13,tn) = sums_l(k,13,tn) + 0.5_wp * &1569 ( w(k,j,i-1) + w(k,j,i) ) &1570 * rho_air_zw(k)&1571 * momentumflux_output_conversion(k)&1572 * ust * rmask(j,i,sr) &1466 sums_l(k,13,tn) = sums_l(k,13,tn) + 0.5_wp * & 1467 ( w(k,j,i-1) + w(k,j,i) ) & 1468 * rho_air_zw(k) & 1469 * momentumflux_output_conversion(k) & 1470 * ust * rmask(j,i,sr) & 1573 1471 * flag 1574 1472 ! 1575 1473 !-- Momentum flux w*v* 1576 sums_l(k,15,tn) = sums_l(k,15,tn) + 0.5_wp * & 1577 ( w(k,j-1,i) + w(k,j,i) ) & 1578 * rho_air_zw(k) & 1579 * momentumflux_output_conversion(k) & 1580 * vst * rmask(j,i,sr) & 1474 sums_l(k,15,tn) = sums_l(k,15,tn) + 0.5_wp * ( w(k,j-1,i) + w(k,j,i) ) & 1475 * rho_air_zw(k) & 1476 * momentumflux_output_conversion(k) & 1477 * vst * rmask(j,i,sr) & 1581 1478 * flag 1582 1479 ENDDO … … 1590 1487 DO j = nys, nyn 1591 1488 DO k = nzb, nzt 1592 flag = MERGE( 1.0_wp, 0.0_wp, & 1593 BTEST( wall_flags_total_0(k,j,i), 23 ) ) * & 1594 MERGE( 1.0_wp, 0.0_wp, & 1595 BTEST( wall_flags_total_0(k,j,i), 9 ) ) 1489 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 23 ) ) * & 1490 MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 9 ) ) 1596 1491 ! 1597 1492 !-- Vertical heat flux 1598 sums_l(k,17,tn) = sums_l(k,17,tn) + 0.5_wp * &1599 ( pt(k,j,i) - hom(k,1,4,sr) +&1600 pt(k+1,j,i) - hom(k+1,1,4,sr) )&1601 * rho_air_zw(k)&1602 * heatflux_output_conversion(k)&1603 * w(k,j,i) * rmask(j,i,sr) * flag1493 sums_l(k,17,tn) = sums_l(k,17,tn) + 0.5_wp * & 1494 ( pt(k,j,i) - hom(k,1,4,sr) + & 1495 pt(k+1,j,i) - hom(k+1,1,4,sr) ) & 1496 * rho_air_zw(k) & 1497 * heatflux_output_conversion(k) & 1498 * w(k,j,i) * rmask(j,i,sr) * flag 1604 1499 IF ( humidity ) THEN 1605 pts = 0.5_wp * ( q(k,j,i) - hom(k,1,41,sr) + &1606 q(k+1,j,i) - hom(k+1,1,41,sr) )1607 sums_l(k,49,tn) = sums_l(k,49,tn) + pts * w(k,j,i) * &1608 rho_air_zw(k)* &1609 waterflux_output_conversion(k) *&1610 rmask(j,i,sr)* flag1500 pts = 0.5_wp * ( q(k,j,i) - hom(k,1,41,sr) + & 1501 q(k+1,j,i) - hom(k+1,1,41,sr) ) 1502 sums_l(k,49,tn) = sums_l(k,49,tn) + pts * w(k,j,i) * & 1503 rho_air_zw(k) * & 1504 waterflux_output_conversion(k) * & 1505 rmask(j,i,sr) * flag 1611 1506 ENDIF 1612 1507 IF ( passive_scalar ) THEN 1613 pts = 0.5_wp * ( s(k,j,i) - hom(k,1,115,sr) + & 1614 s(k+1,j,i) - hom(k+1,1,115,sr) ) 1615 sums_l(k,114,tn) = sums_l(k,114,tn) + pts * w(k,j,i) * & 1616 rmask(j,i,sr) * flag 1508 pts = 0.5_wp * ( s(k,j,i) - hom(k,1,115,sr) + & 1509 s(k+1,j,i) - hom(k+1,1,115,sr) ) 1510 sums_l(k,114,tn) = sums_l(k,114,tn) + pts * w(k,j,i) * rmask(j,i,sr) * flag 1617 1511 ENDIF 1618 1512 ENDDO … … 1630 1524 1631 1525 ! 1632 !-- Divergence of vertical flux of resolved scale energy and pressure 1633 !-- flu ctuations as well as flux of pressure fluctuation itself (68).1526 !-- Divergence of vertical flux of resolved scale energy and pressure fluctuations as well as 1527 !-- flux of pressure fluctuation itself (68). 1634 1528 !-- First calculate the products, then the divergence. 1635 1529 !-- Calculation is time consuming. Do it only, if profiles shall be plotted. 1636 IF ( hom(nzb+1,2,55,0) /= 0.0_wp .OR. hom(nzb+1,2,68,0) /= 0.0_wp ) & 1637 THEN 1530 IF ( hom(nzb+1,2,55,0) /= 0.0_wp .OR. hom(nzb+1,2,68,0) /= 0.0_wp ) THEN 1638 1531 sums_ll = 0.0_wp ! local array 1639 1532 … … 1644 1537 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 0 ) ) 1645 1538 1646 sums_ll(k,1) = sums_ll(k,1) + 0.5_wp * w(k,j,i) * ( &1647 ( 0.25_wp * ( u(k,j,i)+u(k+1,j,i)+u(k,j,i+1)+u(k+1,j,i+1) )&1648 - 0.5_wp * ( hom(k,1,1,sr) + hom(k+1,1,1,sr) ) )**2&1649 + ( 0.25_wp * ( v(k,j,i)+v(k+1,j,i)+v(k,j+1,i)+v(k+1,j+1,i) )&1650 - 0.5_wp * ( hom(k,1,2,sr) + hom(k+1,1,2,sr) ) )**2&1651 + w(k,j,i)**2) * flag * rmask(j,i,sr)1652 1653 sums_ll(k,2) = sums_ll(k,2) + 0.5_wp * w(k,j,i) &1654 * ( ( p(k,j,i) + p(k+1,j,i) ) &1655 / momentumflux_output_conversion(k) ) &1539 sums_ll(k,1) = sums_ll(k,1) + 0.5_wp * w(k,j,i) * ( & 1540 ( 0.25_wp * ( u(k,j,i)+u(k+1,j,i)+u(k,j,i+1)+u(k+1,j,i+1) ) & 1541 - 0.5_wp * ( hom(k,1,1,sr) + hom(k+1,1,1,sr) ) )**2 & 1542 + ( 0.25_wp * ( v(k,j,i)+v(k+1,j,i)+v(k,j+1,i)+v(k+1,j+1,i) ) & 1543 - 0.5_wp * ( hom(k,1,2,sr) + hom(k+1,1,2,sr) ) )**2 & 1544 + w(k,j,i)**2 ) * flag * rmask(j,i,sr) 1545 1546 sums_ll(k,2) = sums_ll(k,2) + 0.5_wp * w(k,j,i) & 1547 * ( ( p(k,j,i) + p(k+1,j,i) ) & 1548 / momentumflux_output_conversion(k) ) & 1656 1549 * flag * rmask(j,i,sr) 1657 1550 … … 1677 1570 ! 1678 1571 !-- Divergence of vertical flux of SGS TKE and the flux itself (69) 1679 IF ( hom(nzb+1,2,57,0) /= 0.0_wp .OR. hom(nzb+1,2,69,0) /= 0.0_wp ) & 1680 THEN 1572 IF ( hom(nzb+1,2,57,0) /= 0.0_wp .OR. hom(nzb+1,2,69,0) /= 0.0_wp ) THEN 1681 1573 !$OMP DO 1682 1574 DO i = nxl, nxr … … 1686 1578 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 0 ) ) 1687 1579 1688 sums_l(k,57,tn) = sums_l(k,57,tn) - 0.5_wp * ( &1689 (km(k,j,i)+km(k+1,j,i)) * (e(k+1,j,i)-e(k,j,i)) * ddzu(k+1) &1690 - (km(k-1,j,i)+km(k,j,i)) * (e(k,j,i)-e(k-1,j,i)) * ddzu(k) &1691 ) * ddzw(k) &1580 sums_l(k,57,tn) = sums_l(k,57,tn) - 0.5_wp * ( & 1581 (km(k,j,i)+km(k+1,j,i)) * (e(k+1,j,i)-e(k,j,i)) * ddzu(k+1) & 1582 - (km(k-1,j,i)+km(k,j,i)) * (e(k,j,i)-e(k-1,j,i)) * ddzu(k) & 1583 ) * ddzw(k) & 1692 1584 * flag * rmask(j,i,sr) 1693 1585 1694 sums_l(k,69,tn) = sums_l(k,69,tn) - 0.5_wp * ( & 1695 (km(k,j,i)+km(k+1,j,i)) * (e(k+1,j,i)-e(k,j,i)) * ddzu(k+1) & 1696 ) * flag * rmask(j,i,sr) 1586 sums_l(k,69,tn) = sums_l(k,69,tn) - 0.5_wp * ( & 1587 ( km(k,j,i) + km(k+1,j,i) ) * & 1588 ( e(k+1,j,i) - e(k,j,i) ) * ddzu(k+1) & 1589 ) * flag * rmask(j,i,sr) 1697 1590 1698 1591 ENDDO … … 1716 1609 ! 1717 1610 !-- Subgrid horizontal heat fluxes u"pt", v"pt" 1718 sums_l(k,58,tn) = sums_l(k,58,tn) - 0.5_wp * &1719 ( kh(k,j,i) + kh(k,j,i-1) )&1720 * ( pt(k,j,i-1) - pt(k,j,i) )&1721 * rho_air_zw(k)&1722 * heatflux_output_conversion(k)&1723 * ddx * rmask(j,i,sr) * flag1724 sums_l(k,61,tn) = sums_l(k,61,tn) - 0.5_wp * &1725 ( kh(k,j,i) + kh(k,j-1,i) )&1726 * ( pt(k,j-1,i) - pt(k,j,i) )&1727 * rho_air_zw(k)&1728 * heatflux_output_conversion(k)&1729 * ddy * rmask(j,i,sr) * flag1611 sums_l(k,58,tn) = sums_l(k,58,tn) - 0.5_wp * & 1612 ( kh(k,j,i) + kh(k,j,i-1) ) & 1613 * ( pt(k,j,i-1) - pt(k,j,i) ) & 1614 * rho_air_zw(k) & 1615 * heatflux_output_conversion(k) & 1616 * ddx * rmask(j,i,sr) * flag 1617 sums_l(k,61,tn) = sums_l(k,61,tn) - 0.5_wp * & 1618 ( kh(k,j,i) + kh(k,j-1,i) ) & 1619 * ( pt(k,j-1,i) - pt(k,j,i) ) & 1620 * rho_air_zw(k) & 1621 * heatflux_output_conversion(k) & 1622 * ddy * rmask(j,i,sr) * flag 1730 1623 ! 1731 1624 !-- Resolved horizontal heat fluxes u*pt*, v*pt* 1732 sums_l(k,59,tn) = sums_l(k,59,tn) + & 1733 ( u(k,j,i) - hom(k,1,1,sr) ) & 1734 * 0.5_wp * ( pt(k,j,i-1) - hom(k,1,4,sr) + & 1735 pt(k,j,i) - hom(k,1,4,sr) ) & 1736 * heatflux_output_conversion(k) & 1737 * flag 1738 pts = 0.5_wp * ( pt(k,j-1,i) - hom(k,1,4,sr) + & 1625 sums_l(k,59,tn) = sums_l(k,59,tn) + ( u(k,j,i) - hom(k,1,1,sr) ) & 1626 * 0.5_wp * ( pt(k,j,i-1) - hom(k,1,4,sr) + & 1627 pt(k,j,i) - hom(k,1,4,sr) ) & 1628 * heatflux_output_conversion(k) & 1629 * flag 1630 pts = 0.5_wp * ( pt(k,j-1,i) - hom(k,1,4,sr) + & 1739 1631 pt(k,j,i) - hom(k,1,4,sr) ) 1740 sums_l(k,62,tn) = sums_l(k,62,tn) + & 1741 ( v(k,j,i) - hom(k,1,2,sr) ) & 1742 * 0.5_wp * ( pt(k,j-1,i) - hom(k,1,4,sr) + & 1743 pt(k,j,i) - hom(k,1,4,sr) ) & 1744 * heatflux_output_conversion(k) & 1745 * flag 1632 sums_l(k,62,tn) = sums_l(k,62,tn) + ( v(k,j,i) - hom(k,1,2,sr) ) & 1633 * 0.5_wp * ( pt(k,j-1,i) - hom(k,1,4,sr) + & 1634 pt(k,j,i) - hom(k,1,4,sr) ) & 1635 * heatflux_output_conversion(k) & 1636 * flag 1746 1637 ENDDO 1747 1638 ENDDO … … 1773 1664 ENDIF 1774 1665 1775 fac = ( simulated_time - dt_3d - time_vert(nt) ) & 1776 / ( time_vert(nt+1)-time_vert(nt) ) 1666 fac = ( simulated_time - dt_3d - time_vert(nt) ) / ( time_vert(nt+1)-time_vert(nt) ) 1777 1667 1778 1668 1779 1669 DO k = nzb, nzt 1780 sums_ls_l(k,0) = td_lsa_lpt(k,nt) & 1781 + fac * ( td_lsa_lpt(k,nt+1) - td_lsa_lpt(k,nt) ) 1782 sums_ls_l(k,1) = td_lsa_q(k,nt) & 1783 + fac * ( td_lsa_q(k,nt+1) - td_lsa_q(k,nt) ) 1670 sums_ls_l(k,0) = td_lsa_lpt(k,nt) + fac * ( td_lsa_lpt(k,nt+1) - td_lsa_lpt(k,nt) ) 1671 sums_ls_l(k,1) = td_lsa_q(k,nt) + fac * ( td_lsa_q(k,nt+1) - td_lsa_q(k,nt) ) 1784 1672 ENDDO 1785 1673 … … 1787 1675 sums_ls_l(nzt+1,1) = sums_ls_l(nzt,1) 1788 1676 1789 IF ( large_scale_subsidence .AND.use_subsidence_tendencies ) THEN1677 IF ( large_scale_subsidence .AND. use_subsidence_tendencies ) THEN 1790 1678 1791 1679 DO k = nzb, nzt 1792 sums_ls_l(k,2) = td_sub_lpt(k,nt) + fac * & 1793 ( td_sub_lpt(k,nt+1) - td_sub_lpt(k,nt) ) 1794 sums_ls_l(k,3) = td_sub_q(k,nt) + fac * & 1795 ( td_sub_q(k,nt+1) - td_sub_q(k,nt) ) 1680 sums_ls_l(k,2) = td_sub_lpt(k,nt) + fac * ( td_sub_lpt(k,nt+1) - td_sub_lpt(k,nt) ) 1681 sums_ls_l(k,3) = td_sub_q(k,nt) + fac * ( td_sub_q(k,nt+1) - td_sub_q(k,nt) ) 1796 1682 ENDDO 1797 1683 … … 1806 1692 !$OMP PARALLEL PRIVATE( i, j, k, tn ) 1807 1693 !$ tn = omp_get_thread_num() 1808 IF ( radiation .AND.radiation_scheme == 'rrtmg' ) THEN1694 IF ( radiation .AND. radiation_scheme == 'rrtmg' ) THEN 1809 1695 !$OMP DO 1810 1696 DO i = nxl, nxr … … 1813 1699 flag = MERGE( 1.0_wp, 0.0_wp, BTEST( wall_flags_total_0(k,j,i), 0 ) ) 1814 1700 1815 sums_l(k,100,tn) = sums_l(k,100,tn) + rad_lw_in(k,j,i) & 1816 * rmask(j,i,sr) * flag 1817 sums_l(k,101,tn) = sums_l(k,101,tn) + rad_lw_out(k,j,i) & 1818 * rmask(j,i,sr) * flag 1819 sums_l(k,102,tn) = sums_l(k,102,tn) + rad_sw_in(k,j,i) & 1820 * rmask(j,i,sr) * flag 1821 sums_l(k,103,tn) = sums_l(k,103,tn) + rad_sw_out(k,j,i) & 1822 * rmask(j,i,sr) * flag 1823 sums_l(k,104,tn) = sums_l(k,104,tn) + rad_lw_cs_hr(k,j,i) & 1824 * rmask(j,i,sr) * flag 1825 sums_l(k,105,tn) = sums_l(k,105,tn) + rad_lw_hr(k,j,i) & 1826 * rmask(j,i,sr) * flag 1827 sums_l(k,106,tn) = sums_l(k,106,tn) + rad_sw_cs_hr(k,j,i) & 1828 * rmask(j,i,sr) * flag 1829 sums_l(k,107,tn) = sums_l(k,107,tn) + rad_sw_hr(k,j,i) & 1830 * rmask(j,i,sr) * flag 1701 sums_l(k,100,tn) = sums_l(k,100,tn) + rad_lw_in(k,j,i) * rmask(j,i,sr) * flag 1702 sums_l(k,101,tn) = sums_l(k,101,tn) + rad_lw_out(k,j,i) * rmask(j,i,sr) * flag 1703 sums_l(k,102,tn) = sums_l(k,102,tn) + rad_sw_in(k,j,i) * rmask(j,i,sr) * flag 1704 sums_l(k,103,tn) = sums_l(k,103,tn) + rad_sw_out(k,j,i) * rmask(j,i,sr) * flag 1705 sums_l(k,104,tn) = sums_l(k,104,tn) + rad_lw_cs_hr(k,j,i) * rmask(j,i,sr) * flag 1706 sums_l(k,105,tn) = sums_l(k,105,tn) + rad_lw_hr(k,j,i) * rmask(j,i,sr) * flag 1707 sums_l(k,106,tn) = sums_l(k,106,tn) + rad_sw_cs_hr(k,j,i) * rmask(j,i,sr) * flag 1708 sums_l(k,107,tn) = sums_l(k,107,tn) + rad_sw_hr(k,j,i) * rmask(j,i,sr) * flag 1831 1709 ENDDO 1832 1710 ENDDO … … 1848 1726 sums_l(:,45:pr_palm,i) 1849 1727 IF ( max_pr_user > 0 ) THEN 1850 sums_l(:,pr_palm+1:pr_palm+max_pr_user,0) = &1851 sums_l(:,pr_palm+1:pr_palm+max_pr_user,0) + &1852 sums_l(:,pr_palm+1:pr_palm+max_pr_user,i)1728 sums_l(:,pr_palm+1:pr_palm+max_pr_user,0) = & 1729 sums_l(:,pr_palm+1:pr_palm+max_pr_user,0) + & 1730 sums_l(:,pr_palm+1:pr_palm+max_pr_user,i) 1853 1731 ENDIF 1854 1732 … … 1877 1755 !-- Compute total sum from local sums 1878 1756 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 1879 CALL MPI_ALLREDUCE( sums_l(nzb,1,0), sums(nzb,1), ngp_sums, MPI_REAL, & 1880 MPI_SUM, comm2d, ierr ) 1757 CALL MPI_ALLREDUCE( sums_l(nzb,1,0), sums(nzb,1), ngp_sums, MPI_REAL, MPI_SUM, comm2d, ierr ) 1881 1758 IF ( large_scale_forcing ) THEN 1882 CALL MPI_ALLREDUCE( sums_ls_l(nzb,2), sums(nzb,83), ngp_sums_ls, &1883 MPI_REAL, MPI_SUM,comm2d, ierr )1759 CALL MPI_ALLREDUCE( sums_ls_l(nzb,2), sums(nzb,83), ngp_sums_ls, MPI_REAL, MPI_SUM, & 1760 comm2d, ierr ) 1884 1761 ENDIF 1885 1762 … … 1887 1764 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 1888 1765 DO i = 1, max_pr_cs 1889 CALL MPI_ALLREDUCE( sums_l(nzb,pr_palm+max_pr_user+i,0), &1890 sums(nzb,pr_palm+max_pr_user+i), &1766 CALL MPI_ALLREDUCE( sums_l(nzb,pr_palm+max_pr_user+i,0), & 1767 sums(nzb,pr_palm+max_pr_user+i), & 1891 1768 nzt+2-nzb, MPI_REAL, MPI_SUM, comm2d, ierr ) 1892 1769 ENDDO … … 1910 1787 1911 1788 ! 1912 !-- Final values are obtained by division by the total number of grid points 1913 !-- used for summation.After that store profiles.1914 !-- Check, if statistical regions do contain at least one grid point at the 1915 !-- respective k-level, otherwise division by zero will lead to undefined1916 !-- values, which may cause e.g. problems with NetCDF output1789 !-- Final values are obtained by division by the total number of grid points used for summation. 1790 !-- After that store profiles. 1791 !-- Check, if statistical regions do contain at least one grid point at the respective k-level, 1792 !-- otherwise division by zero will lead to undefined values, which may cause e.g. problems with 1793 !-- NetCDF output. 1917 1794 !-- Profiles: 1918 1795 DO k = nzb, nzt+1 … … 1942 1819 1943 1820 !-- u* and so on 1944 !-- As sums(nzb:nzb+3,pr_palm) are full 2D arrays (us, usws, vsws, ts) whose 1945 !-- size is always ( nx + 1 ) * ( ny + 1 ), defined at the first grid layer 1946 !-- above the topography, they are being divided by ngp_2dh(sr) 1947 sums(nzb:nzb+3,pr_palm) = sums(nzb:nzb+3,pr_palm) / & 1948 ngp_2dh(sr) 1949 sums(nzb+12,pr_palm) = sums(nzb+12,pr_palm) / & ! qs 1950 ngp_2dh(sr) 1951 sums(nzb+13,pr_palm) = sums(nzb+13,pr_palm) / & ! ss 1952 ngp_2dh(sr) 1953 sums(nzb+14,pr_palm) = sums(nzb+14,pr_palm) / & ! surface temperature 1954 ngp_2dh(sr) 1821 !-- As sums(nzb:nzb+3,pr_palm) are full 2D arrays (us, usws, vsws, ts) whose size is always 1822 !-- ( nx + 1 ) * ( ny + 1 ), defined at the first grid layer above the topography, they are 1823 !-- divided by ngp_2dh(sr) 1824 sums(nzb:nzb+3,pr_palm) = sums(nzb:nzb+3,pr_palm) / ngp_2dh(sr) 1825 sums(nzb+12,pr_palm) = sums(nzb+12,pr_palm) / ngp_2dh(sr) ! qs 1826 sums(nzb+13,pr_palm) = sums(nzb+13,pr_palm) / ngp_2dh(sr) ! ss 1827 sums(nzb+14,pr_palm) = sums(nzb+14,pr_palm) / ngp_2dh(sr) ! surface temperature 1828 1955 1829 !-- eges, e* 1956 sums(nzb+4:nzb+5,pr_palm) = sums(nzb+4:nzb+5,pr_palm) / & 1957 ngp_3d(sr) 1830 sums(nzb+4:nzb+5,pr_palm) = sums(nzb+4:nzb+5,pr_palm) / ngp_3d(sr) 1958 1831 !-- Old and new divergence 1959 sums(nzb+9:nzb+10,pr_palm) = sums(nzb+9:nzb+10,pr_palm) / & 1960 ngp_3d_inner(sr) 1832 sums(nzb+9:nzb+10,pr_palm) = sums(nzb+9:nzb+10,pr_palm) / ngp_3d_inner(sr) 1961 1833 1962 1834 !-- User-defined profiles 1963 1835 IF ( max_pr_user > 0 ) THEN 1964 1836 DO k = nzb, nzt+1 1965 sums(k,pr_palm+1:pr_palm+max_pr_user) = & 1966 sums(k,pr_palm+1:pr_palm+max_pr_user) / & 1967 ngp_2dh_s_inner(k,sr) 1968 ENDDO 1969 ENDIF 1970 1971 IF ( air_chemistry ) THEN 1837 sums(k,pr_palm+1:pr_palm+max_pr_user) = sums(k,pr_palm+1:pr_palm+max_pr_user) / & 1838 ngp_2dh_s_inner(k,sr) 1839 ENDDO 1840 ENDIF 1841 1842 IF ( air_chemistry ) THEN 1972 1843 IF ( max_pr_cs > 0 ) THEN 1973 1844 DO k = nzb, nzt+1 1974 sums(k, pr_palm+1:pr_palm+max_pr_user+max_pr_cs) = &1975 sums(k, pr_palm+1:pr_palm+max_pr_user+max_pr_cs) / &1976 ngp_2dh_s_inner(k,sr)1845 sums(k, pr_palm+1:pr_palm+max_pr_user+max_pr_cs) = & 1846 sums(k, pr_palm+1:pr_palm+max_pr_user+max_pr_cs) / & 1847 ngp_2dh_s_inner(k,sr) 1977 1848 ENDDO 1978 1849 ENDIF 1979 1850 ENDIF 1980 1851 1981 IF ( salsa ) THEN1852 IF ( salsa ) THEN 1982 1853 IF ( max_pr_salsa > 0 ) THEN 1983 1854 DO k = nzb, nzt+1 … … 2020 1891 hom(:,1,37,sr) = sums(:,37) ! w*e* 2021 1892 hom(:,1,38,sr) = sums(:,38) ! w*3 2022 hom(:,1,39,sr) = sums(:,38) / ( abs( sums(:,32) ) + 1E-20_wp )**1.5_wp ! Sw1893 hom(:,1,39,sr) = sums(:,38) / ( ABS( sums(:,32) ) + 1E-20_wp )**1.5_wp ! Sw 2023 1894 hom(:,1,40,sr) = sums(:,40) ! p 2024 1895 hom(:,1,45,sr) = sums(:,45) ! w"vpt" … … 2124 1995 hom(:,1,120,sr) = rho_air_zw ! rho_air_zw in Kg/m^3 2125 1996 2126 IF ( kolmogorov_length_scale ) THEN1997 IF ( kolmogorov_length_scale ) THEN 2127 1998 hom(:,1,121,sr) = sums(:,121) * 1E3_wp ! eta in mm 2128 1999 ENDIF … … 2152 2023 ! 2153 2024 !-- Determine the boundary layer height using two different schemes. 2154 !-- First scheme: Starting from the Earth's (Ocean's) surface, look for the 2155 !-- first relative minimum (maximum) of the total heat flux. 2156 !-- The corresponding height is assumed as the boundary layer height, if it 2157 !-- is less than 1.5 times the height where the heat flux becomes negative 2158 !-- (positive) for the first time. Attention: the resolved vertical sensible 2159 !-- heat flux (hom(:,1,17,sr) = w*pt*) is not known at the beginning because 2160 !-- the calculation happens in advec_s_ws which is called after 2161 !-- flow_statistics. Therefore z_i is directly taken from restart data at 2162 !-- the beginning of restart runs. 2163 IF ( TRIM( initializing_actions ) /= 'read_restart_data' .OR. & 2025 !-- First scheme: Starting from the Earth's (Ocean's) surface, look for the first relative 2026 !-- minimum (maximum) of the total heat flux. 2027 !-- The corresponding height is assumed as the boundary layer height, if it is less than 1.5 2028 !-- times the height where the heat flux becomes negative (positive) for the first time. 2029 !-- Attention: the resolved vertical sensible heat flux (hom(:,1,17,sr) = w*pt*) is not known at 2030 !-- the beginning because the calculation happens in advec_s_ws which is called after 2031 !-- flow_statistics. Therefore z_i is directly taken from restart data at the beginning of 2032 !-- restart runs. 2033 IF ( TRIM( initializing_actions ) /= 'read_restart_data' .OR. & 2164 2034 simulated_time_at_begin /= simulated_time ) THEN 2165 2035 … … 2173 2043 height = zw(k) 2174 2044 ENDIF 2175 IF ( hom(k,1,18,sr) < -1.0E-8_wp .AND. & 2176 hom(k-1,1,18,sr) > hom(k,1,18,sr) ) THEN 2045 IF ( hom(k,1,18,sr) < -1.0E-8_wp .AND. hom(k-1,1,18,sr) > hom(k,1,18,sr) ) THEN 2177 2046 IF ( zw(k) < 1.5_wp * height ) THEN 2178 2047 z_i(1) = zw(k) … … 2189 2058 height = zw(k) 2190 2059 ENDIF 2191 IF ( hom(k,1,18,sr) < -1.0E-8_wp .AND. & 2192 hom(k+1,1,18,sr) > hom(k,1,18,sr) ) THEN 2060 IF ( hom(k,1,18,sr) < -1.0E-8_wp .AND. hom(k+1,1,18,sr) > hom(k,1,18,sr) ) THEN 2193 2061 IF ( zw(k) < 1.5_wp * height ) THEN 2194 2062 z_i(1) = zw(k) … … 2202 2070 2203 2071 ! 2204 !-- Second scheme: Gradient scheme from Sullivan et al. (1998), modified 2205 !-- by Uhlenbrock(2006). The boundary layer height is the height with the 2206 !-- maximal local temperature gradient: starting from the second (the 2207 !-- last but one) vertical gridpoint, the local gradient must be at least 2208 !-- 0.2K/100m and greater than the next four gradients. 2072 !-- Second scheme: Gradient scheme from Sullivan et al. (1998), modified by Uhlenbrock(2006). 2073 !-- The boundary layer height is the height with the maximal local temperature gradient: 2074 !-- starting from the second (the last but one) vertical gridpoint, the local gradient must be 2075 !-- at least 0.2K/100m and greater than the next four gradients. 2209 2076 !-- WARNING: The threshold value of 0.2K/100m must be adjusted for the 2210 2077 !-- ocean case! … … 2217 2084 IF ( ocean_mode ) THEN 2218 2085 DO k = nzt+1, nzb+5, -1 2219 IF ( dptdz(k) > dptdz_threshold .AND. &2220 dptdz(k) > dptdz(k-1) .AND. dptdz(k) > dptdz(k-2) .AND. &2086 IF ( dptdz(k) > dptdz_threshold .AND. & 2087 dptdz(k) > dptdz(k-1) .AND. dptdz(k) > dptdz(k-2) .AND. & 2221 2088 dptdz(k) > dptdz(k-3) .AND. dptdz(k) > dptdz(k-4) ) THEN 2222 2089 z_i(2) = zw(k-1) … … 2226 2093 ELSE 2227 2094 DO k = nzb+1, nzt-3 2228 IF ( dptdz(k) > dptdz_threshold .AND. &2229 dptdz(k) > dptdz(k+1) .AND. dptdz(k) > dptdz(k+2) .AND. &2095 IF ( dptdz(k) > dptdz_threshold .AND. & 2096 dptdz(k) > dptdz(k+1) .AND. dptdz(k) > dptdz(k+2) .AND. & 2230 2097 dptdz(k) > dptdz(k+3) .AND. dptdz(k) > dptdz(k+4) ) THEN 2231 2098 z_i(2) = zw(k-1) … … 2241 2108 2242 2109 ! 2243 !-- Determine vertical index which is nearest to the mean surface level 2244 !-- height of the respectivestatistic region2110 !-- Determine vertical index which is nearest to the mean surface level height of the respective 2111 !-- statistic region 2245 2112 DO k = nzb, nzt 2246 2113 IF ( zw(k) >= mean_surface_level_height(sr) ) THEN … … 2251 2118 2252 2119 ! 2253 !-- Computation of both the characteristic vertical velocity and 2254 !-- the characteristic convective boundary layer temperature. 2255 !-- The inversion height entering into the equation is defined with respect 2256 !-- to the mean surface level height of the respective statistic region. 2257 !-- The horizontal average at surface level index + 1 is input for the 2258 !-- average temperature. 2259 IF ( hom(k_surface_level,1,18,sr) > 1.0E-8_wp .AND. z_i(1) /= 0.0_wp )& 2260 THEN 2261 hom(nzb+8,1,pr_palm,sr) = & 2262 ( g / hom(k_surface_level+1,1,4,sr) * & 2263 ( hom(k_surface_level,1,18,sr) / & 2264 ( heatflux_output_conversion(nzb) * rho_air(nzb) ) ) & 2265 * ABS( z_i(1) - mean_surface_level_height(sr) ) )**0.333333333_wp 2120 !-- Computation of both the characteristic vertical velocity and the characteristic convective 2121 !-- boundary layer temperature. 2122 !-- The inversion height entering into the equation is defined with respect to the mean surface 2123 !-- level height of the respective statistic region. 2124 !-- The horizontal average at surface level index + 1 is input for the average temperature. 2125 IF ( hom(k_surface_level,1,18,sr) > 1.0E-8_wp .AND. z_i(1) /= 0.0_wp ) THEN 2126 hom(nzb+8,1,pr_palm,sr) = & 2127 ( g / hom(k_surface_level+1,1,4,sr) * & 2128 ( hom(k_surface_level,1,18,sr) / & 2129 ( heatflux_output_conversion(nzb) * rho_air(nzb) ) ) & 2130 * ABS( z_i(1) - mean_surface_level_height(sr) ) )**0.333333333_wp 2266 2131 ELSE 2267 2132 hom(nzb+8,1,pr_palm,sr) = 0.0_wp … … 2269 2134 2270 2135 ! 2271 !-- Collect the time series quantities. Please note, timeseries quantities 2272 !-- which are collected from horizontally averaged profiles, e.g. wpt 2273 !-- or pt(zp), are treated specially. In case of elevated model surfaces, 2274 !-- index nzb+1 might be within topography and data will be zero. Therefore, 2275 !-- take value for the first atmosphere index, which is topo_min_level+1. 2136 !-- Collect the time series quantities. Please note, timeseries quantities which are collected 2137 !-- from horizontally averaged profiles, e.g. wpt or pt(zp), are treated specially. In case of 2138 !-- elevated model surfaces, index nzb+1 might be within topography and data will be zero. 2139 !-- Therefore, take value for the first atmosphere index, which is topo_min_level+1. 2276 2140 ts_value(1,sr) = hom(nzb+4,1,pr_palm,sr) ! E 2277 2141 ts_value(2,sr) = hom(nzb+5,1,pr_palm,sr) ! E* -
palm/trunk/SOURCE/global_min_max.f90
r4429 r4646 1 !> @file global_min_max.f90 2 !------------------------------------------------------------------------------! 1 !--------------------------------------------------------------------------------------------------! 3 2 ! This file is part of the PALM model system. 4 3 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 4 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 5 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 6 ! (at your option) any later version. 7 ! 8 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 9 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 10 ! Public License for more details. 11 ! 12 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 13 ! <http://www.gnu.org/licenses/>. 16 14 ! 17 15 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !16 !--------------------------------------------------------------------------------------------------! 19 17 ! 20 18 ! Current revisions: 21 19 ! ------------------ 22 ! 23 ! 20 ! 21 ! 24 22 ! Former revisions: 25 23 ! ----------------- 26 24 ! $Id$ 25 ! file re-formatted to follow the PALM coding standard 26 ! 27 ! 4429 2020-02-27 15:24:30Z raasch 27 28 ! bugfix: cpp-directives added for serial mode 28 ! 29 ! 29 30 ! 4360 2020-01-07 11:25:50Z suehring 30 31 ! OpenACC support added 31 ! 32 ! 32 33 ! 4182 2019-08-22 15:20:23Z scharf 33 34 ! Corrected "Former revisions" section 34 ! 35 ! 35 36 ! 3655 2019-01-07 16:51:22Z knoop 36 37 ! Corrected "Former revisions" section … … 43 44 ! ------------ 44 45 !> Determine the array minimum/maximum and the corresponding indices. 45 !------------------------------------------------------------------------------ !46 SUBROUTINE global_min_max( i1, i2, j1, j2, k1, k2, ar, mode, offset, value, &47 value _ijk, value1, value1_ijk )48 49 50 USE indices, &46 !--------------------------------------------------------------------------------------------------! 47 SUBROUTINE global_min_max( i1, i2, j1, j2, k1, k2, ar, mode, offset, value, value_ijk, value1, & 48 value1_ijk ) 49 50 51 USE indices, & 51 52 ONLY: nbgp, ny, nx 52 53 53 54 USE kinds 54 55 55 56 USE pegrid 56 57 … … 72 73 INTEGER(iwp) :: k1 !< 73 74 INTEGER(iwp) :: k2 !< 74 INTEGER(iwp) :: fmax_ijk(3) !<75 INTEGER(iwp) :: fmax_ijk_l(3) !<76 INTEGER(iwp) :: fmin_ijk(3) !<77 INTEGER(iwp) :: fmin_ijk_l(3) !<78 75 INTEGER(iwp) :: value_ijk(3) !< 79 80 INTEGER(iwp), OPTIONAL :: value1_ijk(3) !< 81 82 REAL(wp) :: offset !< 83 REAL(wp) :: value !< 76 77 INTEGER(iwp), DIMENSION(3) :: fmax_ijk !< 78 INTEGER(iwp), DIMENSION(3) :: fmax_ijk_l !< 79 INTEGER(iwp), DIMENSION(3) :: fmin_ijk !< 80 INTEGER(iwp), DIMENSION(3) :: fmin_ijk_l !< 81 82 INTEGER(iwp), DIMENSION(3), OPTIONAL :: value1_ijk !< 83 84 REAL(wp) :: offset !< 85 REAL(wp) :: value !< 86 REAL(wp), OPTIONAL :: value1 !< 87 84 88 REAL(wp) :: ar(i1:i2,j1:j2,k1:k2) !< 85 89 86 90 #if defined( __ibm ) 87 91 REAL(sp) :: fmax(2) !< … … 89 93 REAL(sp) :: fmin(2) !< 90 94 REAL(sp) :: fmin_l(2) !< 91 ! on 32bit-machines MPI_2REAL must not be replaced 95 ! on 32bit-machines MPI_2REAL must not be replaced 92 96 ! by MPI_2DOUBLE_PRECISION 93 97 #else 94 REAL(wp) :: fmax(2) !< 95 REAL(wp) :: fmax_l(2) !< 96 REAL(wp) :: fmin(2) !< 97 REAL(wp) :: fmin_l(2) !< 98 #endif 98 REAL(wp), DIMENSION(2) :: fmax !< 99 REAL(wp), DIMENSION(2) :: fmax_l !< 100 REAL(wp), DIMENSION(2) :: fmin !< 101 REAL(wp), DIMENSION(2) :: fmin_l !< 102 #endif 103 99 104 #if defined( _OPENACC ) 105 INTEGER(iwp) :: count_eq !< counter for locations of maximum 100 106 REAL(wp) :: red !< scalar for reduction with OpenACC 101 INTEGER(iwp) :: count_eq !< counter for locations of maximum 102 #endif 103 REAL(wp), OPTIONAL :: value1 !< 107 #endif 104 108 105 109 … … 119 123 fmin_l(2) = myid 120 124 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 121 CALL MPI_ALLREDUCE( fmin_l, fmin, 1, MPI_2REAL, MPI_MINLOC, comm2d, & 122 ierr ) 125 CALL MPI_ALLREDUCE( fmin_l, fmin, 1, MPI_2REAL, MPI_MINLOC, comm2d, ierr ) 123 126 124 127 ! … … 127 130 IF ( id_fmin /= 0 ) THEN 128 131 IF ( myid == 0 ) THEN 129 CALL MPI_RECV( fmin_ijk, 3, MPI_INTEGER, id_fmin, 0, comm2d, & 130 status, ierr ) 132 CALL MPI_RECV( fmin_ijk, 3, MPI_INTEGER, id_fmin, 0, comm2d, status, ierr ) 131 133 ELSEIF ( myid == id_fmin ) THEN 132 134 CALL MPI_SEND( fmin_ijk_l, 3, MPI_INTEGER, 0, 0, comm2d, ierr ) … … 160 162 fmax_l(2) = myid 161 163 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 162 CALL MPI_ALLREDUCE( fmax_l, fmax, 1, MPI_2REAL, MPI_MAXLOC, comm2d, & 163 ierr ) 164 CALL MPI_ALLREDUCE( fmax_l, fmax, 1, MPI_2REAL, MPI_MAXLOC, comm2d, ierr ) 164 165 165 166 ! … … 168 169 IF ( id_fmax /= 0 ) THEN 169 170 IF ( myid == 0 ) THEN 170 CALL MPI_RECV( fmax_ijk, 3, MPI_INTEGER, id_fmax, 0, comm2d, & 171 status, ierr ) 171 CALL MPI_RECV( fmax_ijk, 3, MPI_INTEGER, id_fmax, 0, comm2d, status, ierr ) 172 172 ELSEIF ( myid == id_fmax ) THEN 173 173 CALL MPI_SEND( fmax_ijk_l, 3, MPI_INTEGER, 0, 0, comm2d, ierr ) … … 177 177 ENDIF 178 178 ! 179 !-- send the indices of the just determined array maximum to other PEs179 !-- Send the indices of the just determined array maximum to other PEs 180 180 CALL MPI_BCAST( fmax_ijk, 3, MPI_INTEGER, 0, comm2d, ierr ) 181 181 #else … … 226 226 IF ( count_eq == 1 ) THEN 227 227 ! 228 !-- We found a single maximum element and correctly got its position. Transfer its 229 !-- value tohandle the negative case correctly.228 !-- We found a single maximum element and correctly got its position. Transfer its value to 229 !-- handle the negative case correctly. 230 230 !$ACC UPDATE HOST(ar(fmax_ijk_l(1):fmax_ijk_l(1),fmax_ijk_l(2),fmax_ijk_l(3))) 231 231 ELSE … … 257 257 #if defined( _OPENACC ) 258 258 ! 259 !-- 259 !-- Close ELSE case from above 260 260 ENDIF 261 261 #endif … … 263 263 ! 264 264 !-- Set a flag in case that the determined value is negative. 265 !-- A constant offset has to be subtracted in order to handle the special 266 !-- case i=0 correctly 265 !-- A constant offset has to be subtracted in order to handle the special case i=0 correctly. 267 266 IF ( ar(fmax_ijk_l(1),fmax_ijk_l(2),fmax_ijk_l(3)) < 0.0_wp ) THEN 268 267 fmax_ijk_l(1) = -fmax_ijk_l(1) - 10 … … 272 271 fmax_l(2) = myid 273 272 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 274 CALL MPI_ALLREDUCE( fmax_l, fmax, 1, MPI_2REAL, MPI_MAXLOC, comm2d, & 275 ierr ) 273 CALL MPI_ALLREDUCE( fmax_l, fmax, 1, MPI_2REAL, MPI_MAXLOC, comm2d, ierr ) 276 274 277 275 ! … … 280 278 IF ( id_fmax /= 0 ) THEN 281 279 IF ( myid == 0 ) THEN 282 CALL MPI_RECV( fmax_ijk, 3, MPI_INTEGER, id_fmax, 0, comm2d, & 283 status, ierr ) 280 CALL MPI_RECV( fmax_ijk, 3, MPI_INTEGER, id_fmax, 0, comm2d, status, ierr ) 284 281 ELSEIF ( myid == id_fmax ) THEN 285 282 CALL MPI_SEND( fmax_ijk_l, 3, MPI_INTEGER, 0, 0, comm2d, ierr ) … … 311 308 DO j = j1, j2 312 309 ! 313 !-- Attention: the lowest gridpoint is excluded here, because there 314 !-- --------- is no advection at nzb=0 and mode 'absoff' is only315 !-- used for calculating u,v extrema for CFL-criteria310 !-- Attention: the lowest gridpoint is excluded here, because there is no advection at 311 !-- ---------- nzb=0 and mode 'absoff' is only used for calculating u,v extrema for 312 !-- CFL-criteria. 316 313 DO i = i1+1, i2 317 314 IF ( ABS( ar(i,j,k) - offset ) > fmax_l(1) ) THEN … … 327 324 ! 328 325 !-- Set a flag in case that the determined value is negative. 329 !-- A constant offset has to be subtracted in order to handle the special 330 !-- case i=0 correctly 326 !-- A constant offset has to be subtracted in order to handle the special case i=0 correctly. 331 327 IF ( ar(fmax_ijk_l(1),fmax_ijk_l(2),fmax_ijk_l(3)) < 0.0_wp ) THEN 332 328 fmax_ijk_l(1) = -fmax_ijk_l(1) - 10 … … 336 332 fmax_l(2) = myid 337 333 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 338 CALL MPI_ALLREDUCE( fmax_l, fmax, 1, MPI_2REAL, MPI_MAXLOC, comm2d, & 339 ierr ) 334 CALL MPI_ALLREDUCE( fmax_l, fmax, 1, MPI_2REAL, MPI_MAXLOC, comm2d, ierr ) 340 335 341 336 ! … … 344 339 IF ( id_fmax /= 0 ) THEN 345 340 IF ( myid == 0 ) THEN 346 CALL MPI_RECV( fmax_ijk, 3, MPI_INTEGER, id_fmax, 0, comm2d, & 347 status, ierr ) 341 CALL MPI_RECV( fmax_ijk, 3, MPI_INTEGER, id_fmax, 0, comm2d, status, ierr ) 348 342 ELSEIF ( myid == id_fmax ) THEN 349 343 CALL MPI_SEND( fmax_ijk_l, 3, MPI_INTEGER, 0, 0, comm2d, ierr ) -
palm/trunk/SOURCE/gust_mod.f90
r4535 r4646 1 1 !> @file gust_mod.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 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 2 !--------------------------------------------------------------------------------------------------! 3 ! This file is part of the PALM model system. 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !17 !--------------------------------------------------------------------------------------------------! 19 18 ! 20 19 ! Current revisions: 21 20 ! ----------------- 22 ! 23 ! 21 ! 22 ! 24 23 ! Former revisions: 25 24 ! ----------------- 26 25 ! $Id$ 26 ! file re-formatted to follow the PALM coding standard 27 ! 28 ! 4535 2020-05-15 12:07:23Z raasch 27 29 ! bugfix for restart data format query 28 ! 30 ! 29 31 ! 4517 2020-05-03 14:29:30Z raasch 30 32 ! added restart with MPI-IO for reading local arrays 31 ! 33 ! 32 34 ! 4495 2020-04-13 20:11:20Z raasch 33 35 ! restart data handling with MPI-IO added 34 ! 36 ! 35 37 ! 4360 2020-01-07 11:25:50Z suehring 36 ! CASE statement for dummy variable u2_av in gust_rrd_local changed to avoid 37 ! unintended interdependencies with user-defined variables38 ! 38 ! CASE statement for dummy variable u2_av in gust_rrd_local changed to avoid unintended 39 ! interdependencies with user-defined variables 40 ! 39 41 ! 3837 2019-03-28 16:55:58Z knoop 40 42 ! unused variable for file index removed from rrd-subroutines parameter list 41 ! 43 ! 42 44 ! 3725 2019-02-07 10:11:02Z raasch 43 45 ! dummy statement modified to avoid compiler warnings about unused variables 44 ! 46 ! 45 47 ! 3685 2019-01-21 01:02:11Z knoop 46 48 ! Some interface calls moved to module_interface + cleanup 47 ! 49 ! 48 50 ! 3665 2019-01-10 08:28:24Z raasch 49 51 ! dummy statements added to avoid compiler warnings about unused variables 50 ! 52 ! 51 53 ! 3655 2019-01-07 16:51:22Z knoop 52 54 ! Bugfix: domain bounds of local_pf corrected 53 ! 54 ! 55 ! 56 ! 55 57 ! Interfaces concerning data output updated 56 ! 57 ! 58 ! 59 ! 58 60 ! renamed gust_par to gust_parameters 59 ! 60 ! 61 ! 62 ! 61 63 ! Initial interface definition 62 64 ! 63 ! 65 ! 64 66 ! Description: 65 67 ! ------------ … … 67 69 !> 68 70 !> @todo This is just a dummy module. The actual module ist not released yet. 69 !------------------------------------------------------------------------------ !71 !--------------------------------------------------------------------------------------------------! 70 72 MODULE gust_mod 71 73 … … 73 75 ONLY: restart_data_format_output 74 76 75 USE indices, &77 USE indices, & 76 78 ONLY: nxl, nxlg, nxr, nxrg, nys, nysg, nyn, nyng, nzb, nzt 77 79 … … 94 96 ! 95 97 !-- Public functions 96 PUBLIC &97 gust_parin, &98 gust_check_parameters, &99 gust_check_data_output_pr, &100 gust_check_data_output, &101 gust_init_arrays, &102 gust_init, &103 gust_define_netcdf_grid, &104 gust_header, &105 gust_actions, &106 gust_prognostic_equations, &107 gust_swap_timelevel, &108 gust_3d_data_averaging, &109 gust_data_output_2d, &110 gust_data_output_3d, &111 gust_statistics, &112 gust_rrd_global, &113 gust_wrd_global, &114 gust_rrd_local, &98 PUBLIC & 99 gust_parin, & 100 gust_check_parameters, & 101 gust_check_data_output_pr, & 102 gust_check_data_output, & 103 gust_init_arrays, & 104 gust_init, & 105 gust_define_netcdf_grid, & 106 gust_header, & 107 gust_actions, & 108 gust_prognostic_equations, & 109 gust_swap_timelevel, & 110 gust_3d_data_averaging, & 111 gust_data_output_2d, & 112 gust_data_output_3d, & 113 gust_statistics, & 114 gust_rrd_global, & 115 gust_wrd_global, & 116 gust_rrd_local, & 115 117 gust_wrd_local 116 118 ! 117 119 !-- Public parameters, constants and initial values 118 PUBLIC &120 PUBLIC & 119 121 gust_module_enabled 120 122 … … 203 205 204 206 205 !------------------------------------------------------------------------------ !207 !--------------------------------------------------------------------------------------------------! 206 208 ! Description: 207 209 ! ------------ 208 210 !> Parin for &gust_parameters for gust module 209 !------------------------------------------------------------------------------ !211 !--------------------------------------------------------------------------------------------------! 210 212 SUBROUTINE gust_parin 211 213 … … 215 217 CHARACTER (LEN=80) :: line !< dummy string that contains the current line of the parameter file 216 218 217 NAMELIST /gust_parameters/ &219 NAMELIST /gust_parameters/ & 218 220 gust_module_enabled 219 221 … … 240 242 241 243 242 !------------------------------------------------------------------------------ !244 !--------------------------------------------------------------------------------------------------! 243 245 ! Description: 244 246 ! ------------ 245 247 !> Check parameters routine for gust module 246 !------------------------------------------------------------------------------ !248 !--------------------------------------------------------------------------------------------------! 247 249 SUBROUTINE gust_check_parameters 248 250 … … 254 256 255 257 256 !------------------------------------------------------------------------------ !258 !--------------------------------------------------------------------------------------------------! 257 259 ! Description: 258 260 ! ------------ 259 261 !> Check data output of profiles for gust module 260 !------------------------------------------------------------------------------ !262 !--------------------------------------------------------------------------------------------------! 261 263 SUBROUTINE gust_check_data_output_pr( variable, var_count, unit, dopr_unit ) 262 264 … … 264 266 IMPLICIT NONE 265 267 268 CHARACTER (LEN=*) :: dopr_unit !< local value of dopr_unit 266 269 CHARACTER (LEN=*) :: unit !< 267 270 CHARACTER (LEN=*) :: variable !< 268 CHARACTER (LEN=*) :: dopr_unit !< local value of dopr_unit269 271 270 272 INTEGER(iwp) :: var_count !< … … 276 278 END SUBROUTINE gust_check_data_output_pr 277 279 278 !------------------------------------------------------------------------------ !280 !--------------------------------------------------------------------------------------------------! 279 281 ! Description: 280 282 ! ------------ 281 283 !> Check data output for gust module 282 !------------------------------------------------------------------------------ !284 !--------------------------------------------------------------------------------------------------! 283 285 SUBROUTINE gust_check_data_output( var, unit ) 284 286 … … 296 298 297 299 298 !------------------------------------------------------------------------------ !300 !--------------------------------------------------------------------------------------------------! 299 301 ! Description: 300 302 ! ------------ 301 303 !> Allocate gust module arrays and define pointers 302 !------------------------------------------------------------------------------ !304 !--------------------------------------------------------------------------------------------------! 303 305 SUBROUTINE gust_init_arrays 304 306 … … 310 312 311 313 312 !------------------------------------------------------------------------------ !314 !--------------------------------------------------------------------------------------------------! 313 315 ! Description: 314 316 ! ------------ 315 317 !> Initialization of the gust module 316 !------------------------------------------------------------------------------ !318 !--------------------------------------------------------------------------------------------------! 317 319 SUBROUTINE gust_init 318 320 … … 324 326 325 327 326 !------------------------------------------------------------------------------ !328 !--------------------------------------------------------------------------------------------------! 327 329 ! 328 330 ! Description: … … 330 332 !> Subroutine defining appropriate grid for netcdf variables. 331 333 !> It is called out from subroutine netcdf. 332 !------------------------------------------------------------------------------ !334 !--------------------------------------------------------------------------------------------------! 333 335 SUBROUTINE gust_define_netcdf_grid( var, found, grid_x, grid_y, grid_z ) 334 336 … … 336 338 IMPLICIT NONE 337 339 338 CHARACTER (LEN=*), INTENT(IN) :: var !<339 LOGICAL, INTENT(IN) :: found !<340 340 CHARACTER (LEN=*), INTENT(IN) :: grid_x !< 341 341 CHARACTER (LEN=*), INTENT(IN) :: grid_y !< 342 342 CHARACTER (LEN=*), INTENT(IN) :: grid_z !< 343 CHARACTER (LEN=*), INTENT(IN) :: var !< 344 345 LOGICAL, INTENT(IN) :: found !< 343 346 344 347 ! … … 349 352 350 353 351 !------------------------------------------------------------------------------ !354 !--------------------------------------------------------------------------------------------------! 352 355 ! Description: 353 356 ! ------------ 354 357 !> Header output for gust module 355 !------------------------------------------------------------------------------ !358 !--------------------------------------------------------------------------------------------------! 356 359 SUBROUTINE gust_header ( io ) 357 360 … … 368 371 369 372 370 !------------------------------------------------------------------------------ !373 !--------------------------------------------------------------------------------------------------! 371 374 ! Description: 372 375 ! ------------ 373 376 !> Call for all grid points 374 !------------------------------------------------------------------------------ !377 !--------------------------------------------------------------------------------------------------! 375 378 SUBROUTINE gust_actions( location ) 376 379 … … 387 390 388 391 389 !------------------------------------------------------------------------------ !392 !--------------------------------------------------------------------------------------------------! 390 393 ! Description: 391 394 ! ------------ 392 395 !> Call for grid point i,j 393 !------------------------------------------------------------------------------ !396 !--------------------------------------------------------------------------------------------------! 394 397 SUBROUTINE gust_actions_ij( i, j, location ) 395 398 … … 409 412 410 413 411 !------------------------------------------------------------------------------ !414 !--------------------------------------------------------------------------------------------------! 412 415 ! Description: 413 416 ! ------------ 414 417 !> Call for all grid points 415 !------------------------------------------------------------------------------ !418 !--------------------------------------------------------------------------------------------------! 416 419 SUBROUTINE gust_prognostic_equations() 417 420 … … 423 426 424 427 425 !------------------------------------------------------------------------------ !428 !--------------------------------------------------------------------------------------------------! 426 429 ! Description: 427 430 ! ------------ 428 431 !> Call for grid point i,j 429 !------------------------------------------------------------------------------ !432 !--------------------------------------------------------------------------------------------------! 430 433 SUBROUTINE gust_prognostic_equations_ij( i, j, i_omp_start, tn ) 431 434 432 435 433 436 INTEGER(iwp), INTENT(IN) :: i !< grid index in x-direction 437 INTEGER(iwp), INTENT(IN) :: i_omp_start !< first loop index of i-loop in prognostic_equations 434 438 INTEGER(iwp), INTENT(IN) :: j !< grid index in y-direction 435 INTEGER(iwp), INTENT(IN) :: i_omp_start !< first loop index of i-loop in prognostic_equations436 439 INTEGER(iwp), INTENT(IN) :: tn !< task number of openmp task 437 440 … … 443 446 444 447 445 !------------------------------------------------------------------------------ !448 !--------------------------------------------------------------------------------------------------! 446 449 ! Description: 447 450 ! ------------ 448 451 !> Swapping of timelevels 449 !------------------------------------------------------------------------------ !452 !--------------------------------------------------------------------------------------------------! 450 453 SUBROUTINE gust_swap_timelevel ( mod_count ) 451 454 … … 462 465 463 466 464 !------------------------------------------------------------------------------ !467 !--------------------------------------------------------------------------------------------------! 465 468 ! 466 469 ! Description: 467 470 ! ------------ 468 471 !> Subroutine for averaging 3D data 469 !------------------------------------------------------------------------------ !472 !--------------------------------------------------------------------------------------------------! 470 473 SUBROUTINE gust_3d_data_averaging( mode, variable ) 471 474 … … 474 477 475 478 CHARACTER (LEN=*) :: mode !< 476 CHARACTER (LEN=*) :: variable !<479 CHARACTER (LEN=*) :: variable !< 477 480 478 481 ! … … 482 485 END SUBROUTINE gust_3d_data_averaging 483 486 484 !------------------------------------------------------------------------------ !487 !--------------------------------------------------------------------------------------------------! 485 488 ! 486 489 ! Description: 487 490 ! ------------ 488 491 !> Subroutine defining 2D output variables 489 !------------------------------------------------------------------------------ !490 SUBROUTINE gust_data_output_2d( av, variable, found, grid, mode, local_pf, &491 two_d, nzb_do,nzt_do, fill_value )492 !--------------------------------------------------------------------------------------------------! 493 SUBROUTINE gust_data_output_2d( av, variable, found, grid, mode, local_pf, two_d, nzb_do, & 494 nzt_do, fill_value ) 492 495 493 496 … … 495 498 496 499 CHARACTER (LEN=*), INTENT(INOUT) :: grid !< name of vertical grid 497 CHARACTER (LEN=*), INTENT(IN) :: mode !< either 'xy', 'xz' or 'yz'498 CHARACTER (LEN=*), INTENT(IN) :: variable !< name of variable500 CHARACTER (LEN=*), INTENT(IN) :: mode !< either 'xy', 'xz' or 'yz' 501 CHARACTER (LEN=*), INTENT(IN) :: variable !< name of variable 499 502 500 503 INTEGER(iwp), INTENT(IN) :: av !< flag for (non-)average output … … 508 511 509 512 REAL(wp), DIMENSION(nxl:nxr,nys:nyn,nzb_do:nzt_do), INTENT(INOUT) :: local_pf !< local 510 !< array to which output data is resorted to513 !< array to which output data is resorted to 511 514 512 515 ! … … 519 522 520 523 521 !------------------------------------------------------------------------------ !524 !--------------------------------------------------------------------------------------------------! 522 525 ! 523 526 ! Description: 524 527 ! ------------ 525 528 !> Subroutine defining 3D output variables 526 !------------------------------------------------------------------------------ !529 !--------------------------------------------------------------------------------------------------! 527 530 SUBROUTINE gust_data_output_3d( av, variable, found, local_pf, fill_value, nzb_do, nzt_do ) 528 531 … … 550 553 551 554 552 !------------------------------------------------------------------------------ !555 !--------------------------------------------------------------------------------------------------! 553 556 ! Description: 554 557 ! ------------ 555 558 !> This routine computes profile and timeseries data for the gust module. 556 !------------------------------------------------------------------------------ !559 !--------------------------------------------------------------------------------------------------! 557 560 SUBROUTINE gust_statistics( mode, sr, tn, dots_max ) 558 561 … … 573 576 574 577 575 !------------------------------------------------------------------------------ !578 !--------------------------------------------------------------------------------------------------! 576 579 ! Description: 577 580 ! ------------ 578 581 !> Read module-specific global restart data (Fortran binary format). 579 !------------------------------------------------------------------------------ !582 !--------------------------------------------------------------------------------------------------! 580 583 SUBROUTINE gust_rrd_global_ftn( found ) 581 584 582 585 583 USE control_parameters, &586 USE control_parameters, & 584 587 ONLY: length, restart_string 585 588 … … 608 611 609 612 610 !------------------------------------------------------------------------------ !613 !--------------------------------------------------------------------------------------------------! 611 614 ! Description: 612 615 ! ------------ 613 616 !> Read module-specific global restart data (MPI-IO). 614 !------------------------------------------------------------------------------ !617 !--------------------------------------------------------------------------------------------------! 615 618 SUBROUTINE gust_rrd_global_mpi 616 619 … … 622 625 623 626 624 !------------------------------------------------------------------------------ !627 !--------------------------------------------------------------------------------------------------! 625 628 ! Description: 626 629 ! ------------ 627 630 !> Read module-specific local restart data arrays (Fortran binary format). 628 !------------------------------------------------------------------------------! 629 SUBROUTINE gust_rrd_local_ftn( k, nxlf, nxlc, nxl_on_file, nxrf, nxrc, & 630 nxr_on_file, nynf, nync, nyn_on_file, nysf, & 631 nysc, nys_on_file, tmp_2d, tmp_3d, found ) 631 !--------------------------------------------------------------------------------------------------! 632 SUBROUTINE gust_rrd_local_ftn( k, nxlf, nxlc, nxl_on_file, nxrf, nxrc, nxr_on_file, nynf, nync,& 633 nyn_on_file, nysf, nysc, nys_on_file, tmp_2d, tmp_3d, found ) 632 634 633 635 … … 696 698 697 699 698 !------------------------------------------------------------------------------ !700 !--------------------------------------------------------------------------------------------------! 699 701 ! Description: 700 702 ! ------------ 701 703 !> Read module-specific local restart data arrays (MPI-IO). 702 !------------------------------------------------------------------------------ !704 !--------------------------------------------------------------------------------------------------! 703 705 SUBROUTINE gust_rrd_local_mpi 704 706 … … 709 711 710 712 711 !------------------------------------------------------------------------------ !713 !--------------------------------------------------------------------------------------------------! 712 714 ! Description: 713 715 ! ------------ 714 716 !> This routine writes the respective restart data for the gust module. 715 !------------------------------------------------------------------------------ !717 !--------------------------------------------------------------------------------------------------! 716 718 SUBROUTINE gust_wrd_global 717 719 … … 742 744 743 745 744 !------------------------------------------------------------------------------ !746 !--------------------------------------------------------------------------------------------------! 745 747 ! Description: 746 748 ! ------------ 747 749 !> This routine writes the respective restart data for the gust module. 748 !------------------------------------------------------------------------------ !750 !--------------------------------------------------------------------------------------------------! 749 751 SUBROUTINE gust_wrd_local 750 752 -
palm/trunk/SOURCE/header.f90
r4586 r4646 1 1 ! !> @file header.f90 2 !------------------------------------------------------------------------------ !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !17 !--------------------------------------------------------------------------------------------------! 19 18 ! 20 19 ! Current revisions: … … 25 24 ! ----------------- 26 25 ! $Id$ 26 ! file re-formatted to follow the PALM coding standard 27 ! 28 ! 4586 2020-07-01 16:16:43Z gronemeier 27 29 ! Renamed rif to Ri (gradient Richardson number, 1D model) 28 30 ! and zeta (= z_mo / ol, stability parameter, 3D model) … … 67 69 ! 68 70 ! 4069 2019-07-01 14:05:51Z Giersch 69 ! Masked output running index mid has been introduced as a local variable to 70 ! avoid runtime error(Loop variable has been modified) in time_integration71 ! Masked output running index mid has been introduced as a local variable to avoid runtime error 72 ! (Loop variable has been modified) in time_integration 71 73 ! 72 74 ! 4023 2019-06-12 13:20:01Z maronga … … 86 88 ! ------------ 87 89 !> Writing a header with all important information about the current run. 88 !> This subroutine is called three times, two times at the beginning 89 !> (writing information on files RUN_CONTROL and HEADER) and one time at the90 !> end of the run, then writingadditional information about CPU-usage on file90 !> This subroutine is called three times, two times at the beginning (writing information on 91 !> files RUN_CONTROL and HEADER) and one time at the end of the run, then writing 92 !> additional information about CPU-usage on file 91 93 !> header. 92 !----------------------------------------------------------------------------- !94 !--------------------------------------------------------------------------------------------------! 93 95 SUBROUTINE header 94 96 95 97 96 USE arrays_3d, &98 USE arrays_3d, & 97 99 ONLY: pt_init, q_init, s_init, sa_init, ug, vg, w_subs, zu, zw 98 100 99 USE basic_constants_and_equations_mod, &101 USE basic_constants_and_equations_mod, & 100 102 ONLY: g, kappa 101 103 102 USE bulk_cloud_model_mod, &104 USE bulk_cloud_model_mod, & 103 105 ONLY: bulk_cloud_model 104 106 105 107 USE control_parameters 106 108 107 USE cpulog, &109 USE cpulog, & 108 110 ONLY: log_point_s 109 111 110 USE grid_variables, &112 USE grid_variables, & 111 113 ONLY: dx, dy 112 114 113 USE indices, &114 ONLY: mg_loc_ind, nnx, nny, nnz, nx, ny, nxl_mg, nxr_mg, nyn_mg, &115 nys_mg, nzt, nzt_mg,topo_top_ind115 USE indices, & 116 ONLY: mg_loc_ind, nnx, nny, nnz, nx, ny, nxl_mg, nxr_mg, nyn_mg, nys_mg, nzt, nzt_mg, & 117 topo_top_ind 116 118 117 119 USE kinds 118 120 119 USE model_1d_mod, &121 USE model_1d_mod, & 120 122 ONLY: damp_level_ind_1d, dt_pr_1d, dt_run_control_1d, end_time_1d 121 123 122 USE module_interface, &124 USE module_interface, & 123 125 ONLY: module_interface_header 124 126 125 USE netcdf_interface, &127 USE netcdf_interface, & 126 128 ONLY: netcdf_data_format, netcdf_data_format_string, netcdf_deflate 127 129 128 USE ocean_mod, & 129 ONLY: ibc_sa_t, prho_reference, sa_surface, & 130 sa_vertical_gradient, sa_vertical_gradient_level, & 131 sa_vertical_gradient_level_ind 132 133 USE palm_date_time_mod, & 130 USE ocean_mod, & 131 ONLY: ibc_sa_t, prho_reference, sa_surface, sa_vertical_gradient, & 132 sa_vertical_gradient_level, sa_vertical_gradient_level_ind 133 134 USE palm_date_time_mod, & 134 135 ONLY: get_date_time 135 136 … … 137 138 138 139 #if defined( __parallel ) 139 USE pmc_handle_communicator, &140 USE pmc_handle_communicator, & 140 141 ONLY: pmc_get_model_info 141 142 142 USE pmc_interface, &143 USE pmc_interface, & 143 144 ONLY: nested_run, nesting_datatransfer_mode, nesting_mode 144 145 #endif 145 146 146 USE surface_mod, &147 USE surface_mod, & 147 148 ONLY: surf_def_h 148 149 149 USE turbulence_closure_mod, &150 USE turbulence_closure_mod, & 150 151 ONLY: rans_const_c, rans_const_sigma 151 152 … … 161 162 CHARACTER (LEN=16) :: begin_chr !< string indication start time for the data output 162 163 CHARACTER (LEN=16) :: coor_chr !< dummy string 164 165 CHARACTER (LEN=23) :: date_time_str !< string for date and time information 163 166 164 167 CHARACTER (LEN=26) :: ver_rev !< string for run identification … … 171 174 172 175 CHARACTER (LEN=70) :: char1 !< dummy varialbe used for various strings 173 CHARACTER (LEN=70) :: char2 !< string containing informating about the advected distance in case of Galilei transformation174 CHARACTER (LEN=23) :: date_time_str !< string for date and time information176 CHARACTER (LEN=70) :: char2 !< string containing informating about the advected distance in case of Galilei 177 !< transformation 175 178 CHARACTER (LEN=70) :: dopr_chr !< string indicating profile output variables 176 179 CHARACTER (LEN=70) :: do2d_xy !< string indicating 2D-xy output variables … … 185 188 186 189 CHARACTER (LEN=86) :: coordinates !< string indicating height coordinates for profile-prescribed variables 187 CHARACTER (LEN=86) :: gradients !< string indicating gradients of profile-prescribed variables between the prescribed height coordinates 190 CHARACTER (LEN=86) :: gradients !< string indicating gradients of profile-prescribed variables between the 191 !< prescribed height coordinates 188 192 CHARACTER (LEN=86) :: slices !< string indicating grid coordinates of profile-prescribed subsidence velocity 189 193 CHARACTER (LEN=86) :: temperatures !< string indicating profile-prescribed subsidence velocities … … 231 235 232 236 ! 233 !-- Open the output file. At the end of the simulation, output is directed 234 !-- to unit 19. 235 IF ( ( runnr == 0 .OR. force_print_header ) .AND. & 237 !-- Open the output file. At the end of the simulation, output is directed to unit 19. 238 IF ( ( runnr == 0 .OR. force_print_header ) .AND. & 236 239 .NOT. simulated_time_at_begin /= simulated_time ) THEN 237 240 io = 15 ! header output on file RUN_CONTROL … … 242 245 243 246 ! 244 !-- At the end of the run, output file (HEADER) will be rewritten with 245 !-- new information 247 !-- At the end of the run, output file (HEADER) will be rewritten with new information 246 248 IF ( io == 19 .AND. simulated_time_at_begin /= simulated_time ) REWIND( 19 ) 247 249 … … 295 297 #endif 296 298 IF ( ensemble_member_nr /= 0 ) THEN 297 WRITE ( io, 512 ) run_date, run_identifier, run_time, runnr, &298 ADJUSTR( host_chr ),ensemble_member_nr299 WRITE ( io, 512 ) run_date, run_identifier, run_time, runnr, ADJUSTR( host_chr ), & 300 ensemble_member_nr 299 301 ELSE 300 WRITE ( io, 102 ) run_date, run_identifier, run_time, runnr, & 301 ADJUSTR( host_chr ) 302 WRITE ( io, 102 ) run_date, run_identifier, run_time, runnr, ADJUSTR( host_chr ) 302 303 ENDIF 303 304 #if defined( __parallel ) … … 310 311 WRITE ( io, 103 ) numprocs, pdims(1), pdims(2), TRIM( char1 ) 311 312 ELSE 312 WRITE ( io, 104 ) numprocs*threads_per_task, numprocs, &313 threads_per_task, pdims(1),pdims(2), TRIM( char1 )313 WRITE ( io, 104 ) numprocs*threads_per_task, numprocs, threads_per_task, pdims(1), & 314 pdims(2), TRIM( char1 ) 314 315 ENDIF 315 316 … … 329 330 IF ( nested_run ) THEN 330 331 331 WRITE ( io, 600 ) TRIM( nesting_mode ), & 332 TRIM( nesting_datatransfer_mode ) 332 WRITE ( io, 600 ) TRIM( nesting_mode ), TRIM( nesting_datatransfer_mode ) 333 333 CALL pmc_get_model_info( ncpl = ncpl, cpl_id = my_cpl_id ) 334 334 335 335 DO n = 1, ncpl 336 CALL pmc_get_model_info( request_for_cpl_id = n, cpl_name = cpl_name, &337 cpl_parent_id = cpl_parent_id, &338 lower_left_x = lower_left_coord_x, &339 lower_left_y = lower_left_coord_y, &336 CALL pmc_get_model_info( request_for_cpl_id = n, cpl_name = cpl_name, & 337 cpl_parent_id = cpl_parent_id, & 338 lower_left_x = lower_left_coord_x, & 339 lower_left_y = lower_left_coord_y, & 340 340 npe_total = npe_total ) 341 341 IF ( n == my_cpl_id ) THEN … … 344 344 char1 = ' ' 345 345 ENDIF 346 WRITE ( io, 601 ) TRIM( char1 ), n, cpl_parent_id, npe_total, & 347 lower_left_coord_x, lower_left_coord_y, & 348 TRIM( cpl_name ) 346 WRITE ( io, 601 ) TRIM( char1 ), n, cpl_parent_id, npe_total, lower_left_coord_x, & 347 lower_left_coord_y, TRIM( cpl_name ) 349 348 ENDDO 350 349 … … 376 375 ENDIF 377 376 IF ( mg_switch_to_pe0_level == 0 ) THEN 378 WRITE ( io, 136 ) nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, & 377 WRITE ( io, 136 ) nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, nzt_mg(1) 378 ELSEIF ( mg_switch_to_pe0_level /= -1 ) THEN 379 WRITE ( io, 137 ) mg_switch_to_pe0_level, & 380 mg_loc_ind(2,0)-mg_loc_ind(1,0)+1, & 381 mg_loc_ind(4,0)-mg_loc_ind(3,0)+1, & 382 nzt_mg(mg_switch_to_pe0_level), & 383 nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, & 379 384 nzt_mg(1) 380 ELSEIF ( mg_switch_to_pe0_level /= -1 ) THEN 381 WRITE ( io, 137 ) mg_switch_to_pe0_level, & 382 mg_loc_ind(2,0)-mg_loc_ind(1,0)+1, & 383 mg_loc_ind(4,0)-mg_loc_ind(3,0)+1, & 384 nzt_mg(mg_switch_to_pe0_level), & 385 nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, & 386 nzt_mg(1) 387 ENDIF 388 IF ( psolver == 'multigrid_noopt' .AND. masking_method ) WRITE ( io, 144 ) 389 ENDIF 390 IF ( call_psolver_at_all_substeps .AND. timestep_scheme(1:5) == 'runge' ) & 391 THEN 385 ENDIF 386 IF ( psolver == 'multigrid_noopt' .AND. masking_method ) WRITE ( io, 144 ) 387 ENDIF 388 IF ( call_psolver_at_all_substeps .AND. timestep_scheme(1:5) == 'runge' ) THEN 392 389 WRITE ( io, 142 ) 393 390 ENDIF … … 419 416 char2 = 'at the end of the run' 420 417 ENDIF 421 WRITE ( io, 119 ) TRIM( char1 ), TRIM( char2 ), & 422 advected_distance_x/1000.0_wp, & 418 WRITE ( io, 119 ) TRIM( char1 ), TRIM( char2 ), advected_distance_x/1000.0_wp, & 423 419 advected_distance_y/1000.0_wp 424 420 ENDIF … … 427 423 IF ( rayleigh_damping_factor /= 0.0_wp ) THEN 428 424 IF ( .NOT. ocean_mode ) THEN 429 WRITE ( io, 123 ) 'above', rayleigh_damping_height, & 430 rayleigh_damping_factor 431 ELSE 432 WRITE ( io, 123 ) 'below', rayleigh_damping_height, & 433 rayleigh_damping_factor 425 WRITE ( io, 123 ) 'above', rayleigh_damping_height, rayleigh_damping_factor 426 ELSE 427 WRITE ( io, 123 ) 'below', rayleigh_damping_height, rayleigh_damping_factor 434 428 ENDIF 435 429 ENDIF … … 467 461 WRITE ( io, 203 ) simulated_time_at_begin, end_time 468 462 469 IF ( time_restart /= 9999999.9_wp .AND. & 470 simulated_time_at_begin == simulated_time ) THEN 463 IF ( time_restart /= 9999999.9_wp .AND. simulated_time_at_begin == simulated_time ) THEN 471 464 IF ( dt_restart == 9999999.9_wp ) THEN 472 465 WRITE ( io, 204 ) ' Restart at: ',time_restart … … 481 474 cpuseconds_per_simulated_second = 0.0_wp 482 475 ELSE 483 cpuseconds_per_simulated_second = log_point_s(10)%sum / & 484 ( simulated_time - & 485 simulated_time_at_begin ) 486 ENDIF 487 WRITE ( io, 206 ) simulated_time, log_point_s(10)%sum, & 488 log_point_s(10)%sum / REAL( i, KIND=wp ), & 489 cpuseconds_per_simulated_second 476 cpuseconds_per_simulated_second = log_point_s(10)%sum / & 477 ( simulated_time - simulated_time_at_begin ) 478 ENDIF 479 WRITE ( io, 206 ) simulated_time, log_point_s(10)%sum, & 480 log_point_s(10)%sum / REAL( i, KIND=wp ), cpuseconds_per_simulated_second 490 481 IF ( time_restart /= 9999999.9_wp .AND. time_restart < end_time ) THEN 491 482 IF ( dt_restart == 9999999.9_wp ) THEN … … 499 490 500 491 ! 501 !-- Start time for coupled runs, if independent precursor runs for atmosphere 502 !-- and ocean are used or have been used. In this case, coupling_start_time503 !-- defines the time when the coupling isswitched on.492 !-- Start time for coupled runs, if independent precursor runs for atmosphere and ocean are used or 493 !-- have been used. In this case, coupling_start_time defines the time when the coupling is 494 !-- switched on. 504 495 IF ( coupling_start_time /= 0.0_wp ) THEN 505 496 WRITE ( io, 207 ) coupling_start_time … … 571 562 ENDIF 572 563 ENDIF 573 WRITE ( io, 254 ) nx, ny, nzt+1, MIN( nnx, nx+1 ), MIN( nny, ny+1 ), & 574 MIN( nnz+2, nzt+2 ) 564 WRITE ( io, 254 ) nx, ny, nzt+1, MIN( nnx, nx+1 ), MIN( nny, ny+1 ), MIN( nnz+2, nzt+2 ) 575 565 IF ( sloping_surface ) WRITE ( io, 260 ) alpha_surface 576 566 577 567 ! 578 !-- Profile for the large scale vertial velocity 568 !-- Profile for the large scale vertial velocity. 579 569 !-- Building output strings, starting with surface value 580 570 IF ( large_scale_subsidence ) THEN … … 609 599 610 600 IF ( .NOT. large_scale_forcing ) THEN 611 WRITE ( io, 426 ) TRIM( coordinates ), TRIM( temperatures ), &612 TRIM( gradients ), TRIM(slices )613 ENDIF 614 615 616 ENDIF 617 618 !-- Profile of the geostrophic wind (component ug) 601 WRITE ( io, 426 ) TRIM( coordinates ), TRIM( temperatures ), TRIM( gradients ), & 602 TRIM( slices ) 603 ENDIF 604 605 606 ENDIF 607 608 !-- Profile of the geostrophic wind (component ug). 619 609 !-- Building output strings 620 610 WRITE ( ugcomponent, '(F6.2)' ) ug_surface … … 646 636 647 637 IF ( .NOT. large_scale_forcing ) THEN 648 WRITE ( io, 423 ) TRIM( coordinates ), TRIM( ugcomponent ), &649 TRIM( gradients ), TRIM(slices )650 ENDIF 651 652 !-- Profile of the geostrophic wind (component vg) 638 WRITE ( io, 423 ) TRIM( coordinates ), TRIM( ugcomponent ), TRIM( gradients ), & 639 TRIM( slices ) 640 ENDIF 641 642 !-- Profile of the geostrophic wind (component vg). 653 643 !-- Building output strings 654 644 WRITE ( vgcomponent, '(F6.2)' ) vg_surface … … 680 670 681 671 IF ( .NOT. large_scale_forcing ) THEN 682 WRITE ( io, 424 ) TRIM( coordinates ), TRIM( vgcomponent ), &683 TRIM( gradients ), TRIM(slices )672 WRITE ( io, 424 ) TRIM( coordinates ), TRIM( vgcomponent ), TRIM( gradients ), & 673 TRIM( slices ) 684 674 ENDIF 685 675 … … 711 701 byn = bys + bly 712 702 713 WRITE ( io, 271 ) building_length_x, building_length_y, &714 b uilding_height, bxl, bxr, bys, byn703 WRITE ( io, 271 ) building_length_x, building_length_y, building_height, bxl, bxr, bys, & 704 byn 715 705 716 706 CASE ( 'single_street_canyon' ) … … 745 735 ! 746 736 !-- Tunnel axis in y direction 747 IF ( tunnel_length == 9999999.9_wp .OR. & 748 tunnel_length >= ( nx + 1 ) * dx ) THEN 749 WRITE ( io, 273 ) 'y', tunnel_height, tunnel_wall_depth, & 750 tunnel_width_x 737 IF ( tunnel_length == 9999999.9_wp .OR. tunnel_length >= ( nx + 1 ) * dx ) THEN 738 WRITE ( io, 273 ) 'y', tunnel_height, tunnel_wall_depth, tunnel_width_x 751 739 ELSE 752 WRITE ( io, 274 ) 'y', tunnel_height, tunnel_wall_depth, &753 tunnel_ width_x, tunnel_length740 WRITE ( io, 274 ) 'y', tunnel_height, tunnel_wall_depth, tunnel_width_x, & 741 tunnel_length 754 742 ENDIF 755 743 … … 757 745 ! 758 746 !-- Tunnel axis in x direction 759 IF ( tunnel_length == 9999999.9_wp .OR. & 760 tunnel_length >= ( ny + 1 ) * dy ) THEN 761 WRITE ( io, 273 ) 'x', tunnel_height, tunnel_wall_depth, & 762 tunnel_width_y 747 IF ( tunnel_length == 9999999.9_wp .OR. tunnel_length >= ( ny + 1 ) * dy ) THEN 748 WRITE ( io, 273 ) 'x', tunnel_height, tunnel_wall_depth, tunnel_width_y 763 749 ELSE 764 WRITE ( io, 274 ) 'x', tunnel_height, tunnel_wall_depth, &765 tunnel_ width_y, tunnel_length750 WRITE ( io, 274 ) 'x', tunnel_height, tunnel_wall_depth, tunnel_width_y, & 751 tunnel_length 766 752 ENDIF 767 753 ENDIF … … 771 757 IF ( TRIM( topography ) /= 'flat' ) THEN 772 758 IF ( TRIM( topography_grid_convention ) == ' ' ) THEN 773 IF ( TRIM( topography ) == 'single_building' .OR. &759 IF ( TRIM( topography ) == 'single_building' .OR. & 774 760 TRIM( topography ) == 'single_street_canyon' ) THEN 775 761 WRITE ( io, 278 ) … … 931 917 WRITE ( io, 316 ) 932 918 ENDIF 933 IF ( ocean_mode .AND. constant_top_salinityflux ) & 934 WRITE ( io, 309 ) top_salinityflux 919 IF ( ocean_mode .AND. constant_top_salinityflux ) WRITE ( io, 309 ) top_salinityflux 935 920 IF ( humidity ) WRITE ( io, 315 ) 936 IF ( passive_scalar .AND. constant_top_scalarflux ) & 937 WRITE ( io, 302 ) top_scalarflux 921 IF ( passive_scalar .AND. constant_top_scalarflux ) WRITE ( io, 302 ) top_scalarflux 938 922 ENDIF 939 923 940 924 IF ( constant_flux_layer ) THEN 941 WRITE ( io, 305 ) (zu(1)-zu(0)), roughness_length, & 942 z0h_factor*roughness_length, kappa, & 925 WRITE ( io, 305 ) (zu(1)-zu(0)), roughness_length, z0h_factor*roughness_length, kappa, & 943 926 zeta_min, zeta_max 944 927 IF ( .NOT. constant_heatflux ) WRITE ( io, 308 ) … … 950 933 ENDIF 951 934 ELSE 952 IF ( INDEX( initializing_actions, 'set_1d-model_profiles') /= 0 ) THEN935 IF ( INDEX( initializing_actions, 'set_1d-model_profiles') /= 0 ) THEN 953 936 WRITE ( io, 310 ) zeta_min, zeta_max 954 937 ENDIF … … 959 942 WRITE ( io, 318 ) use_cmax, pt_damping_width, pt_damping_factor 960 943 IF ( turbulent_inflow ) THEN 961 IF ( y_shift == 0 ) THEN962 WRITE ( io, 319 ) recycling_width, recycling_plane, &944 IF ( y_shift == 0 ) THEN 945 WRITE ( io, 319 ) recycling_width, recycling_plane, & 963 946 inflow_damping_height, inflow_damping_width 964 947 ELSE 965 WRITE ( io, 322 ) y_shift, recycling_width, recycling_plane, &948 WRITE ( io, 322 ) y_shift, recycling_width, recycling_plane, & 966 949 inflow_damping_height, inflow_damping_width 967 950 END IF 968 951 ENDIF 969 952 IF ( turbulent_outflow ) THEN 970 WRITE ( io, 323 ) outflow_source_plane, INT( outflow_source_plane/dx)953 WRITE ( io, 323 ) outflow_source_plane, INT( outflow_source_plane / dx ) 971 954 ENDIF 972 955 ENDIF … … 989 972 DO WHILE ( pt_vertical_gradient_level_ind(i) /= -9999 ) 990 973 991 WRITE ( coor_chr,'(F7.2)') pt_init(pt_vertical_gradient_level_ind(i))974 WRITE ( coor_chr, '(F7.2)' ) pt_init(pt_vertical_gradient_level_ind(i)) 992 975 temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) 993 976 994 WRITE ( coor_chr,'(F7.2)') pt_vertical_gradient(i)977 WRITE ( coor_chr, '(F7.2)' ) pt_vertical_gradient(i) 995 978 gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) 996 979 997 WRITE ( coor_chr,'(I7)') pt_vertical_gradient_level_ind(i)980 WRITE ( coor_chr, '(I7)' ) pt_vertical_gradient_level_ind(i) 998 981 slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) 999 982 1000 WRITE ( coor_chr,'(F7.1)') pt_vertical_gradient_level(i)983 WRITE ( coor_chr, '(F7.1)' ) pt_vertical_gradient_level(i) 1001 984 coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) 1002 985 … … 1010 993 1011 994 IF ( .NOT. nudging ) THEN 1012 WRITE ( io, 420 ) TRIM( coordinates ), TRIM( temperatures ), &1013 TRIM( gradients ), TRIM(slices )995 WRITE ( io, 420 ) TRIM( coordinates ), TRIM( temperatures ), TRIM( gradients ), & 996 TRIM( slices ) 1014 997 ELSE 1015 998 WRITE ( io, 428 ) … … 1027 1010 DO WHILE ( q_vertical_gradient_level_ind(i) /= -9999 ) 1028 1011 1029 WRITE ( coor_chr,'(E8.1,4X)') q_init(q_vertical_gradient_level_ind(i))1012 WRITE ( coor_chr, '(E8.1,4X)' ) q_init(q_vertical_gradient_level_ind(i)) 1030 1013 temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) 1031 1014 1032 WRITE ( coor_chr,'(E8.1,4X)') q_vertical_gradient(i)1015 WRITE ( coor_chr, '(E8.1,4X)' ) q_vertical_gradient(i) 1033 1016 gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) 1034 1017 1035 WRITE ( coor_chr,'(I8,4X)') q_vertical_gradient_level_ind(i)1018 WRITE ( coor_chr, '(I8,4X)' ) q_vertical_gradient_level_ind(i) 1036 1019 slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) 1037 1020 1038 WRITE ( coor_chr,'(F8.1,4X)') q_vertical_gradient_level(i)1021 WRITE ( coor_chr, '(F8.1,4X)' ) q_vertical_gradient_level(i) 1039 1022 coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) 1040 1023 … … 1048 1031 1049 1032 IF ( .NOT. nudging ) THEN 1050 WRITE ( io, 421 ) TRIM( coordinates ), TRIM( temperatures ), &1051 TRIM( gradients ), TRIM(slices )1033 WRITE ( io, 421 ) TRIM( coordinates ), TRIM( temperatures ), TRIM( gradients ), & 1034 TRIM( slices ) 1052 1035 ENDIF 1053 1036 ENDIF … … 1063 1046 DO WHILE ( s_vertical_gradient_level_ind(i) /= -9999 ) 1064 1047 1065 WRITE ( coor_chr,'(E8.1,4X)') s_init(s_vertical_gradient_level_ind(i))1048 WRITE ( coor_chr, '(E8.1,4X)' ) s_init(s_vertical_gradient_level_ind(i)) 1066 1049 temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) 1067 1050 1068 WRITE ( coor_chr,'(E8.1,4X)') s_vertical_gradient(i)1051 WRITE ( coor_chr, '(E8.1,4X)' ) s_vertical_gradient(i) 1069 1052 gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) 1070 1053 1071 WRITE ( coor_chr,'(I8,4X)') s_vertical_gradient_level_ind(i)1054 WRITE ( coor_chr, '(I8,4X)' ) s_vertical_gradient_level_ind(i) 1072 1055 slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) 1073 1056 1074 WRITE ( coor_chr,'(F8.1,4X)') s_vertical_gradient_level(i)1057 WRITE ( coor_chr, '(F8.1,4X)' ) s_vertical_gradient_level(i) 1075 1058 coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) 1076 1059 … … 1083 1066 ENDDO 1084 1067 1085 WRITE ( io, 422 ) TRIM( coordinates ), TRIM( temperatures ), &1086 TRIM( gradients ), TRIM(slices )1068 WRITE ( io, 422 ) TRIM( coordinates ), TRIM( temperatures ), TRIM( gradients ), & 1069 TRIM( slices ) 1087 1070 ENDIF 1088 1071 … … 1098 1081 DO WHILE ( sa_vertical_gradient_level_ind(i) /= -9999 ) 1099 1082 1100 WRITE ( coor_chr,'(F7.2)') sa_init(sa_vertical_gradient_level_ind(i))1083 WRITE ( coor_chr, '(F7.2)' ) sa_init(sa_vertical_gradient_level_ind(i)) 1101 1084 temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) 1102 1085 1103 WRITE ( coor_chr,'(F7.2)') sa_vertical_gradient(i)1086 WRITE ( coor_chr, '(F7.2)' ) sa_vertical_gradient(i) 1104 1087 gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) 1105 1088 1106 WRITE ( coor_chr,'(I7)') sa_vertical_gradient_level_ind(i)1089 WRITE ( coor_chr, '(I7)' ) sa_vertical_gradient_level_ind(i) 1107 1090 slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) 1108 1091 1109 WRITE ( coor_chr,'(F7.1)') sa_vertical_gradient_level(i)1092 WRITE ( coor_chr, '(F7.1)' ) sa_vertical_gradient_level(i) 1110 1093 coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) 1111 1094 … … 1118 1101 ENDDO 1119 1102 1120 WRITE ( io, 425 ) TRIM( coordinates ), TRIM( temperatures ), &1121 TRIM( gradients ), TRIM(slices )1103 WRITE ( io, 425 ) TRIM( coordinates ), TRIM( temperatures ), TRIM( gradients ), & 1104 TRIM( slices ) 1122 1105 ENDIF 1123 1106 … … 1195 1178 ENDDO 1196 1179 1197 IF ( ( ( do2d_xy /= '' .AND. section(1,1) /= -9999 ) .OR. &1198 ( do2d_xz /= '' .AND. section(1,2) /= -9999 ) .OR. &1180 IF ( ( ( do2d_xy /= '' .AND. section(1,1) /= -9999 ) .OR. & 1181 ( do2d_xz /= '' .AND. section(1,2) /= -9999 ) .OR. & 1199 1182 ( do2d_yz /= '' .AND. section(1,3) /= -9999 ) ) ) THEN 1200 1183 … … 1224 1207 coordinates = '/' 1225 1208 ! 1226 !-- Building strings with index and coordinate information of the 1227 !-- slices 1209 !-- Building strings with index and coordinate information of the slices 1228 1210 DO WHILE ( section(i,1) /= -9999 ) 1229 1211 … … 1233 1215 1234 1216 IF ( section(i,1) == -1 ) THEN 1235 WRITE ( coor_chr,'(F10.1)') -1.0_wp1217 WRITE ( coor_chr, '(F10.1)' ) -1.0_wp 1236 1218 ELSE 1237 WRITE ( coor_chr,'(F10.1)') zu(section(i,1))1219 WRITE ( coor_chr, '(F10.1)' ) zu(section(i,1)) 1238 1220 ENDIF 1239 1221 coor_chr = ADJUSTL( coor_chr ) … … 1243 1225 ENDDO 1244 1226 IF ( av == 0 ) THEN 1245 WRITE ( io, 335 ) 'XY', do2d_xy, dt_do2d_xy, & 1246 TRIM( begin_chr ), 'k', TRIM( slices ), & 1247 TRIM( coordinates ) 1227 WRITE ( io, 335 ) 'XY', do2d_xy, dt_do2d_xy, TRIM( begin_chr ), 'k', & 1228 TRIM( slices ), TRIM( coordinates ) 1248 1229 IF ( skip_time_do2d_xy /= 0.0_wp ) THEN 1249 1230 WRITE ( io, 339 ) skip_time_do2d_xy 1250 1231 ENDIF 1251 1232 ELSE 1252 WRITE ( io, 342 ) 'XY', do2d_xy, dt_data_output_av, & 1253 TRIM( begin_chr ), averaging_interval, & 1254 dt_averaging_input, 'k', TRIM( slices ), & 1233 WRITE ( io, 342 ) 'XY', do2d_xy, dt_data_output_av, TRIM( begin_chr ), & 1234 averaging_interval, dt_averaging_input, 'k', TRIM( slices ), & 1255 1235 TRIM( coordinates ) 1256 1236 IF ( skip_time_data_output_av /= 0.0_wp ) THEN … … 1270 1250 coordinates = '/' 1271 1251 ! 1272 !-- Building strings with index and coordinate information of the 1273 !-- slices 1252 !-- Building strings with index and coordinate information of the slices 1274 1253 DO WHILE ( section(i,2) /= -9999 ) 1275 1254 … … 1285 1264 ENDDO 1286 1265 IF ( av == 0 ) THEN 1287 WRITE ( io, 335 ) 'XZ', do2d_xz, dt_do2d_xz, & 1288 TRIM( begin_chr ), 'j', TRIM( slices ), & 1289 TRIM( coordinates ) 1266 WRITE ( io, 335 ) 'XZ', do2d_xz, dt_do2d_xz, TRIM( begin_chr ), 'j', & 1267 TRIM( slices ), TRIM( coordinates ) 1290 1268 IF ( skip_time_do2d_xz /= 0.0_wp ) THEN 1291 1269 WRITE ( io, 339 ) skip_time_do2d_xz 1292 1270 ENDIF 1293 1271 ELSE 1294 WRITE ( io, 342 ) 'XZ', do2d_xz, dt_data_output_av, & 1295 TRIM( begin_chr ), averaging_interval, & 1296 dt_averaging_input, 'j', TRIM( slices ), & 1272 WRITE ( io, 342 ) 'XZ', do2d_xz, dt_data_output_av, TRIM( begin_chr ), & 1273 averaging_interval, dt_averaging_input, 'j', TRIM( slices ), & 1297 1274 TRIM( coordinates ) 1298 1275 IF ( skip_time_data_output_av /= 0.0_wp ) THEN … … 1312 1289 coordinates = '/' 1313 1290 ! 1314 !-- Building strings with index and coordinate information of the 1315 !-- slices 1291 !-- Building strings with index and coordinate information of the slices 1316 1292 DO WHILE ( section(i,3) /= -9999 ) 1317 1293 … … 1327 1303 ENDDO 1328 1304 IF ( av == 0 ) THEN 1329 WRITE ( io, 335 ) 'YZ', do2d_yz, dt_do2d_yz, & 1330 TRIM( begin_chr ), 'i', TRIM( slices ), & 1331 TRIM( coordinates ) 1305 WRITE ( io, 335 ) 'YZ', do2d_yz, dt_do2d_yz, TRIM( begin_chr ), 'i', & 1306 TRIM( slices ), TRIM( coordinates ) 1332 1307 IF ( skip_time_do2d_yz /= 0.0_wp ) THEN 1333 1308 WRITE ( io, 339 ) skip_time_do2d_yz 1334 1309 ENDIF 1335 1310 ELSE 1336 WRITE ( io, 342 ) 'YZ', do2d_yz, dt_data_output_av, & 1337 TRIM( begin_chr ), averaging_interval, & 1338 dt_averaging_input, 'i', TRIM( slices ), & 1311 WRITE ( io, 342 ) 'YZ', do2d_yz, dt_data_output_av, TRIM( begin_chr ), & 1312 averaging_interval, dt_averaging_input, 'i', TRIM( slices ), & 1339 1313 TRIM( coordinates ) 1340 1314 IF ( skip_time_data_output_av /= 0.0_wp ) THEN … … 1386 1360 ENDIF 1387 1361 IF ( av == 0 ) THEN 1388 WRITE ( io, 337 ) do3d_chr, dt_do3d, TRIM( begin_chr ), & 1389 zu(nz_do3d), nz_do3d 1362 WRITE ( io, 337 ) do3d_chr, dt_do3d, TRIM( begin_chr ), zu(nz_do3d), nz_do3d 1390 1363 ELSE 1391 WRITE ( io, 343 ) do3d_chr, dt_data_output_av, & 1392 TRIM( begin_chr ), averaging_interval, & 1364 WRITE ( io, 343 ) do3d_chr, dt_data_output_av, TRIM( begin_chr ), averaging_interval,& 1393 1365 dt_averaging_input, zu(nz_do3d), nz_do3d 1394 1366 ENDIF … … 1415 1387 1416 1388 ! 1417 !-- masked arrays 1418 IF ( masks > 0 ) WRITE ( io, 345 ) & 1419 mask_scale_x, mask_scale_y, mask_scale_z 1389 !-- Masked arrays 1390 IF ( masks > 0 ) WRITE ( io, 345 ) mask_scale_x, mask_scale_y, mask_scale_z 1420 1391 DO mid = 1, masks 1421 1392 DO av = 0, 1 … … 1424 1395 domask_chr = '' 1425 1396 DO WHILE ( domask(mid,av,i) /= ' ' ) 1426 domask_chr = TRIM( domask_chr ) // ' ' // & 1427 TRIM( domask(mid,av,i) ) // ',' 1397 domask_chr = TRIM( domask_chr ) // ' ' // TRIM( domask(mid,av,i) ) // ',' 1428 1398 i = i + 1 1429 1399 ENDDO … … 1437 1407 1438 1408 output_format = netcdf_data_format_string 1439 ! -- Parallel output not implemented for mask data, hence1440 !-- output_format must be adjusted.1409 ! 1410 !-- Parallel output not implemented for mask data, hence output_format must be adjusted. 1441 1411 IF ( netcdf_data_format == 5 ) output_format = 'netCDF4/HDF5' 1442 1412 IF ( netcdf_data_format == 6 ) output_format = 'netCDF4/HDF5 classic' … … 1450 1420 WRITE ( io, 347 ) domask_chr, dt_domask(mid) 1451 1421 ELSE 1452 WRITE ( io, 348 ) domask_chr, dt_data_output_av, &1453 averaging_interval,dt_averaging_input1422 WRITE ( io, 348 ) domask_chr, dt_data_output_av, averaging_interval, & 1423 dt_averaging_input 1454 1424 ENDIF 1455 1425 … … 1464 1434 ENDIF 1465 1435 ! 1466 !-- output locations1436 !-- Output locations 1467 1437 DO dim = 1, 3 1468 1438 IF ( mask(mid,dim,1) >= 0.0_wp ) THEN … … 1471 1441 count = count + 1 1472 1442 ENDDO 1473 WRITE ( io, 349 ) dir(dim), dir(dim), mid, dir(dim), & 1474 mask(mid,dim,:count) 1475 ELSEIF ( mask_loop(mid,dim,1) < 0.0_wp .AND. & 1476 mask_loop(mid,dim,2) < 0.0_wp .AND. & 1443 WRITE ( io, 349 ) dir(dim), dir(dim), mid, dir(dim), mask(mid,dim,:count) 1444 ELSEIF ( mask_loop(mid,dim,1) < 0.0_wp .AND. & 1445 mask_loop(mid,dim,2) < 0.0_wp .AND. & 1477 1446 mask_loop(mid,dim,3) == 0.0_wp ) THEN 1478 1447 WRITE ( io, 350 ) dir(dim), dir(dim) 1479 1448 ELSEIF ( mask_loop(mid,dim,3) == 0.0_wp ) THEN 1480 WRITE ( io, 351 ) dir(dim), dir(dim), mid, dir(dim), & 1481 mask_loop(mid,dim,1:2) 1449 WRITE ( io, 351 ) dir(dim), dir(dim), mid, dir(dim), mask_loop(mid,dim,1:2) 1482 1450 ELSE 1483 WRITE ( io, 351 ) dir(dim), dir(dim), mid, dir(dim), & 1484 mask_loop(mid,dim,1:3) 1451 WRITE ( io, 351 ) dir(dim), dir(dim), mid, dir(dim), mask_loop(mid,dim,1:3) 1485 1452 ENDIF 1486 1453 ENDDO … … 1545 1512 1546 1513 ! 1547 !-- Cloud phys cis parameters / quantities / numerical methods1514 !-- Cloud physics parameters / quantities / numerical methods 1548 1515 WRITE ( io, 430 ) 1549 IF ( humidity .AND. .NOT. bulk_cloud_model .AND..NOT. cloud_droplets) THEN1516 IF ( humidity .AND. .NOT. bulk_cloud_model .AND. .NOT. cloud_droplets) THEN 1550 1517 WRITE ( io, 431 ) 1551 1518 ENDIF … … 1558 1525 !-- 1559 1526 IF ( constant_diffusion ) THEN 1560 WRITE ( io, 451 ) km_constant, km_constant/prandtl_number, & 1561 prandtl_number 1527 WRITE ( io, 451 ) km_constant, km_constant/prandtl_number, prandtl_number 1562 1528 ENDIF 1563 1529 IF ( .NOT. constant_diffusion) THEN 1564 1530 IF ( e_init > 0.0_wp ) WRITE ( io, 455 ) e_init 1565 IF ( e_min > 0.0_wp ) WRITE ( io, 454 ) e_min1531 IF ( e_min > 0.0_wp ) WRITE ( io, 454 ) e_min 1566 1532 IF ( wall_adjustment ) WRITE ( io, 453 ) 1567 1533 ENDIF … … 1573 1539 WRITE ( io, 470 ) 1574 1540 IF ( create_disturbances ) THEN 1575 WRITE ( io, 471 ) dt_disturb, disturbance_amplitude, &1576 zu(disturbance_level_ind_b), disturbance_level_ind_b, &1541 WRITE ( io, 471 ) dt_disturb, disturbance_amplitude, & 1542 zu(disturbance_level_ind_b), disturbance_level_ind_b, & 1577 1543 zu(disturbance_level_ind_t), disturbance_level_ind_t 1578 1544 IF ( .NOT. bc_lr_cyc .OR. .NOT. bc_ns_cyc ) THEN … … 1599 1565 !-- Parameters of 1D-model 1600 1566 IF ( INDEX( initializing_actions, 'set_1d-model_profiles' ) /= 0 ) THEN 1601 WRITE ( io, 500 ) end_time_1d, dt_run_control_1d, dt_pr_1d, & 1602 mixing_length_1d, dissipation_1d 1567 WRITE ( io, 500 ) end_time_1d, dt_run_control_1d, dt_pr_1d, mixing_length_1d, dissipation_1d 1603 1568 IF ( damp_level_ind_1d /= nzt+1 ) THEN 1604 1569 WRITE ( io, 502 ) zu(damp_level_ind_1d), damp_level_ind_1d … … 1621 1586 1622 1587 99 FORMAT (1X,78('-')) 1623 100 FORMAT (/1X,'******************************',4X,44('-')/ &1624 1X,'* ',A,' *',4X,A/ &1588 100 FORMAT (/1X,'******************************',4X,44('-')/ & 1589 1X,'* ',A,' *',4X,A/ & 1625 1590 1X,'******************************',4X,44('-')) 1626 101 FORMAT (35X,'coupled run: ',A/ &1591 101 FORMAT (35X,'coupled run: ',A/ & 1627 1592 35X,42('-')) 1628 102 FORMAT (/' Date: ',A10,4X,'Run: ',A34/ &1629 ' Time: ',A8,4X,'Run-No.: ',I2.2/ &1593 102 FORMAT (/' Date: ',A10,4X,'Run: ',A34/ & 1594 ' Time: ',A8,4X,'Run-No.: ',I2.2/ & 1630 1595 ' Run on host: ',A10) 1631 1596 #if defined( __parallel ) 1632 103 FORMAT (' Number of PEs:',10X,I6,4X,'Processor grid (x,y): (',I4,',',I4, & 1633 ')',1X,A) 1634 104 FORMAT (' Number of PEs:',10X,I6,4X,'Tasks:',I4,' threads per task:',I4/ & 1597 103 FORMAT (' Number of PEs:',10X,I6,4X,'Processor grid (x,y): (',I4,',',I4,')',1X,A) 1598 104 FORMAT (' Number of PEs:',10X,I6,4X,'Tasks:',I4,' threads per task:',I4/ & 1635 1599 35X,'Processor grid (x,y): (',I4,',',I4,')',1X,A) 1636 1600 107 FORMAT (35X,'A 1d-decomposition along ',A,' is used') 1637 1601 108 FORMAT (35X,'Max. # of parallel I/O streams is ',I5) 1638 109 FORMAT (35X,'Precursor run for coupled atmos-ocean run'/ &1602 109 FORMAT (35X,'Precursor run for coupled atmos-ocean run'/ & 1639 1603 35X,42('-')) 1640 114 FORMAT (35X,'Coupled atmosphere-ocean run following'/ &1641 35X,'independent precursor runs'/ &1604 114 FORMAT (35X,'Coupled atmosphere-ocean run following'/ & 1605 35X,'independent precursor runs'/ & 1642 1606 35X,42('-')) 1643 1607 #endif 1644 110 FORMAT (/' Numerical Schemes:'/ &1608 110 FORMAT (/' Numerical Schemes:'/ & 1645 1609 ' -----------------'/) 1646 1610 124 FORMAT (' --> Use the ',A,' turbulence closure (',A,' mode).') 1647 1611 121 FORMAT (' --> Use the ',A,' approximation for the model equations.') 1648 1612 111 FORMAT (' --> Solve perturbation pressure via FFT using ',A,' routines') 1649 112 FORMAT (' --> Solve perturbation pressure via SOR-Red/Black-Schema'/ &1613 112 FORMAT (' --> Solve perturbation pressure via SOR-Red/Black-Schema'/ & 1650 1614 ' Iterations (initial/other): ',I3,'/',I3,' omega =',F6.3) 1651 113 FORMAT (' --> Momentum advection via Piascek-Williams-Scheme (Form C3)', & 1652 ' or Upstream') 1615 113 FORMAT (' --> Momentum advection via Piascek-Williams-Scheme (Form C3)',' or Upstream') 1653 1616 115 FORMAT (' FFT and transpositions are overlapping') 1654 116 FORMAT (' --> Scalar advection via Piascek-Williams-Scheme (Form C3)', & 1655 ' or Upstream') 1617 116 FORMAT (' --> Scalar advection via Piascek-Williams-Scheme (Form C3)',' or Upstream') 1656 1618 118 FORMAT (' --> Scalar advection via Bott-Chlond-Scheme') 1657 119 FORMAT (' --> Galilei-Transform applied to horizontal advection:'/ &1658 ' translation velocity = ',A/ &1619 119 FORMAT (' --> Galilei-Transform applied to horizontal advection:'/ & 1620 ' translation velocity = ',A/ & 1659 1621 ' distance advected ',A,': ',F8.3,' km(x) ',F8.3,' km(y)') 1660 1622 122 FORMAT (' --> Time differencing scheme: ',A) 1661 123 FORMAT (' --> Rayleigh-Damping active, starts ',A,' z = ',F8.2,' m'/ &1623 123 FORMAT (' --> Rayleigh-Damping active, starts ',A,' z = ',F8.2,' m'/ & 1662 1624 ' maximum damping coefficient:',F6.3, ' 1/s') 1663 1625 129 FORMAT (' --> Additional prognostic equation for the specific humidity') 1664 1626 130 FORMAT (' --> Additional prognostic equation for the total water content') 1665 131 FORMAT (' --> No pt-equation solved. Neutral stratification with pt = ', & 1666 F6.2, ' K assumed') 1627 131 FORMAT (' --> No pt-equation solved. Neutral stratification with pt = ',F6.2,' K assumed') 1667 1628 134 FORMAT (' --> Additional prognostic equation for a passive scalar') 1668 135 FORMAT (' --> Solve perturbation pressure via ',A,' method (', & 1669 A,'-cycle)'/ & 1670 ' number of grid levels: ',I2/ & 1629 135 FORMAT (' --> Solve perturbation pressure via ',A,' method (',A,'-cycle)'/ & 1630 ' number of grid levels: ',I2/ & 1671 1631 ' Gauss-Seidel red/black iterations: ',I2) 1672 136 FORMAT (' gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', & 1673 I3,')') 1674 137 FORMAT (' level data gathered on PE0 at level: ',I2/ & 1675 ' gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', & 1676 I3,')'/ & 1677 ' gridpoints of coarsest domain (x,y,z): (',I3,',',I3,',', & 1678 I3,')') 1632 136 FORMAT (' gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', I3,')') 1633 137 FORMAT (' level data gathered on PE0 at level: ',I2/ & 1634 ' gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', I3,')'/ & 1635 ' gridpoints of coarsest domain (x,y,z): (',I3,',',I3,',', I3,')') 1679 1636 139 FORMAT (' --> Loop optimization method: ',A) 1680 1637 140 FORMAT (' maximum residual allowed: ',E10.3) 1681 1638 141 FORMAT (' fixed number of multigrid cycles: ',I4) 1682 142 FORMAT (' perturbation pressure is calculated at every Runge-Kutta ', & 1683 'step') 1684 143 FORMAT (' Euler/upstream scheme is used for the SGS turbulent ', & 1685 'kinetic energy') 1639 142 FORMAT (' perturbation pressure is calculated at every Runge-Kutta ','step') 1640 143 FORMAT (' Euler/upstream scheme is used for the SGS turbulent ','kinetic energy') 1686 1641 144 FORMAT (' masking method is used') 1687 150 FORMAT (' --> Volume flow at the right and north boundary will be ', & 1688 'conserved'/ & 1642 150 FORMAT (' --> Volume flow at the right and north boundary will be ','conserved'/ & 1689 1643 ' using the ',A,' mode') 1690 1644 151 FORMAT (' with u_bulk = ',F7.3,' m/s and v_bulk = ',F7.3,' m/s') 1691 152 FORMAT (' --> External pressure gradient directly prescribed by the user:', &1692 /' ',2(1X,E12.5),'Pa/m in x/y direction', &1693 /' starting from dp_level_b =', F8.3, 'm', A/)1694 200 FORMAT (//' Run time and time step information:'/ &1695 1696 201 FORMAT ( ' Timestep: variable maximum value: ',F6.3,' s',&1697 1698 202 FORMAT ( 1699 203 FORMAT ( ' Start time: ',F11.3,' s'/&1645 152 FORMAT (' --> External pressure gradient directly prescribed by the user:', & 1646 /' ',2(1X,E12.5),'Pa/m in x/y direction', & 1647 /' starting from dp_level_b =',F8.3,'m',A/) 1648 200 FORMAT (//' Run time and time step information:'/ & 1649 ' ----------------------------------'/) 1650 201 FORMAT (' Timestep: variable maximum value: ',F6.3,' s', & 1651 ' CFL-factor:',F5.2) 1652 202 FORMAT (' Timestep: dt = ',F6.3,' s'/) 1653 203 FORMAT (' Start time: ',F11.3,' s'/ & 1700 1654 ' End time: ',F11.3,' s') 1701 204 FORMAT ( 1702 205 FORMAT ( 1703 206 FORMAT (/' Time reached: ',F11.3,' s'/ &1704 ' CPU-time used: ',F9.3,' s per timestep: ',F9.3,' s'/ &1655 204 FORMAT (A,F11.3,' s') 1656 205 FORMAT (A,F11.3,' s',5X,'restart every',17X,F11.3,' s') 1657 206 FORMAT (/' Time reached: ',F11.3,' s'/ & 1658 ' CPU-time used: ',F9.3,' s per timestep: ',F9.3,' s'/ & 1705 1659 ' per second of simulated time: ',F9.3,' s') 1706 207 FORMAT ( ' Spinup time: ',F11.3,' s') 1707 250 FORMAT (//' Computational grid and domain size:'/ & 1708 ' ----------------------------------'// & 1709 ' Grid length: dx = ',F8.3,' m dy = ',F8.3, ' m') 1710 251 FORMAT ( /' Domain size: x = ',F10.3,' m y = ',F10.3, & 1711 ' m z(u) = ',F10.3,' m'/) 1712 253 FORMAT ( ' dz(',I1,') = ', F8.3, ' m') 1713 254 FORMAT (//' Number of gridpoints (x,y,z): (0:',I4,', 0:',I4,', 0:',I4,')'/ & 1660 207 FORMAT (' Spinup time: ',F11.3,' s') 1661 250 FORMAT (//' Computational grid and domain size:'/ & 1662 ' ----------------------------------'// & 1663 ' Grid length: dx = ',F8.3,' m dy = ',F8.3,' m') 1664 251 FORMAT (/' Domain size: x = ',F10.3,' m y = ',F10.3,' m z(u) = ',F10.3,' m'/) 1665 253 FORMAT (' dz(',I1,') = ', F8.3, ' m') 1666 254 FORMAT (//' Number of gridpoints (x,y,z): (0:',I4,', 0:',I4,', 0:',I4,')'/ & 1714 1667 ' Subdomain size (x,y,z): ( ',I4,', ',I4,', ',I4,')'/) 1715 260 FORMAT (/' The model has a slope in x-direction. Inclination angle: ',F6.2,& 1716 ' degrees') 1717 270 FORMAT (//' Topography information:'/ & 1718 ' ----------------------'// & 1668 260 FORMAT (/' The model has a slope in x-direction. Inclination angle: ',F6.2,' degrees') 1669 270 FORMAT (//' Topography information:'/ & 1670 ' ----------------------'// & 1719 1671 1X,'Topography: ',A) 1720 271 FORMAT ( ' Building size (x/y/z) in m: ',F5.1,' / ',F5.1,' / ',F5.1/ & 1721 ' Horizontal index bounds (l/r/s/n): ',I4,' / ',I4,' / ',I4, & 1722 ' / ',I4) 1723 272 FORMAT ( ' Single quasi-2D street canyon of infinite length in ',A, & 1724 ' direction' / & 1725 ' Canyon height: ', F6.2, 'm, ch = ', I4, '.' / & 1726 ' Canyon position (',A,'-walls): cxl = ', I4,', cxr = ', I4, '.') 1727 273 FORMAT ( ' Tunnel of infinite length in ',A, & 1728 ' direction' / & 1729 ' Tunnel height: ', F6.2, / & 1730 ' Tunnel-wall depth: ', F6.2 / & 1731 ' Tunnel width: ', F6.2 ) 1732 274 FORMAT ( ' Tunnel in ', A, ' direction.' / & 1733 ' Tunnel height: ', F6.2, / & 1734 ' Tunnel-wall depth: ', F6.2 / & 1735 ' Tunnel width: ', F6.2, / & 1736 ' Tunnel length: ', F6.2 ) 1737 278 FORMAT (' Topography grid definition convention:'/ & 1738 ' cell edge (staggered grid points'/ & 1672 271 FORMAT (' Building size (x/y/z) in m: ',F5.1,' / ',F5.1,' / ',F5.1/ & 1673 ' Horizontal index bounds (l/r/s/n): ',I4,' / ',I4,' / ',I4,' / ',I4) 1674 272 FORMAT (' Single quasi-2D street canyon of infinite length in ',A,' direction' / & 1675 ' Canyon height: ', F6.2, 'm, ch = ', I4, '.' / & 1676 ' Canyon position (',A,'-walls): cxl = ', I4,', cxr = ', I4, '.') 1677 273 FORMAT (' Tunnel of infinite length in ',A, & 1678 ' direction' / & 1679 ' Tunnel height: ', F6.2, / & 1680 ' Tunnel-wall depth: ', F6.2 / & 1681 ' Tunnel width: ', F6.2 ) 1682 274 FORMAT (' Tunnel in ', A, ' direction.' / & 1683 ' Tunnel height: ', F6.2, / & 1684 ' Tunnel-wall depth: ', F6.2 / & 1685 ' Tunnel width: ', F6.2, / & 1686 ' Tunnel length: ', F6.2 ) 1687 278 FORMAT (' Topography grid definition convention:'/ & 1688 ' cell edge (staggered grid points'/ & 1739 1689 ' (u in x-direction, v in y-direction))' /) 1740 279 FORMAT (' Topography grid definition convention:'/ &1690 279 FORMAT (' Topography grid definition convention:'/ & 1741 1691 ' cell center (scalar grid points)' /) 1742 1692 280 FORMAT (' Complex terrain simulation is activated.') 1743 281 FORMAT (' --> Mean inflow profiles are adjusted.' / &1693 281 FORMAT (' --> Mean inflow profiles are adjusted.' / & 1744 1694 ' --> Elevation of inflow boundary: ', F7.1, ' m' ) 1745 282 FORMAT (' --> Initial data from 3D-precursor run is shifted' / &1695 282 FORMAT (' --> Initial data from 3D-precursor run is shifted' / & 1746 1696 ' vertically depending on local surface height.') 1747 300 FORMAT (//' Boundary conditions:'/ &1748 ' -------------------'// &1749 ' p uv ', &1750 ' pt'// &1751 ' B. bound.: ',A/ &1697 300 FORMAT (//' Boundary conditions:'/ & 1698 ' -------------------'// & 1699 ' p uv ', & 1700 ' pt'// & 1701 ' B. bound.: ',A/ & 1752 1702 ' T. bound.: ',A) 1753 301 FORMAT (/' ',A// &1754 ' B. bound.: ',A/ &1703 301 FORMAT (/' ',A// & 1704 ' B. bound.: ',A/ & 1755 1705 ' T. bound.: ',A) 1756 1706 303 FORMAT (/' Bottom surface fluxes are used in diffusion terms at k=1') 1757 1707 304 FORMAT (/' Top surface fluxes are used in diffusion terms at k=nzt') 1758 305 FORMAT (//' Constant flux layer between bottom surface and first ', & 1759 'computational u,v-level:'// & 1760 ' z_mo = ',F6.2,' m z0 =',F7.4,' m z0h =',F8.5,& 1761 ' m kappa =',F5.2/ & 1708 305 FORMAT (//' Constant flux layer between bottom surface and first ', & 1709 'computational u,v-level:'// & 1710 ' z_mo = ',F6.2,' m z0 =',F7.4,' m z0h =',F8.5,' m kappa =',F5.2/ & 1762 1711 ' zeta value range: ',F8.2,' <= zeta <=',F6.2) 1763 1712 306 FORMAT (' Predefined constant heatflux: ',F9.6,' K m/s') … … 1765 1714 308 FORMAT (' Predefined surface temperature') 1766 1715 309 FORMAT (' Predefined constant salinityflux: ',F9.6,' psu m/s') 1767 310 FORMAT (//' 1D-Model:'// &1716 310 FORMAT (//' 1D-Model:'// & 1768 1717 ' Ri value range: ',F6.2,' <= Ri <=',F6.2) 1769 1718 311 FORMAT (' Predefined constant humidity flux: ',E10.3,' kg/kg m/s') … … 1773 1722 302 FORMAT (' Predefined constant scalarflux: ',F9.6,' kg/(m**2 s)') 1774 1723 315 FORMAT (' Humidity flux at top surface is 0.0') 1775 316 FORMAT (' Sensible heatflux and momentum flux from coupled ', & 1776 'atmosphere model') 1777 317 FORMAT (//' Lateral boundaries:'/ & 1778 ' left/right: ',A/ & 1724 316 FORMAT (' Sensible heatflux and momentum flux from coupled ', 'atmosphere model') 1725 317 FORMAT (//' Lateral boundaries:'/ & 1726 ' left/right: ',A/ & 1779 1727 ' north/south: ',A) 1780 318 FORMAT (/' use_cmax: ',L1 / & 1781 ' pt damping layer width = ',F8.2,' m, pt ', & 1782 'damping factor =',F7.4) 1783 319 FORMAT (' turbulence recycling at inflow switched on'/ & 1784 ' width of recycling domain: ',F7.1,' m grid index: ',I4/ & 1728 318 FORMAT (/' use_cmax: ',L1 / & 1729 ' pt damping layer width = ',F8.2,' m, pt ','damping factor =',F7.4) 1730 319 FORMAT (' turbulence recycling at inflow switched on'/ & 1731 ' width of recycling domain: ',F7.1,' m grid index: ',I4/ & 1785 1732 ' inflow damping height: ',F6.1,' m width: ',F6.1,' m') 1786 320 FORMAT (' Predefined constant momentumflux: u: ',F9.6,' m**2/s**2'/ &1733 320 FORMAT (' Predefined constant momentumflux: u: ',F9.6,' m**2/s**2'/ & 1787 1734 ' v: ',F9.6,' m**2/s**2') 1788 321 FORMAT (//' Initial profiles:'/ &1735 321 FORMAT (//' Initial profiles:'/ & 1789 1736 ' ----------------') 1790 322 FORMAT (' turbulence recycling at inflow switched on'/ &1791 ' y-shift of the recycled inflow turbulence is',I3,' PE'/ &1792 ' width of recycling domain: ',F7.1,' m grid index: ',I4/ &1737 322 FORMAT (' turbulence recycling at inflow switched on'/ & 1738 ' y-shift of the recycled inflow turbulence is',I3,' PE'/ & 1739 ' width of recycling domain: ',F7.1,' m grid index: ',I4/ & 1793 1740 ' inflow damping height: ',F6.1,' m width: ',F6.1,' m'/) 1794 323 FORMAT (' turbulent outflow conditon switched on'/ & 1795 ' position of outflow source plane: ',F7.1,' m ', & 1796 'grid index: ', I4) 1797 325 FORMAT (//' List output:'/ & 1798 ' -----------'// & 1799 ' 1D-Profiles:'/ & 1741 323 FORMAT (' turbulent outflow conditon switched on'/ & 1742 ' position of outflow source plane: ',F7.1,' m ','grid index: ', I4) 1743 325 FORMAT (//' List output:'/ & 1744 ' -----------'// & 1745 ' 1D-Profiles:'/ & 1800 1746 ' Output every ',F10.2,' s') 1801 326 FORMAT (' Time averaged over ',F8.2,' s'/ &1747 326 FORMAT (' Time averaged over ',F8.2,' s'/ & 1802 1748 ' Averaging input every ',F8.2,' s') 1803 330 FORMAT (//' Data output:'/ &1749 330 FORMAT (//' Data output:'/ & 1804 1750 ' -----------'/) 1805 1751 331 FORMAT (/' 1D-Profiles:') 1806 1752 332 FORMAT (/' ',A) 1807 333 FORMAT (' Output every ',F8.2,' s',/ &1808 ' Time averaged over ',F8.2,' s'/ &1753 333 FORMAT (' Output every ',F8.2,' s',/ & 1754 ' Time averaged over ',F8.2,' s'/ & 1809 1755 ' Averaging input every ',F8.2,' s') 1810 1756 334 FORMAT (/' 2D-Arrays',A,':') 1811 335 FORMAT (/' ',A2,'-cross-section Arrays: ',A/ &1812 ' Output every ',F8.2,' s ',A/ &1813 ' Cross sections at ',A1,' = ',A/ &1757 335 FORMAT (/' ',A2,'-cross-section Arrays: ',A/ & 1758 ' Output every ',F8.2,' s ',A/ & 1759 ' Cross sections at ',A1,' = ',A/ & 1814 1760 ' scalar-coordinates: ',A,' m'/) 1815 1761 336 FORMAT (/' 3D-Arrays',A,':') 1816 1762 337 FORMAT (/' Arrays: ',A/ & 1817 ' Output every ',F8.2,' s ',A/ &1763 ' Output every ',F8.2,' s ',A/ & 1818 1764 ' Upper output limit at ',F8.2,' m (GP ',I4,')'/) 1819 1765 339 FORMAT (' No output during initial ',F8.2,' s') 1820 1766 340 FORMAT (/' Time series:') 1821 1767 341 FORMAT (' Output every ',F8.2,' s'/) 1822 342 FORMAT (/' ',A2,'-cross-section Arrays: ',A/ &1823 ' Output every ',F8.2,' s ',A/ &1824 ' Time averaged over ',F8.2,' s'/ &1825 ' Averaging input every ',F8.2,' s'/ &1826 ' Cross sections at ',A1,' = ',A/ &1768 342 FORMAT (/' ',A2,'-cross-section Arrays: ',A/ & 1769 ' Output every ',F8.2,' s ',A/ & 1770 ' Time averaged over ',F8.2,' s'/ & 1771 ' Averaging input every ',F8.2,' s'/ & 1772 ' Cross sections at ',A1,' = ',A/ & 1827 1773 ' scalar-coordinates: ',A,' m'/) 1828 343 FORMAT (/' Arrays: ',A/ &1829 ' Output every ',F8.2,' s ',A/ &1830 ' Time averaged over ',F8.2,' s'/ &1831 ' Averaging input every ',F8.2,' s'/ &1774 343 FORMAT (/' Arrays: ',A/ & 1775 ' Output every ',F8.2,' s ',A/ & 1776 ' Time averaged over ',F8.2,' s'/ & 1777 ' Averaging input every ',F8.2,' s'/ & 1832 1778 ' Upper output limit at ',F8.2,' m (GP ',I4,')'/) 1833 1779 344 FORMAT (' Output format: ',A/) 1834 345 FORMAT (/' Scaling lengths for output locations of all subsequent mask IDs:',/ &1835 ' mask_scale_x (in x-direction): ',F9.3, ' m',/ &1836 ' mask_scale_y (in y-direction): ',F9.3, ' m',/ &1780 345 FORMAT (/' Scaling lengths for output locations of all subsequent mask IDs:',/ & 1781 ' mask_scale_x (in x-direction): ',F9.3, ' m',/ & 1782 ' mask_scale_y (in y-direction): ',F9.3, ' m',/ & 1837 1783 ' mask_scale_z (in z-direction): ',F9.3, ' m' ) 1838 1784 346 FORMAT (/' Masked data output',A,' for mask ID ',I2, ':') 1839 347 FORMAT (' Variables: ',A/ &1785 347 FORMAT (' Variables: ',A/ & 1840 1786 ' Output every ',F8.2,' s') 1841 1787 348 FORMAT (' Variables: ',A/ & 1842 ' Output every ',F8.2,' s'/ &1843 ' Time averaged over ',F8.2,' s'/ &1788 ' Output every ',F8.2,' s'/ & 1789 ' Time averaged over ',F8.2,' s'/ & 1844 1790 ' Averaging input every ',F8.2,' s') 1845 349 FORMAT (/' Output locations in ',A,'-direction in multiples of ', &1846 'mask_scale_',A,' predefined by array mask_',I2.2,'_',A,':'/ &1791 349 FORMAT (/' Output locations in ',A,'-direction in multiples of ', & 1792 'mask_scale_',A,' predefined by array mask_',I2.2,'_',A,':'/ & 1847 1793 13(' ',8(F8.2,',')/) ) 1848 350 FORMAT (/' Output locations in ',A,'-direction: ', &1794 350 FORMAT (/' Output locations in ',A,'-direction: ', & 1849 1795 'all gridpoints along ',A,'-direction (default).' ) 1850 351 FORMAT (/' Output locations in ',A,'-direction in multiples of ', &1851 'mask_scale_',A,' constructed from array mask_',I2.2,'_',A,'_loop:'/ &1796 351 FORMAT (/' Output locations in ',A,'-direction in multiples of ', & 1797 'mask_scale_',A,' constructed from array mask_',I2.2,'_',A,'_loop:'/ & 1852 1798 ' loop begin:',F8.2,', end:',F8.2,', stride:',F8.2 ) 1853 352 FORMAT 1854 353 FORMAT (/' Number of output time levels allowed: unlimited'/)1799 352 FORMAT (/' Number of output time levels allowed: ',I3 /) 1800 353 FORMAT (/' Number of output time levels allowed: unlimited'/) 1855 1801 354 FORMAT (' Output format: ',A, ' compressed with level: ',I1/) 1856 1802 355 FORMAT (/' Restart data format(s):') 1857 1803 356 FORMAT (' Input format: ',A) 1858 1804 357 FORMAT (' Output format: ',A) 1859 400 FORMAT (//' Physical quantities:'/ &1805 400 FORMAT (//' Physical quantities:'/ & 1860 1806 ' -------------------'/) 1861 410 FORMAT (' Geograph. latitude : latitude = ',F5.1,' degr'/ &1862 ' Geograph. longitude : longitude = ',F5.1,' degr'/ &1863 ' Rotation angle : rotation_angle = ',F5.1,' degr'/ &1864 ' Angular velocity : omega =',E10.3,' rad/s'/ &1865 ' Coriolis parameter : f = ',F9.6,' 1/s'/ &1807 410 FORMAT (' Geograph. latitude : latitude = ',F5.1,' degr'/ & 1808 ' Geograph. longitude : longitude = ',F5.1,' degr'/ & 1809 ' Rotation angle : rotation_angle = ',F5.1,' degr'/ & 1810 ' Angular velocity : omega =',E10.3,' rad/s'/ & 1811 ' Coriolis parameter : f = ',F9.6,' 1/s'/ & 1866 1812 ' f* = ',F9.6,' 1/s') 1867 1813 411 FORMAT (/' Gravity : g = ',F4.1,' m/s**2') … … 1869 1815 413 FORMAT (' Reference density in buoyancy terms: ',F8.3,' kg/m**3') 1870 1816 414 FORMAT (' Reference temperature in buoyancy terms: ',F8.4,' K') 1871 420 FORMAT (/' Characteristic levels of the initial temperature profile:'// &1872 ' Height: ',A,' m'/ &1873 ' Temperature: ',A,' K'/ &1874 ' Gradient: ',A,' K/100m'/ &1817 420 FORMAT (/' Characteristic levels of the initial temperature profile:'// & 1818 ' Height: ',A,' m'/ & 1819 ' Temperature: ',A,' K'/ & 1820 ' Gradient: ',A,' K/100m'/ & 1875 1821 ' Gridpoint: ',A) 1876 421 FORMAT (/' Characteristic levels of the initial humidity profile:'// &1877 ' Height: ',A,' m'/ &1878 ' Humidity: ',A,' kg/kg'/ &1879 ' Gradient: ',A,' (kg/kg)/100m'/ &1822 421 FORMAT (/' Characteristic levels of the initial humidity profile:'// & 1823 ' Height: ',A,' m'/ & 1824 ' Humidity: ',A,' kg/kg'/ & 1825 ' Gradient: ',A,' (kg/kg)/100m'/ & 1880 1826 ' Gridpoint: ',A) 1881 422 FORMAT (/' Characteristic levels of the initial scalar profile:'// &1882 ' Height: ',A,' m'/ &1883 ' Scalar concentration: ',A,' kg/m**3'/ &1884 ' Gradient: ',A,' (kg/m**3)/100m'/ &1827 422 FORMAT (/' Characteristic levels of the initial scalar profile:'// & 1828 ' Height: ',A,' m'/ & 1829 ' Scalar concentration: ',A,' kg/m**3'/ & 1830 ' Gradient: ',A,' (kg/m**3)/100m'/ & 1885 1831 ' Gridpoint: ',A) 1886 423 FORMAT (/' Characteristic levels of the geo. wind component ug:'// &1887 ' Height: ',A,' m'/ &1888 ' ug: ',A,' m/s'/ &1889 ' Gradient: ',A,' 1/100s'/ &1832 423 FORMAT (/' Characteristic levels of the geo. wind component ug:'// & 1833 ' Height: ',A,' m'/ & 1834 ' ug: ',A,' m/s'/ & 1835 ' Gradient: ',A,' 1/100s'/ & 1890 1836 ' Gridpoint: ',A) 1891 424 FORMAT (/' Characteristic levels of the geo. wind component vg:'// &1892 ' Height: ',A,' m'/ &1893 ' vg: ',A,' m/s'/ &1894 ' Gradient: ',A,' 1/100s'/ &1837 424 FORMAT (/' Characteristic levels of the geo. wind component vg:'// & 1838 ' Height: ',A,' m'/ & 1839 ' vg: ',A,' m/s'/ & 1840 ' Gradient: ',A,' 1/100s'/ & 1895 1841 ' Gridpoint: ',A) 1896 425 FORMAT (/' Characteristic levels of the initial salinity profile:'// &1897 ' Height: ',A,' m'/ &1898 ' Salinity: ',A,' psu'/ &1899 ' Gradient: ',A,' psu/100m'/ &1842 425 FORMAT (/' Characteristic levels of the initial salinity profile:'// & 1843 ' Height: ',A,' m'/ & 1844 ' Salinity: ',A,' psu'/ & 1845 ' Gradient: ',A,' psu/100m'/ & 1900 1846 ' Gridpoint: ',A) 1901 426 FORMAT (/' Characteristic levels of the subsidence/ascent profile:'// &1902 ' Height: ',A,' m'/ &1903 ' w_subs: ',A,' m/s'/ &1904 ' Gradient: ',A,' (m/s)/100m'/ &1847 426 FORMAT (/' Characteristic levels of the subsidence/ascent profile:'// & 1848 ' Height: ',A,' m'/ & 1849 ' w_subs: ',A,' m/s'/ & 1850 ' Gradient: ',A,' (m/s)/100m'/ & 1905 1851 ' Gridpoint: ',A) 1906 427 FORMAT (/' Initial wind profiles (u,v) are interpolated from given'// &1852 427 FORMAT (/' Initial wind profiles (u,v) are interpolated from given'// & 1907 1853 ' profiles') 1908 428 FORMAT (/' Initial profiles (u, v, pt, q) are taken from file '/ &1854 428 FORMAT (/' Initial profiles (u, v, pt, q) are taken from file '/ & 1909 1855 ' NUDGING_DATA') 1910 430 FORMAT (//' Cloud physics quantities / methods:'/ &1856 430 FORMAT (//' Cloud physics quantities / methods:'/ & 1911 1857 ' ----------------------------------'/) 1912 1858 431 FORMAT (' Humidity is considered, bu no condensation') 1913 450 FORMAT (//' LES / Turbulence quantities:'/ &1859 450 FORMAT (//' LES / Turbulence quantities:'/ & 1914 1860 ' ---------------------------'/) 1915 451 FORMAT (' Diffusion coefficients are constant:'/ &1861 451 FORMAT (' Diffusion coefficients are constant:'/ & 1916 1862 ' Km = ',F6.2,' m**2/s Kh = ',F6.2,' m**2/s Pr = ',F5.2) 1917 1863 453 FORMAT (' Mixing length is limited close to surfaces') … … 1919 1865 455 FORMAT (' initial TKE is prescribed as ',E9.2,' (m/s)**2') 1920 1866 456 FORMAT (/' Date and time at model start : ',A) 1921 457 FORMAT (' RANS-mode constants: c_0 = ',F9.5/ &1922 ' c_1 = ',F9.5/ &1923 ' c_2 = ',F9.5/ &1924 ' c_3 = ',F9.5/ &1925 ' c_4 = ',F9.5/ &1926 ' sigma_e = ',F9.5/ &1867 457 FORMAT (' RANS-mode constants: c_0 = ',F9.5/ & 1868 ' c_1 = ',F9.5/ & 1869 ' c_2 = ',F9.5/ & 1870 ' c_3 = ',F9.5/ & 1871 ' c_4 = ',F9.5/ & 1872 ' sigma_e = ',F9.5/ & 1927 1873 ' sigma_diss = ',F9.5) 1928 470 FORMAT (//' Actions during the simulation:'/ &1874 470 FORMAT (//' Actions during the simulation:'/ & 1929 1875 ' -----------------------------'/) 1930 471 FORMAT (' Disturbance impulse (u,v) every : ',F6.2,' s'/ &1931 ' Disturbance amplitude : ',F5.2, ' m/s'/ &1932 ' Lower disturbance level : ',F8.2,' m (GP ',I4,')'/ &1876 471 FORMAT (' Disturbance impulse (u,v) every : ',F6.2,' s'/ & 1877 ' Disturbance amplitude : ',F5.2, ' m/s'/ & 1878 ' Lower disturbance level : ',F8.2,' m (GP ',I4,')'/ & 1933 1879 ' Upper disturbance level : ',F8.2,' m (GP ',I4,')') 1934 472 FORMAT (' Disturbances continued during the run from i/j =',I4, & 1935 ' to i/j =',I4) 1936 473 FORMAT (' Disturbances cease as soon as the disturbance energy exceeds',& 1937 F6.3, ' m**2/s**2') 1880 472 FORMAT (' Disturbances continued during the run from i/j =',I4,' to i/j =',I4) 1881 473 FORMAT (' Disturbances cease as soon as the disturbance energy exceeds',F6.3, ' m**2/s**2') 1938 1882 474 FORMAT (' Random number generator used : ',A/) 1939 475 FORMAT (' The surface temperature is increased (or decreased, ', & 1940 'respectively, if'/ & 1941 ' the value is negative) by ',F5.2,' K at the beginning of the',& 1942 ' 3D-simulation'/) 1943 476 FORMAT (' The surface temperature increases (or decreases, ', & 1944 'respectively, if'/ & 1945 ' the value is negative) by ',F8.4,' K/h during the', & 1946 ' 3D-simulation'/) 1947 477 FORMAT (' The surface humidity is increased (or decreased, ',& 1948 'respectively, if the'/ & 1949 ' value is negative) by ',E8.1,' kg/kg at the beginning of', & 1950 ' the 3D-simulation'/) 1951 478 FORMAT (' The scalar value is increased at the surface (or decreased, ',& 1952 'respectively, if the'/ & 1953 ' value is negative) by ',E8.1,' kg/m**3 at the beginning of', & 1954 ' the 3D-simulation'/) 1955 500 FORMAT (//' 1D-Model parameters:'/ & 1956 ' -------------------'// & 1957 ' Simulation time: ',F8.1,' s'/ & 1958 ' Run-controll output every: ',F8.1,' s'/ & 1959 ' Vertical profile output every: ',F8.1,' s'/ & 1960 ' Mixing length calculation: ',A/ & 1883 475 FORMAT (' The surface temperature is increased (or decreased, ','respectively, if'/ & 1884 ' the value is negative) by ',F5.2,' K at the beginning of the',' 3D-simulation'/) 1885 476 FORMAT (' The surface temperature increases (or decreases, ','respectively, if'/ & 1886 ' the value is negative) by ',F8.4,' K/h during the',' 3D-simulation'/) 1887 477 FORMAT (' The surface humidity is increased (or decreased, ','respectively, if the'/ & 1888 ' value is negative) by ',E8.1,' kg/kg at the beginning of',' the 3D-simulation'/) 1889 478 FORMAT (' The scalar value is increased at the surface (or decreased, ', & 1890 'respectively, if the'/ & 1891 ' value is negative) by ',E8.1,' kg/m**3 at the beginning of',' the 3D-simulation'/) 1892 500 FORMAT (//' 1D-Model parameters:'/ & 1893 ' -------------------'// & 1894 ' Simulation time: ',F8.1,' s'/ & 1895 ' Run-controll output every: ',F8.1,' s'/ & 1896 ' Vertical profile output every: ',F8.1,' s'/ & 1897 ' Mixing length calculation: ',A/ & 1961 1898 ' Dissipation calculation: ',A/) 1962 1899 502 FORMAT (' Damping layer starts from ',F7.1,' m (GP ',I4,')'/) 1963 1900 503 FORMAT (' --> Momentum advection via Wicker-Skamarock-Scheme 5th order') 1964 1901 504 FORMAT (' --> Scalar advection via Wicker-Skamarock-Scheme 5th order') 1965 512 FORMAT (/' Date: ',A10,6X,'Run: ',A34/ &1966 ' Time: ',A8,6X,'Run-No.: ',I2.2/ &1902 512 FORMAT (/' Date: ',A10,6X,'Run: ',A34/ & 1903 ' Time: ',A8,6X,'Run-No.: ',I2.2/ & 1967 1904 ' Run on host: ',A10,6X,'En-No.: ',I2.2) 1968 1905 #if defined( __parallel ) 1969 600 FORMAT (/' Nesting informations:'/ &1970 ' --------------------'/ &1971 ' Nesting mode: ',A/ &1972 ' Nesting-datatransfer mode: ',A// &1973 ' Nest id parent number lower left coordinates name'/ &1974 ' (*=me) id of PEs x (m) y (m)' 1906 600 FORMAT (/' Nesting informations:'/ & 1907 ' --------------------'/ & 1908 ' Nesting mode: ',A/ & 1909 ' Nesting-datatransfer mode: ',A// & 1910 ' Nest id parent number lower left coordinates name'/ & 1911 ' (*=me) id of PEs x (m) y (m)') 1975 1912 601 FORMAT (2X,A1,1X,I2.2,6X,I2.2,5X,I5,5X,F8.2,2X,F8.2,5X,A) 1976 1913 #endif -
palm/trunk/SOURCE/indoor_model_mod.f90
r4481 r4646 1 1 !> @file indoor_model_mod.f90 2 !-------------------------------------------------------------------------------- !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 2018-2020 Leibniz Universitaet Hannover 18 17 ! Copyright 2018-2020 Hochschule Offenburg 19 !-------------------------------------------------------------------------------- !18 !--------------------------------------------------------------------------------------------------! 20 19 ! 21 20 ! Current revisions: 22 21 ! ----------------- 23 ! 24 ! 22 ! 23 ! 25 24 ! Former revisions: 26 25 ! ----------------- 27 26 ! $Id$ 28 ! Change order of dimension in surface array %frac to allow for better 29 ! vectorization. 30 ! 27 ! file re-formatted to follow the PALM coding standard 28 ! 29 ! 4481 2020-03-31 18:55:54Z maronga 30 ! Change order of dimension in surface array %frac to allow for better vectorization. 31 ! 31 32 ! 4441 2020-03-04 19:20:35Z suehring 32 ! Major bugfix in calculation of energy demand - floor-area-per-facade was wrongly 33 ! calculated leading to unrealistically high energy demands and thus to34 ! unreallistically high waste-heatfluxes.35 ! 33 ! Major bugfix in calculation of energy demand - floor-area-per-facade was wrongly calculated 34 ! leading to unrealistically high energy demands and thus to unreallistically high waste-heat 35 ! fluxes. 36 ! 36 37 ! 4346 2019-12-18 11:55:56Z motisi 37 ! Introduction of wall_flags_total_0, which currently sets bits based on static 38 ! topographyinformation used in wall_flags_static_039 ! 38 ! Introduction of wall_flags_total_0, which currently sets bits based on static topography 39 ! information used in wall_flags_static_0 40 ! 40 41 ! 4329 2019-12-10 15:46:36Z motisi 41 42 ! Renamed wall_flags_0 to wall_flags_static_0 42 ! 43 ! 43 44 ! 4310 2019-11-26 19:01:28Z suehring 44 ! Remove dt_indoor from namelist input. The indoor model is an hourly-based 45 ! mo del, calling it more/less often lead to inaccurate results.46 ! 45 ! Remove dt_indoor from namelist input. The indoor model is an hourly-based model, calling it 46 ! more/less often lead to inaccurate results. 47 ! 47 48 ! 4299 2019-11-22 10:13:38Z suehring 48 ! Output of indoor temperature revised (to avoid non-defined values within 49 ! buildings) 50 ! 49 ! Output of indoor temperature revised (to avoid non-defined values within buildings) 50 ! 51 51 ! 4267 2019-10-16 18:58:49Z suehring 52 52 ! Bugfix in initialization, some indices to access building_pars where wrong. 53 53 ! Introduction of seasonal parameters. 54 ! 54 ! 55 55 ! 4246 2019-09-30 09:27:52Z pavelkrc 56 ! 57 ! 56 ! 57 ! 58 58 ! 4242 2019-09-27 12:59:10Z suehring 59 59 ! Bugfix in array index 60 ! 60 ! 61 61 ! 4238 2019-09-25 16:06:01Z suehring 62 62 ! - Bugfix in determination of minimum facade height and in location message 63 63 ! - Bugfix, avoid division by zero 64 ! - Some optimization 65 ! 64 ! - Some optimization 65 ! 66 66 ! 4227 2019-09-10 18:04:34Z gronemeier 67 67 ! implement new palm_date_time_mod … … 72 72 ! 4209 2019-09-02 12:00:03Z suehring 73 73 ! - Bugfix in initialization of indoor temperature 74 ! - Prescibe default indoor temperature in case it is not given in the 75 ! namelist input 74 ! - Prescibe default indoor temperature in case it is not given in the namelist input 76 75 ! 77 76 ! 4182 2019-08-21 14:37:54Z scharf 78 77 ! Corrected "Former revisions" section 79 ! 78 ! 80 79 ! 4148 2019-08-08 11:26:00Z suehring 81 ! Bugfix in case of non grid-resolved buildings. Further, vertical grid spacing 82 ! is now considered at the correct level.80 ! Bugfix in case of non grid-resolved buildings. Further, vertical grid spacing is now considered at 81 ! the correct level. 83 82 ! - change calculation of a_m and c_m 84 83 ! - change calculation of u-values (use h_es in building array) … … 93 92 ! in building array 94 93 ! - change calculation of q_waste_heat 95 ! - bugfix in averaging mean indoor temperature 96 ! 94 ! - bugfix in averaging mean indoor temperature 95 ! 97 96 ! 3759 2019-02-21 15:53:45Z suehring 98 97 ! - Calculation of total building volume 99 98 ! - Several bugfixes 100 99 ! - Calculation of building height revised 101 ! 100 ! 102 101 ! 3745 2019-02-15 18:57:56Z suehring 103 102 ! - remove building_type from module 104 ! - initialize parameters for each building individually instead of a bulk 105 ! i nitializaion with identical building type for all103 ! - initialize parameters for each building individually instead of a bulk initializaion with 104 ! identical building type for all 106 105 ! - output revised 107 106 ! - add missing _wp 108 107 ! - some restructuring of variables in building data structure 109 ! 108 ! 110 109 ! 3744 2019-02-15 18:38:58Z suehring 111 110 ! Some interface calls moved to module_interface + cleanup 112 ! 111 ! 113 112 ! 3469 2018-10-30 20:05:07Z kanani 114 113 ! Initial revision (tlang, suehring, kanani, srissman)! … … 125 124 ! Description: 126 125 ! ------------ 127 !> <Description of the new module>128 126 !> Module for Indoor Climate Model (ICM) 129 127 !> The module is based on the DIN EN ISO 13790 with simplified hour-based procedure. 130 128 !> This model is a equivalent circuit diagram of a three-point RC-model (5R1C). 131 !> This module differ between indoor-air temperature an average temperature of indoor surfaces which make it prossible to determine thermal comfort 132 !> the heat transfer between indoor and outdoor is simplified 133 129 !> This module differs between indoor-air temperature an average temperature of indoor surfaces which make it prossible to determine 130 !> thermal comfort 131 !> the heat transfer between indoor and outdoor is simplified 132 133 !> @todo Many statement comments that are given as doxygen comments need to be changed to normal comments 134 134 !> @todo Replace window_area_per_facade by %frac(1,m) for window 135 !> @todo emissivity change for window blinds if solar_protection_on=1 135 !> @todo emissivity change for window blinds if solar_protection_on=1 136 136 137 137 !> @note Do we allow use of integer flags, or only logical flags? (concerns e.g. cooling_on, heating_on) … … 139 139 !> 140 140 !> @bug <Enter known bugs here> 141 !------------------------------------------------------------------------------ !142 MODULE indoor_model_mod 143 144 USE arrays_3d, &145 ONLY: ddzw, &146 dzw, &141 !--------------------------------------------------------------------------------------------------! 142 MODULE indoor_model_mod 143 144 USE arrays_3d, & 145 ONLY: ddzw, & 146 dzw, & 147 147 pt 148 148 149 USE control_parameters, &149 USE control_parameters, & 150 150 ONLY: initializing_actions 151 151 152 152 USE kinds 153 154 USE netcdf_data_input_mod, &153 154 USE netcdf_data_input_mod, & 155 155 ONLY: building_id_f, building_type_f 156 156 157 USE palm_date_time_mod, & 158 ONLY: get_date_time, northward_equinox, seconds_per_hour, & 159 southward_equinox 160 161 USE surface_mod, & 157 USE palm_date_time_mod, & 158 ONLY: get_date_time, northward_equinox, seconds_per_hour, southward_equinox 159 160 USE surface_mod, & 162 161 ONLY: surf_usm_h, surf_usm_v 163 162 … … 170 169 171 170 INTEGER(iwp) :: id !< building ID 171 INTEGER(iwp) :: kb_max !< highest vertical index of a building 172 172 INTEGER(iwp) :: kb_min !< lowest vertical index of a building 173 INTEGER(iwp) :: kb_max !< highest vertical index of a building174 173 INTEGER(iwp) :: num_facades_per_building_h = 0 !< total number of horizontal facades elements 175 174 INTEGER(iwp) :: num_facades_per_building_h_l = 0 !< number of horizontal facade elements on local subdomain … … 179 178 180 179 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: l_v !< index array linking surface-element orientation index 181 !< for vertical surfaces with building 180 !< for vertical surfaces with building 182 181 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: m_h !< index array linking surface-element index for 183 182 !< horizontal surfaces with building 184 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: m_v !< index array linking surface-element index for 183 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: m_v !< index array linking surface-element index for 185 184 !< vertical surfaces with building 186 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facade_h !< number of horizontal facade elements per buidling 185 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facade_h !< number of horizontal facade elements per buidling 187 186 !< and height level 188 187 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facade_v !< number of vertical facades elements per buidling 189 188 !< and height level 190 189 191 190 192 191 LOGICAL :: on_pe = .FALSE. !< flag indicating whether a building with certain ID is on local subdomain 193 192 194 193 REAL(wp) :: air_change_high !< [1/h] air changes per time_utc_hour 195 194 REAL(wp) :: air_change_low !< [1/h] air changes per time_utc_hour … … 199 198 REAL(wp) :: factor_a !< [-] Dynamic parameters specific effective surface according to Table 12; 2.5 200 199 !< (very light, light and medium), 3.0 (heavy), 3.5 (very heavy) 201 REAL(wp) :: factor_c !< [J/(m2 K)] Dynamic parameters inner heatstorage according to Table 12; 80000 200 REAL(wp) :: factor_c !< [J/(m2 K)] Dynamic parameters inner heatstorage according to Table 12; 80000 202 201 !< (very light), 110000 (light), 165000 (medium), 260000 (heavy), 370000 (very heavy) 203 202 REAL(wp) :: f_c_win !< [-] shading factor 204 203 REAL(wp) :: fapf !< [m2/m2] floor area per facade 205 204 REAL(wp) :: g_value_win !< [-] SHGC factor 206 REAL(wp) :: h_es !< [W/(m2 K)] surface-related heat transfer coefficient between extern and surface 205 REAL(wp) :: h_es !< [W/(m2 K)] surface-related heat transfer coefficient between extern and surface 207 206 REAL(wp) :: height_cei_con !< [m] ceiling construction heigth 208 207 REAL(wp) :: height_storey !< [m] storey heigth 209 208 REAL(wp) :: params_waste_heat_c !< [-] anthropogenic heat outputs for cooling e.g. 1.33 for KKM with COP = 3 210 REAL(wp) :: params_waste_heat_h !< [-] anthropogenic heat outputs for heating e.g. 1 - 0.9 = 0.1 for combustion with eta = 0.9 or -2 for WP with COP = 3 209 REAL(wp) :: params_waste_heat_h !< [-] anthropogenic heat outputs for heating e.g. 1 - 0.9 = 0.1 for combustion with 210 !< eta = 0.9 or -2 for WP with COP = 3 211 211 REAL(wp) :: phi_c_max !< [W] Max. Cooling capacity (negative) 212 212 REAL(wp) :: phi_h_max !< [W] Max. Heating capacity (positive) … … 229 229 REAL(wp), DIMENSION(:), ALLOCATABLE :: vol_frac !< fraction of local on total building volume, height dependent 230 230 REAL(wp), DIMENSION(:), ALLOCATABLE :: vpf !< building volume volume per facade element, height dependent 231 231 232 232 END TYPE build 233 233 … … 237 237 ! 238 238 !-- Declare all global variables within the module 239 240 REAL(wp), PARAMETER :: dt_indoor = 3600.0_wp !< [s] time interval for indoor-model application, fixed to 241 !< 3600.0 due to model requirements 242 REAL(wp), PARAMETER :: h_is = 3.45_wp !< [W/(m2 K)] surface-related heat transfer coefficient between 243 !< surface and air (chap. 7.2.2.2) 244 REAL(wp), PARAMETER :: h_ms = 9.1_wp !< [W/(m2 K)] surface-related heat transfer coefficient between 245 !< component and surface (chap. 12.2.2) 246 REAL(wp), PARAMETER :: params_f_f = 0.3_wp !< [-] frame ratio chap. 8.3.2.1.1 for buildings with mostly 247 !< cooling 2.0_wp 248 REAL(wp), PARAMETER :: params_f_w = 0.9_wp !< [-] correction factor (fuer nicht senkrechten Stahlungseinfall 249 !< DIN 4108-2 chap.8, (hier konstant, keine WinkelabhÀngigkeit) 250 REAL(wp), PARAMETER :: params_f_win = 0.5_wp !< [-] proportion of window area, Database A_win aus 251 !< Datenbank 27 window_area_per_facade_percent 252 REAL(wp), PARAMETER :: params_solar_protection = 300.0_wp !< [W/m2] chap. G.5.3.1 sun protection closed, if the radiation 253 !< on facade exceeds this value 254 239 255 INTEGER(iwp) :: cooling_on !< Indoor cooling flag (0=off, 1=on) 240 256 INTEGER(iwp) :: heating_on !< Indoor heating flag (0=off, 1=on) … … 242 258 INTEGER(iwp) :: solar_protection_on !< Solar protection on 243 259 244 REAL(wp), PARAMETER :: dt_indoor = 3600.0_wp !< [s] time interval for indoor-model application, fixed to 3600.0 due to model requirements245 260 246 261 REAL(wp) :: a_m !< [m2] the effective mass-related area … … 251 266 REAL(wp) :: h_t_1 !< [W/K] Heat transfer coefficient auxiliary variable 1 252 267 REAL(wp) :: h_t_2 !< [W/K] Heat transfer coefficient auxiliary variable 2 253 REAL(wp) :: h_t_3 !< [W/K] Heat transfer coefficient auxiliary variable 3 254 REAL(wp) :: h_t_wm !< [W/K] Heat transfer coefficient of the emmision (got with h_t_ms the thermal mass) 268 REAL(wp) :: h_t_3 !< [W/K] Heat transfer coefficient auxiliary variable 3 269 REAL(wp) :: h_t_es !< [W/K] heat transfer coefficient of doors, windows, curtain walls and 270 !< glazed walls (assumption: thermal mass=0) 255 271 REAL(wp) :: h_t_is !< [W/K] thermal coupling conductance (Thermischer Kopplungsleitwert) 256 272 REAL(wp) :: h_t_ms !< [W/K] Heat transfer conductance term (got with h_t_wm the thermal mass) 257 273 REAL(wp) :: h_t_wall !< [W/K] heat transfer coefficient of opaque components (assumption: got all 258 274 !< thermal mass) contains of h_t_wm and h_t_ms 259 REAL(wp) :: h_t_ es !< [W/K] heat transfer coefficient of doors, windows, curtain walls and260 !< glazed walls (assumption: thermal mass=0)275 REAL(wp) :: h_t_wm !< [W/K] Heat transfer coefficient of the emmision (got with h_t_ms the 276 !< thermal mass) 261 277 REAL(wp) :: h_v !< [W/K] heat transfer of ventilation 262 278 REAL(wp) :: indoor_volume_per_facade !< [m3] indoor air volume per facade element … … 264 280 REAL(wp) :: net_sw_in !< [W/m2] net short-wave radiation 265 281 REAL(wp) :: phi_hc_nd !< [W] heating demand and/or cooling demand 266 REAL(wp) :: phi_hc_nd_10 !< [W] heating demand and/or cooling demand for heating or cooling 282 REAL(wp) :: phi_hc_nd_10 !< [W] heating demand and/or cooling demand for heating or cooling 267 283 REAL(wp) :: phi_hc_nd_ac !< [W] actual heating demand and/or cooling demand 268 284 REAL(wp) :: phi_hc_nd_un !< [W] unlimited heating demand and/or cooling demand which is necessary to 269 !< reach the demanded required temperature (heating is positive, 270 !< cooling is negative) 285 !< reach the demanded required temperature (heating is positive, 286 !< cooling is negative) 271 287 REAL(wp) :: phi_ia !< [W] internal air load = internal loads * 0.5, Eq. (C.1) 272 288 REAL(wp) :: phi_m !< [W] mass specific thermal load (internal and external) 273 289 REAL(wp) :: phi_mtot !< [W] total mass specific thermal load (internal and external) 274 290 REAL(wp) :: phi_sol !< [W] solar loads 275 REAL(wp) :: phi_st !< [W] mass specific thermal load implied non thermal mass 291 REAL(wp) :: phi_st !< [W] mass specific thermal load implied non thermal mass 276 292 REAL(wp) :: q_wall_win !< [W/m2]heat flux from indoor into wall/window 277 293 REAL(wp) :: q_waste_heat !< [W/m2]waste heat, sum of waste heat over the roof to Palm 278 294 279 295 REAL(wp) :: q_c_m !< [W] Energy of thermal storage mass specific thermal load for internal 280 296 !< and external heatsources (for energy bilanz) 281 REAL(wp) :: q_c_st !< [W] Energy of thermal storage mass specific thermal load implied non thermal mass (for energy bilanz) 297 REAL(wp) :: q_c_st !< [W] Energy of thermal storage mass specific thermal load implied non 298 !< thermal mass (for energy bilanz) 282 299 REAL(wp) :: q_int !< [W] Energy of internal air load (for energy bilanz) 283 300 REAL(wp) :: q_sol !< [W] Energy of solar (for energy bilanz) 284 301 REAL(wp) :: q_trans !< [W] Energy of transmission (for energy bilanz) 285 302 REAL(wp) :: q_vent !< [W] Energy of ventilation (for energy bilanz) 286 303 287 304 REAL(wp) :: schedule_d !< [-] activation for internal loads (low or high + low) 288 305 REAL(wp) :: skip_time_do_indoor = 0.0_wp !< [s] Indoor model is not called before this time 289 306 REAL(wp) :: theta_air !< [degree_C] air temperature of the RC-node 290 307 REAL(wp) :: theta_air_0 !< [degree_C] air temperature of the RC-node in equilibrium 291 REAL(wp) :: theta_air_10 !< [degree_C] air temperature of the RC-node from a heating capacity 308 REAL(wp) :: theta_air_10 !< [degree_C] air temperature of the RC-node from a heating capacity 292 309 !< of 10 W/m2 293 310 REAL(wp) :: theta_air_ac !< [degree_C] actual room temperature after heating/cooling … … 301 318 REAL(wp) :: total_area !< [m2] area of all surfaces pointing to zone 302 319 REAL(wp) :: window_area_per_facade !< [m2] window area per facade element 303 304 REAL(wp), PARAMETER :: h_is = 3.45_wp !< [W/(m2 K)] surface-related heat transfer coefficient between 305 !< surface and air (chap. 7.2.2.2) 306 REAL(wp), PARAMETER :: h_ms = 9.1_wp !< [W/(m2 K)] surface-related heat transfer coefficient between component and surface (chap. 12.2.2) 307 REAL(wp), PARAMETER :: params_f_f = 0.3_wp !< [-] frame ratio chap. 8.3.2.1.1 for buildings with mostly cooling 2.0_wp 308 REAL(wp), PARAMETER :: params_f_w = 0.9_wp !< [-] correction factor (fuer nicht senkrechten Stahlungseinfall 309 !< DIN 4108-2 chap.8, (hier konstant, keine WinkelabhÀngigkeit) 310 REAL(wp), PARAMETER :: params_f_win = 0.5_wp !< [-] proportion of window area, Database A_win aus 311 !< Datenbank 27 window_area_per_facade_percent 312 REAL(wp), PARAMETER :: params_solar_protection = 300.0_wp !< [W/m2] chap. G.5.3.1 sun protection closed, if the radiation 313 !< on facade exceeds this value 320 314 321 ! 315 322 !-- Definition of seasonal parameters, summer and winter, for different building types 316 REAL(wp), DIMENSION(0:1,1:7) :: summer_pars = RESHAPE( (/ & ! building_type 1 317 0.5_wp, & ! basical airflow without occupancy of the room 318 2.0_wp, & ! additional airflow depend of occupancy of the room 319 0.5_wp, & ! building_type 2: basical airflow without occupancy of the room 320 2.0_wp, & ! additional airflow depend of occupancy of the room 321 0.8_wp, & ! building_type 3: basical airflow without occupancy of the room 322 2.0_wp, & ! additional airflow depend of occupancy of the room 323 0.1_wp, & ! building_type 4: basical airflow without occupancy of the room 324 1.5_wp, & ! additional airflow depend of occupancy of the room 325 0.1_wp, & ! building_type 5: basical airflow without occupancy of the room 326 1.5_wp, & ! additional airflow depend of occupancy of the room 327 0.1_wp, & ! building_type 6: basical airflow without occupancy of the room 328 1.5_wp, & ! additional airflow depend of occupancy of the room 329 0.1_wp, & ! building_type 7: basical airflow without occupancy of the room 330 1.5_wp & ! additional airflow depend of occupancy of the room 323 REAL(wp), DIMENSION(0:1,1:7) :: summer_pars = RESHAPE( (/ & ! building_type 1 324 0.5_wp, & ! basical airflow without occupancy of the room 325 2.0_wp, & ! additional airflow depend of occupancy of the room 326 0.5_wp, & ! building_type 2: basical airflow without occupancy 327 ! of the room 328 2.0_wp, & ! additional airflow depend of occupancy of the room 329 0.8_wp, & ! building_type 3: basical airflow without occupancy 330 ! of the room 331 2.0_wp, & ! additional airflow depend of occupancy of the room 332 0.1_wp, & ! building_type 4: basical airflow without occupancy 333 ! of the room 334 1.5_wp, & ! additional airflow depend of occupancy of the room 335 0.1_wp, & ! building_type 5: basical airflow without occupancy 336 ! of the room 337 1.5_wp, & ! additional airflow depend of occupancy of the room 338 0.1_wp, & ! building_type 6: basical airflow without occupancy 339 ! of the room 340 1.5_wp, & ! additional airflow depend of occupancy of the room 341 0.1_wp, & ! building_type 7: basical airflow without occupancy 342 ! of the room 343 1.5_wp & ! additional airflow depend of occupancy of the room 331 344 /), (/ 2, 7 /) ) 332 345 333 REAL(wp), DIMENSION(0:1,1:7) :: winter_pars = RESHAPE( (/ & ! building_type 1 334 0.1_wp, & ! basical airflow without occupancy of the room 335 0.5_wp, & ! additional airflow depend of occupancy of the room 336 0.1_wp, & ! building_type 2: basical airflow without occupancy of the room 337 0.5_wp, & ! additional airflow depend of occupancy of the room 338 0.1_wp, & ! building_type 3: basical airflow without occupancy of the room 339 0.5_wp, & ! additional airflow depend of occupancy of the room 340 0.1_wp, & ! building_type 4: basical airflow without occupancy of the room 341 1.5_wp, & ! additional airflow depend of occupancy of the room 342 0.1_wp, & ! building_type 5: basical airflow without occupancy of the room 343 1.5_wp, & ! additional airflow depend of occupancy of the room 344 0.1_wp, & ! building_type 6: basical airflow without occupancy of the room 345 1.5_wp, & ! additional airflow depend of occupancy of the room 346 0.1_wp, & ! building_type 7: basical airflow without occupancy of the room 347 1.5_wp & ! additional airflow depend of occupancy of the room 346 REAL(wp), DIMENSION(0:1,1:7) :: winter_pars = RESHAPE( (/ & ! building_type 1 347 0.1_wp, & ! basical airflow without occupancy of the room 348 0.5_wp, & ! additional airflow depend of occupancy of the room 349 0.1_wp, & ! building_type 2: basical airflow without occupancy 350 ! of the room 351 0.5_wp, & ! additional airflow depend of occupancy of the room 352 0.1_wp, & ! building_type 3: basical airflow without occupancy 353 ! of the room 354 0.5_wp, & ! additional airflow depend of occupancy of the room 355 0.1_wp, & ! building_type 4: basical airflow without occupancy 356 ! of the room 357 1.5_wp, & ! additional airflow depend of occupancy of the room 358 0.1_wp, & ! building_type 5: basical airflow without occupancy 359 ! of the room 360 1.5_wp, & ! additional airflow depend of occupancy of the room 361 0.1_wp, & ! building_type 6: basical airflow without occupancy 362 ! of the room 363 1.5_wp, & ! additional airflow depend of occupancy of the room 364 0.1_wp, & ! building_type 7: basical airflow without occupancy 365 ! of the room 366 1.5_wp & ! additional airflow depend of occupancy of the room 348 367 /), (/ 2, 7 /) ) 349 368 … … 352 371 353 372 PRIVATE 354 373 355 374 ! 356 375 !-- Add INTERFACES that must be available to other modules 357 PUBLIC im_init, im_main_heatcool, im_parin, im_define_netcdf_grid, 358 im_ check_data_output, im_data_output_3d, im_check_parameters359 376 PUBLIC im_init, im_main_heatcool, im_parin, im_define_netcdf_grid, im_check_data_output, & 377 im_data_output_3d, im_check_parameters 378 360 379 361 380 ! … … 385 404 MODULE PROCEDURE im_define_netcdf_grid 386 405 END INTERFACE im_define_netcdf_grid 387 ! 406 ! 388 407 ! ! 389 408 ! !-- Output of information to the header file … … 392 411 ! END INTERFACE im_header 393 412 ! 394 !-- Calculations for indoor temperatures 413 !-- Calculations for indoor temperatures 395 414 INTERFACE im_calc_temperatures 396 415 MODULE PROCEDURE im_calc_temperatures 397 416 END INTERFACE im_calc_temperatures 398 417 ! 399 !-- Initialization actions 418 !-- Initialization actions 400 419 INTERFACE im_init 401 420 MODULE PROCEDURE im_init 402 421 END INTERFACE im_init 403 422 ! 404 !-- Main part of indoor model 423 !-- Main part of indoor model 405 424 INTERFACE im_main_heatcool 406 425 MODULE PROCEDURE im_main_heatcool … … 414 433 CONTAINS 415 434 416 !------------------------------------------------------------------------------ !435 !--------------------------------------------------------------------------------------------------! 417 436 ! Description: 418 437 ! ------------ 419 !< Calculation of the air temperatures and mean radiation temperature 420 !< This is basis for the operative temperature 421 !< Based on a Crank-Nicholson scheme with a timestep of a hour 422 !------------------------------------------------------------------------------ !423 SUBROUTINE im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, &438 !< Calculation of the air temperatures and mean radiation temperature. 439 !< This is basis for the operative temperature. 440 !< Based on a Crank-Nicholson scheme with a timestep of a hour. 441 !--------------------------------------------------------------------------------------------------! 442 SUBROUTINE im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 424 443 near_facade_temperature, phi_hc_nd_dummy ) 425 444 … … 427 446 INTEGER(iwp) :: j 428 447 INTEGER(iwp) :: k 429 448 430 449 REAL(wp) :: indoor_wall_window_temperature !< weighted temperature of innermost wall/window layer 431 450 REAL(wp) :: near_facade_temperature … … 433 452 ! 434 453 !-- Calculation of total mass specific thermal load (internal and external) 435 phi_mtot = ( phi_m + h_t_wm * indoor_wall_window_temperature &436 + h_t_3 * ( phi_st + h_t_es * pt(k,j,i) &437 + h_t_1 * &438 ( ( ( phi_ia + phi_hc_nd_dummy ) / h_v ) &439 + near_facade_temperature ) &440 ) / h_t_2&454 phi_mtot = ( phi_m + h_t_wm * indoor_wall_window_temperature & 455 + h_t_3 * ( phi_st + h_t_es * pt(k,j,i) & 456 + h_t_1 * & 457 ( ( ( phi_ia + phi_hc_nd_dummy ) / h_v ) & 458 + near_facade_temperature ) & 459 ) / h_t_2 & 441 460 ) !< [degree_C] Eq. (C.5) 442 ! 461 ! 443 462 !-- Calculation of component temperature at factual timestep 444 theta_m_t = ( ( theta_m_t_prev &445 * ( ( c_m / 3600.0_wp ) - 0.5_wp * ( h_t_3 + h_t_wm ) ) &446 + phi_mtot &447 ) &448 / ( ( c_m / 3600.0_wp ) + 0.5_wp * ( h_t_3 + h_t_wm ) ) &463 theta_m_t = ( ( theta_m_t_prev & 464 * ( ( c_m / 3600.0_wp ) - 0.5_wp * ( h_t_3 + h_t_wm ) ) & 465 + phi_mtot & 466 ) & 467 / ( ( c_m / 3600.0_wp ) + 0.5_wp * ( h_t_3 + h_t_wm ) ) & 449 468 ) !< [degree_C] Eq. (C.4) 450 469 ! 451 470 !-- Calculation of mean inner temperature for the RC-node in actual timestep 452 471 theta_m = ( theta_m_t + theta_m_t_prev ) * 0.5_wp !< [degree_C] Eq. (C.9) 453 472 454 473 ! 455 474 !-- Calculation of mean surface temperature of the RC-node in actual timestep 456 theta_s = ( ( h_t_ms * theta_m + phi_st + h_t_es * pt(k,j,i) &457 + h_t_1 * ( near_facade_temperature &458 + ( phi_ia + phi_hc_nd_dummy ) / h_v ) &459 ) &460 / ( h_t_ms + h_t_es + h_t_1 ) &475 theta_s = ( ( h_t_ms * theta_m + phi_st + h_t_es * pt(k,j,i) & 476 + h_t_1 * ( near_facade_temperature & 477 + ( phi_ia + phi_hc_nd_dummy ) / h_v ) & 478 ) & 479 / ( h_t_ms + h_t_es + h_t_1 ) & 461 480 ) !< [degree_C] Eq. (C.10) 462 481 463 482 ! 464 483 !-- Calculation of the air temperature of the RC-node 465 theta_air = ( h_t_is * theta_s + h_v * near_facade_temperature 466 + phi_ia + phi_hc_nd_dummy ) / ( h_t_is + h_v )!< [degree_C] Eq. (C.11)484 theta_air = ( h_t_is * theta_s + h_v * near_facade_temperature + phi_ia + phi_hc_nd_dummy ) / & 485 ( h_t_is + h_v ) !< [degree_C] Eq. (C.11) 467 486 468 487 END SUBROUTINE im_calc_temperatures 469 488 470 !------------------------------------------------------------------------------! 489 490 !--------------------------------------------------------------------------------------------------! 471 491 ! Description: 472 492 ! ------------ 473 493 !> Initialization of the indoor model. 474 !> Static information are calculated here, e.g. building parameters and 475 !> geometrical information, everything that doesn't change in time.494 !> Static information are calculated here, e.g. building parameters and geometrical information, 495 !> anything that doesn't change in time. 476 496 ! 477 497 !-- Input values … … 480 500 ! theta_e --> pt(k,j,i) !< undisturbed outside temperature, 1. PALM volume, for windows 481 501 ! theta_sup = theta_f --> surf_usm_h%pt_10cm(m) 482 ! surf_usm_v(l)%pt_10cm(m) !< Air temperature, facade near (10cm) air temperature from 1. Palm volume 502 ! surf_usm_v(l)%pt_10cm(m) !< Air temperature, facade near (10cm) air temperature from 503 !< 1. Palm volume 483 504 ! theta_node --> t_wall_h(nzt_wall,m) 484 505 ! t_wall_v(l)%t(nzt_wall,m) !< Temperature of innermost wall layer, for opaque wall 485 !------------------------------------------------------------------------------ !506 !--------------------------------------------------------------------------------------------------! 486 507 SUBROUTINE im_init 487 508 488 USE control_parameters, &509 USE control_parameters, & 489 510 ONLY: message_string, time_since_reference_point 490 511 491 USE indices, &512 USE indices, & 492 513 ONLY: nxl, nxr, nyn, nys, nzb, nzt, wall_flags_total_0 493 514 494 USE grid_variables, &515 USE grid_variables, & 495 516 ONLY: dx, dy 496 517 497 518 USE pegrid 498 519 499 USE surface_mod, &520 USE surface_mod, & 500 521 ONLY: surf_usm_h, surf_usm_v 501 502 USE urban_surface_mod, &522 523 USE urban_surface_mod, & 503 524 ONLY: building_pars, building_type 504 525 … … 514 535 515 536 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: build_ids !< building IDs on entire model domain 516 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: build_ids_final !< building IDs on entire model domain, 517 !< multiple occurences are sorted out 537 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: build_ids_final !< building IDs on entire model domain, 538 !< multiple occurences are sorted out 518 539 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: build_ids_final_tmp !< temporary array used for resizing 519 540 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: build_ids_l !< building IDs on local subdomain … … 523 544 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: k_min_l !< lowest vertical index of a building on subdomain 524 545 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: n_fa !< counting array 525 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facades_h !< dummy array used for summing-up total number of 546 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facades_h !< dummy array used for summing-up total number of 526 547 !< horizontal facade elements 527 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facades_v !< dummy array used for summing-up total number of 548 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: num_facades_v !< dummy array used for summing-up total number of 528 549 !< vertical facade elements 529 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: receive_dum_h !< dummy array used for MPI_ALLREDUCE 530 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: receive_dum_v !< dummy array used for MPI_ALLREDUCE 531 550 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: receive_dum_h !< dummy array used for MPI_ALLREDUCE 551 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: receive_dum_v !< dummy array used for MPI_ALLREDUCE 552 532 553 INTEGER(iwp), DIMENSION(0:numprocs-1) :: num_buildings !< number of buildings with different ID on entire model domain 533 554 INTEGER(iwp), DIMENSION(0:numprocs-1) :: num_buildings_l !< number of buildings with different ID on local subdomain 534 555 535 556 REAL(wp) :: u_tmp !< dummy for temporary calculation of u-value without h_is 536 557 REAL(wp) :: du_tmp !< 1/u_tmp … … 544 565 CALL location_message( 'initializing indoor model', 'start' ) 545 566 ! 546 !-- Initializing of indoor model is only possible if buildings can be 547 !-- distinguished by their IDs. 567 !-- Initializing of indoor model is only possible if buildings can be distinguished by their IDs. 548 568 IF ( .NOT. building_id_f%from_file ) THEN 549 569 message_string = 'Indoor model requires information about building_id' … … 559 579 IF ( building_id_f%var(j,i) /= building_id_f%fill ) THEN 560 580 IF ( num_buildings_l(myid) > 0 ) THEN 561 IF ( ANY( building_id_f%var(j,i) .EQ. build_ids_l ) ) THEN581 IF ( ANY( building_id_f%var(j,i) == build_ids_l ) ) THEN 562 582 CYCLE 563 583 ELSE … … 569 589 DEALLOCATE( build_ids_l ) 570 590 ALLOCATE( build_ids_l(1:num_buildings_l(myid)) ) 571 build_ids_l(1:num_buildings_l(myid)-1) = &572 build_ids_l_tmp(1:num_buildings_l(myid)-1)591 build_ids_l(1:num_buildings_l(myid)-1) = & 592 build_ids_l_tmp(1:num_buildings_l(myid)-1) 573 593 build_ids_l(num_buildings_l(myid)) = building_id_f%var(j,i) 574 594 DEALLOCATE( build_ids_l_tmp ) 575 595 ENDIF 576 596 ! 577 !-- First occuring building id on PE 578 ELSE 597 !-- First occuring building id on PE 598 ELSE 579 599 num_buildings_l(myid) = num_buildings_l(myid) + 1 580 600 build_ids_l(1) = building_id_f%var(j,i) … … 584 604 ENDDO 585 605 ! 586 !-- Determine number of building IDs for the entire domain. (Note, building IDs 587 !-- can appear multiple times as buildings might be distributed over several 588 !-- PEs.) 589 #if defined( __parallel ) 590 CALL MPI_ALLREDUCE( num_buildings_l, num_buildings, numprocs, & 591 MPI_INTEGER, MPI_SUM, comm2d, ierr ) 606 !-- Determine number of building IDs for the entire domain. (Note, building IDs can appear multiple 607 !-- times as buildings might be distributed over several PEs.) 608 #if defined( __parallel ) 609 CALL MPI_ALLREDUCE( num_buildings_l, num_buildings, numprocs, MPI_INTEGER, MPI_SUM, comm2d, & 610 ierr ) 592 611 #else 593 612 num_buildings = num_buildings_l … … 595 614 ALLOCATE( build_ids(1:SUM(num_buildings)) ) 596 615 ! 597 !-- Gather building IDs. Therefore, first, determine displacements used 598 !-- required for MPI_GATHERVcall.616 !-- Gather building IDs. Therefore, first, determine displacements used required for MPI_GATHERV 617 !-- call. 599 618 ALLOCATE( displace_dum(0:numprocs-1) ) 600 619 displace_dum(0) = 0 … … 603 622 ENDDO 604 623 605 #if defined( __parallel ) 606 CALL MPI_ALLGATHERV( build_ids_l(1:num_buildings_l(myid)), &607 num_buildings(myid), &608 MPI_INTEGER, &609 build_ids, &610 num_buildings, &611 displace_dum, &612 MPI_INTEGER, &613 comm2d, ierr ) 624 #if defined( __parallel ) 625 CALL MPI_ALLGATHERV( build_ids_l(1:num_buildings_l(myid)), & 626 num_buildings(myid), & 627 MPI_INTEGER, & 628 build_ids, & 629 num_buildings, & 630 displace_dum, & 631 MPI_INTEGER, & 632 comm2d, ierr ) 614 633 615 634 DEALLOCATE( displace_dum ) … … 619 638 #endif 620 639 ! 621 !-- Note: in parallel mode, building IDs can occur mutliple times, as 622 !-- each PE has send its own ids. Therefore, sort out building IDs which 623 !-- appear multiple times. 640 !-- Note: in parallel mode, building IDs can occur mutliple times, as each PE has send its own ids. 641 !-- Therefore, sort out building IDs which appear multiple times. 624 642 num_build = 0 625 643 DO n = 1, SIZE(build_ids) … … 639 657 build_ids_final(num_build) = build_ids(n) 640 658 DEALLOCATE( build_ids_final_tmp ) 641 ENDIF 659 ENDIF 642 660 ELSE 643 661 num_build = num_build + 1 … … 648 666 649 667 ! 650 !-- Allocate building-data structure array. Note, this is a global array 651 !-- and all building IDs on domain are known by each PE. Further attributes, 652 !-- e.g. height-dependent arrays, however, are only allocated on PEs where 653 !-- the respective building is present (in order to reduce memory demands). 668 !-- Allocate building-data structure array. Note, this is a global array and all building IDs on 669 !-- domain are known by each PE. Further attributes, e.g. height-dependent arrays, however, are only 670 !-- allocated on PEs where the respective building is present (in order to reduce memory demands). 654 671 ALLOCATE( buildings(1:num_build) ) 655 672 656 673 ! 657 !-- Store building IDs and check if building with certain ID is present on 658 !-- subdomain. 674 !-- Store building IDs and check if building with certain ID is present on subdomain. 659 675 DO nb = 1, num_build 660 676 buildings(nb)%id = build_ids_final(nb) 661 677 662 IF ( ANY( building_id_f%var(nys:nyn,nxl:nxr) == buildings(nb)%id ) ) &678 IF ( ANY( building_id_f%var(nys:nyn,nxl:nxr) == buildings(nb)%id ) ) & 663 679 buildings(nb)%on_pe = .TRUE. 664 ENDDO 665 ! 666 !-- Determine the maximum vertical dimension occupied by each building. 680 ENDDO 681 ! 682 !-- Determine the maximum vertical dimension occupied by each building. 667 683 ALLOCATE( k_min_l(1:num_build) ) 668 684 ALLOCATE( k_max_l(1:num_build) ) 669 685 k_min_l = nzt + 1 670 k_max_l = 0 686 k_max_l = 0 671 687 672 688 DO i = nxl, nxr 673 689 DO j = nys, nyn 674 690 IF ( building_id_f%var(j,i) /= building_id_f%fill ) THEN 675 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), & 676 DIM = 1 ) 691 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 677 692 DO k = nzb, nzt+1 678 693 ! 679 !-- Check if grid point belongs to a building. 694 !-- Check if grid point belongs to a building. 680 695 IF ( BTEST( wall_flags_total_0(k,j,i), 6 ) ) THEN 681 696 k_min_l(nb) = MIN( k_min_l(nb), k ) … … 688 703 ENDDO 689 704 690 #if defined( __parallel ) 691 CALL MPI_ALLREDUCE( k_min_l(:), buildings(:)%kb_min, num_build, 692 MPI_INTEGER, MPI_MIN, comm2d,ierr )693 CALL MPI_ALLREDUCE( k_max_l(:), buildings(:)%kb_max, num_build, 694 MPI_INTEGER, MPI_MAX, comm2d,ierr )705 #if defined( __parallel ) 706 CALL MPI_ALLREDUCE( k_min_l(:), buildings(:)%kb_min, num_build, MPI_INTEGER, MPI_MIN, comm2d, & 707 ierr ) 708 CALL MPI_ALLREDUCE( k_max_l(:), buildings(:)%kb_max, num_build, MPI_INTEGER, MPI_MAX, comm2d, & 709 ierr ) 695 710 #else 696 711 buildings(:)%kb_min = k_min_l(:) … … 705 720 buildings(nb)%building_height = 0.0_wp 706 721 DO k = buildings(nb)%kb_min, buildings(nb)%kb_max 707 buildings(nb)%building_height = buildings(nb)%building_height & 708 + dzw(k+1) 722 buildings(nb)%building_height = buildings(nb)%building_height + dzw(k+1) 709 723 ENDDO 710 724 ENDDO … … 719 733 volume_l = 0.0_wp 720 734 ! 721 !-- Calculate building volume per height level on each PE where 722 !-- these building is present. 735 !-- Calculate building volume per height level on each PE where these building is present. 723 736 IF ( buildings(nb)%on_pe ) THEN 724 737 … … 727 740 buildings(nb)%volume = 0.0_wp 728 741 buildings(nb)%vol_frac = 0.0_wp 729 730 IF ( ANY( building_id_f%var(nys:nyn,nxl:nxr) == buildings(nb)%id ) ) & 731 THEN 742 743 IF ( ANY( building_id_f%var(nys:nyn,nxl:nxr) == buildings(nb)%id ) ) THEN 732 744 DO i = nxl, nxr 733 745 DO j = nys, nyn 734 746 DO k = buildings(nb)%kb_min, buildings(nb)%kb_max 735 IF ( building_id_f%var(j,i) /= building_id_f%fill ) &747 IF ( building_id_f%var(j,i) /= building_id_f%fill ) & 736 748 volume_l(k) = volume_l(k) + dx * dy * dzw(k+1) 737 749 ENDDO … … 742 754 ! 743 755 !-- Sum-up building volume from all subdomains 744 #if defined( __parallel ) 745 CALL MPI_ALLREDUCE( volume_l, volume, SIZE(volume), MPI_REAL, MPI_SUM, & 746 comm2d, ierr ) 756 #if defined( __parallel ) 757 CALL MPI_ALLREDUCE( volume_l, volume, SIZE(volume), MPI_REAL, MPI_SUM, comm2d, ierr ) 747 758 #else 748 759 volume = volume_l 749 760 #endif 750 761 ! 751 !-- Save total building volume as well as local fraction on volume on 752 !-- building data structure. 762 !-- Save total building volume as well as local fraction on volume on building data structure. 753 763 IF ( ALLOCATED( buildings(nb)%volume ) ) buildings(nb)%volume = volume 754 764 ! … … 757 767 ! 758 768 !-- Calculate total building volume 759 IF ( ALLOCATED( buildings(nb)%volume ) ) & 760 buildings(nb)%vol_tot = SUM( buildings(nb)%volume ) 769 IF ( ALLOCATED( buildings(nb)%volume ) ) buildings(nb)%vol_tot = SUM( buildings(nb)%volume ) 761 770 762 771 DEALLOCATE( volume ) … … 765 774 ENDDO 766 775 ! 767 !-- Allocate arrays for indoor temperature. 776 !-- Allocate arrays for indoor temperature. 768 777 DO nb = 1, num_build 769 778 IF ( buildings(nb)%on_pe ) THEN … … 775 784 ENDDO 776 785 ! 777 !-- Allocate arrays for number of facades per height level. Distinguish between 778 !-- horizontal and vertical facades.786 !-- Allocate arrays for number of facades per height level. Distinguish between horizontal and 787 !-- vertical facades. 779 788 DO nb = 1, num_build 780 789 IF ( buildings(nb)%on_pe ) THEN … … 795 804 ! 796 805 !-- For the current facade element determine corresponding building index. 797 !-- First, obtain j,j,k indices of the building. Please note the 798 !-- offset between facade/surface element and building location (for799 !-- horizontal surface elements the horizontal offsets arezero).806 !-- First, obtain j,j,k indices of the building. Please note the offset between facade/surface 807 !-- element and building location (for horizontal surface elements the horizontal offsets are 808 !-- zero). 800 809 i = surf_usm_h%i(m) + surf_usm_h%ioff 801 810 j = surf_usm_h%j(m) + surf_usm_h%joff 802 811 k = surf_usm_h%k(m) + surf_usm_h%koff 803 812 ! 804 !-- Determine building index and check whether building is on PE 805 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM =1 )813 !-- Determine building index and check whether building is on PE. 814 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 806 815 807 816 IF ( buildings(nb)%on_pe ) THEN 808 817 ! 809 818 !-- Count number of facade elements at each height level. 810 buildings(nb)%num_facade_h(k) = buildings(nb)%num_facade_h(k) + 1 819 buildings(nb)%num_facade_h(k) = buildings(nb)%num_facade_h(k) + 1 811 820 ! 812 821 !-- Moreover, sum up number of local facade elements per building. 813 buildings(nb)%num_facades_per_building_h_l = &814 buildings(nb)%num_facades_per_building_h_l + 1822 buildings(nb)%num_facades_per_building_h_l = & 823 buildings(nb)%num_facades_per_building_h_l + 1 815 824 ENDIF 816 825 ENDDO … … 822 831 ! 823 832 !-- For the current facade element determine corresponding building index. 824 !-- First, obtain j,j,k indices of the building. Please note the 825 !-- offset between facade/surface element and building location (for826 !-- vertical surface elements the vertical offsets arezero).833 !-- First, obtain j,j,k indices of the building. Please note the offset between facade/surface 834 !-- element and building location (for vertical surface elements the vertical offsets are 835 !-- zero). 827 836 i = surf_usm_v(l)%i(m) + surf_usm_v(l)%ioff 828 837 j = surf_usm_v(l)%j(m) + surf_usm_v(l)%joff 829 838 k = surf_usm_v(l)%k(m) + surf_usm_v(l)%koff 830 839 831 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), & 832 DIM = 1 ) 840 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 833 841 IF ( buildings(nb)%on_pe ) THEN 834 buildings(nb)%num_facade_v(k) = buildings(nb)%num_facade_v(k) + 1 835 buildings(nb)%num_facades_per_building_v_l = &836 buildings(nb)%num_facades_per_building_v_l + 1842 buildings(nb)%num_facade_v(k) = buildings(nb)%num_facade_v(k) + 1 843 buildings(nb)%num_facades_per_building_v_l = & 844 buildings(nb)%num_facades_per_building_v_l + 1 837 845 ENDIF 838 846 ENDDO 839 847 ENDDO 840 848 ! 841 !-- Determine total number of facade elements per building and assign number to 842 !-- building data type. 849 !-- Determine total number of facade elements per building and assign number to building data type. 843 850 DO nb = 1, num_build 844 851 ! 845 !-- Allocate dummy array used for summing-up facade elements. 846 !-- Please note, dummy arguments are necessary as building-date type 847 !-- a rrays are not necessarily allocated on all PEs.852 !-- Allocate dummy array used for summing-up facade elements. 853 !-- Please note, dummy arguments are necessary as building-date type arrays are not necessarily 854 !-- allocated on all PEs. 848 855 ALLOCATE( num_facades_h(buildings(nb)%kb_min:buildings(nb)%kb_max) ) 849 856 ALLOCATE( num_facades_v(buildings(nb)%kb_min:buildings(nb)%kb_max) ) … … 860 867 ENDIF 861 868 862 #if defined( __parallel ) 863 CALL MPI_ALLREDUCE( num_facades_h, &864 receive_dum_h, &865 buildings(nb)%kb_max - buildings(nb)%kb_min + 1, &866 MPI_INTEGER, &867 MPI_SUM, &868 comm2d, &869 #if defined( __parallel ) 870 CALL MPI_ALLREDUCE( num_facades_h, & 871 receive_dum_h, & 872 buildings(nb)%kb_max - buildings(nb)%kb_min + 1, & 873 MPI_INTEGER, & 874 MPI_SUM, & 875 comm2d, & 869 876 ierr ) 870 877 871 CALL MPI_ALLREDUCE( num_facades_v, &872 receive_dum_v, &873 buildings(nb)%kb_max - buildings(nb)%kb_min + 1, &874 MPI_INTEGER, &875 MPI_SUM, &876 comm2d, &878 CALL MPI_ALLREDUCE( num_facades_v, & 879 receive_dum_v, & 880 buildings(nb)%kb_max - buildings(nb)%kb_min + 1, & 881 MPI_INTEGER, & 882 MPI_SUM, & 883 comm2d, & 877 884 ierr ) 878 IF ( ALLOCATED( buildings(nb)%num_facade_h ) ) & 879 buildings(nb)%num_facade_h = receive_dum_h 880 IF ( ALLOCATED( buildings(nb)%num_facade_v ) ) & 881 buildings(nb)%num_facade_v = receive_dum_v 885 IF ( ALLOCATED( buildings(nb)%num_facade_h ) ) buildings(nb)%num_facade_h = receive_dum_h 886 IF ( ALLOCATED( buildings(nb)%num_facade_v ) ) buildings(nb)%num_facade_v = receive_dum_v 882 887 #else 883 888 buildings(nb)%num_facade_h = num_facades_h … … 893 898 ! 894 899 !-- Allocate index arrays which link facade elements with surface-data type. 895 !-- Please note, no height levels are considered here (information is stored 896 !-- i n surface-data type itself).900 !-- Please note, no height levels are considered here (information is stored in surface-data type 901 !-- itself). 897 902 IF ( buildings(nb)%on_pe ) THEN 898 903 ! … … 901 906 buildings(nb)%num_facades_per_building_v = SUM( buildings(nb)%num_facade_v ) 902 907 ! 903 !-- Allocate arrays which link the building with the horizontal and vertical 904 !-- urban-type surfaces. Please note, linking arrays are allocated over all 905 !-- facade elements, which is required in case a building is located at the 906 !-- subdomain boundaries, where the building and the corresponding surface 907 !-- elements are located on different subdomains. 908 !-- Allocate arrays which link the building with the horizontal and vertical urban-type 909 !-- surfaces. Please note, linking arrays are allocated over all facade elements, which is 910 !-- required in case a building is located at the subdomain boundaries, where the building and 911 !-- the corresponding surface elements are located on different subdomains. 908 912 ALLOCATE( buildings(nb)%m_h(1:buildings(nb)%num_facades_per_building_h_l) ) 909 913 … … 916 920 buildings(nb)%vpf = 0.0_wp 917 921 918 facade_area_v = 0.0_wp 922 facade_area_v = 0.0_wp 919 923 DO k = buildings(nb)%kb_min, buildings(nb)%kb_max 920 facade_area_v = facade_area_v + buildings(nb)%num_facade_v(k) & 921 * dzw(k+1) * dx 924 facade_area_v = facade_area_v + buildings(nb)%num_facade_v(k) * dzw(k+1) * dx 922 925 ENDDO 923 926 ! 924 !-- Determine volume per total facade area (vpf). For the horizontal facade 925 !-- area num_facades_per_building_h can be taken, multiplied with dx*dy. 926 !-- However, due to grid stretching, vertical facade elements must be 927 !-- summed-up vertically. Please note, if dx /= dy, an error is made! 928 buildings(nb)%vpf = buildings(nb)%vol_tot / & 929 ( buildings(nb)%num_facades_per_building_h * dx * dy + & 930 facade_area_v ) 927 !-- Determine volume per total facade area (vpf). For the horizontal facade area 928 !-- num_facades_per_building_h can be taken, multiplied with dx*dy. 929 !-- However, due to grid stretching, vertical facade elements must be summed-up vertically. 930 !-- Please note, if dx /= dy, an error is made! 931 buildings(nb)%vpf = buildings(nb)%vol_tot / & 932 ( buildings(nb)%num_facades_per_building_h * dx * dy + facade_area_v ) 931 933 ! 932 934 !-- Determine floor-area-per-facade. 933 buildings(nb)%fapf = buildings(nb)%num_facades_per_building_h & 934 * dx * dy & 935 / ( buildings(nb)%num_facades_per_building_h & 936 * dx * dy + facade_area_v ) 935 buildings(nb)%fapf = buildings(nb)%num_facades_per_building_h * dx * dy & 936 / ( buildings(nb)%num_facades_per_building_h * dx * dy & 937 + facade_area_v ) 937 938 ENDIF 938 939 ENDDO 939 940 ! 940 !-- Link facade elements with surface data type. 941 !-- Link facade elements with surface data type. 941 942 !-- Allocate array for counting. 942 943 ALLOCATE( n_fa(1:num_build) ) … … 947 948 j = surf_usm_h%j(m) + surf_usm_h%joff 948 949 949 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM =1 )950 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 950 951 951 952 IF ( buildings(nb)%on_pe ) THEN 952 953 buildings(nb)%m_h(n_fa(nb)) = m 953 n_fa(nb) = n_fa(nb) + 1 954 n_fa(nb) = n_fa(nb) + 1 954 955 ENDIF 955 956 ENDDO … … 961 962 j = surf_usm_v(l)%j(m) + surf_usm_v(l)%joff 962 963 963 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM =1 )964 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 964 965 965 966 IF ( buildings(nb)%on_pe ) THEN 966 967 buildings(nb)%l_v(n_fa(nb)) = l 967 968 buildings(nb)%m_v(n_fa(nb)) = m 968 n_fa(nb) = n_fa(nb) + 1 969 n_fa(nb) = n_fa(nb) + 1 969 970 ENDIF 970 971 ENDDO … … 972 973 DEALLOCATE( n_fa ) 973 974 ! 974 !-- Initialize building parameters, first by mean building type. Note, 975 !-- in this case all buildings have the same type.976 !-- In a second step initialize with building tpyes from static input file, 977 !-- where building types canbe individual for each building.975 !-- Initialize building parameters, first by mean building type. Note, in this case all buildings 976 !-- have the same type. 977 !-- In a second step initialize with building tpyes from static input file, where building types can 978 !-- be individual for each building. 978 979 buildings(:)%lambda_layer3 = building_pars(31,building_type) 979 980 buildings(:)%s_layer3 = building_pars(44,building_type) 980 981 buildings(:)%f_c_win = building_pars(119,building_type) 981 buildings(:)%g_value_win = building_pars(120,building_type) 982 buildings(:)%u_value_win = building_pars(121,building_type) 983 buildings(:)%eta_ve = building_pars(124,building_type) 984 buildings(:)%factor_a = building_pars(125,building_type) 982 buildings(:)%g_value_win = building_pars(120,building_type) 983 buildings(:)%u_value_win = building_pars(121,building_type) 984 buildings(:)%eta_ve = building_pars(124,building_type) 985 buildings(:)%factor_a = building_pars(125,building_type) 985 986 buildings(:)%factor_c = building_pars(126,building_type) 986 buildings(:)%lambda_at = building_pars(127,building_type) 987 buildings(:)%theta_int_h_set = building_pars(13,building_type) 987 buildings(:)%lambda_at = building_pars(127,building_type) 988 buildings(:)%theta_int_h_set = building_pars(13,building_type) 988 989 buildings(:)%theta_int_c_set = building_pars(12,building_type) 989 buildings(:)%q_h_max = building_pars(128,building_type) 990 buildings(:)%q_c_max = building_pars(129,building_type) 990 buildings(:)%q_h_max = building_pars(128,building_type) 991 buildings(:)%q_c_max = building_pars(129,building_type) 991 992 buildings(:)%qint_high = building_pars(130,building_type) 992 993 buildings(:)%qint_low = building_pars(131,building_type) … … 997 998 ! 998 999 !-- Initialize seasonal dependent parameters, depending on day of the year. 999 !-- First, calculated day of the year. 1000 !-- First, calculated day of the year. 1000 1001 CALL get_date_time( time_since_reference_point, day_of_year = day_of_year ) 1001 1002 ! 1002 !-- Summer is defined in between northward- and southward equinox. 1003 IF ( day_of_year >= northward_equinox .AND. & 1004 day_of_year <= southward_equinox ) THEN 1005 buildings(:)%air_change_low = summer_pars(0,building_type) 1003 !-- Summer is defined in between northward- and southward equinox. 1004 IF ( day_of_year >= northward_equinox .AND. day_of_year <= southward_equinox ) THEN 1005 buildings(:)%air_change_low = summer_pars(0,building_type) 1006 1006 buildings(:)%air_change_high = summer_pars(1,building_type) 1007 1007 ELSE 1008 buildings(:)%air_change_low = winter_pars(0,building_type) 1008 buildings(:)%air_change_low = winter_pars(0,building_type) 1009 1009 buildings(:)%air_change_high = winter_pars(1,building_type) 1010 1010 ENDIF 1011 1011 ! 1012 !-- Initialize ventila ation load. Please note, building types > 7 are actually1013 !-- not allowed (check already in urban_surface_mod and netcdf_data_input_mod.1014 !-- However, the building data base may be later extended. 1015 IF ( building_type == 1 .OR. building_type == 2 .OR. &1016 building_type == 3 .OR. building_type == 10 .OR. &1012 !-- Initialize ventilation load. Please note, building types > 7 are actually not allowed (check 1013 !-- already in urban_surface_mod and netcdf_data_input_mod. 1014 !-- However, the building data base may be later extended. 1015 IF ( building_type == 1 .OR. building_type == 2 .OR. & 1016 building_type == 3 .OR. building_type == 10 .OR. & 1017 1017 building_type == 11 .OR. building_type == 12 ) THEN 1018 1018 buildings(:)%ventilation_int_loads = 1 1019 1019 ! 1020 1020 !-- Office, building with large windows 1021 ELSEIF ( building_type == 4 .OR. building_type == 5 .OR. &1022 building_type == 6 .OR. building_type == 7 .OR. &1021 ELSEIF ( building_type == 4 .OR. building_type == 5 .OR. & 1022 building_type == 6 .OR. building_type == 7 .OR. & 1023 1023 building_type == 8 .OR. building_type == 9) THEN 1024 1024 buildings(:)%ventilation_int_loads = 2 1025 1025 ! 1026 1026 !-- Industry, hospitals 1027 ELSEIF ( building_type == 13 .OR. building_type == 14 .OR. &1028 building_type == 15 .OR. building_type == 16 .OR. &1027 ELSEIF ( building_type == 13 .OR. building_type == 14 .OR. & 1028 building_type == 15 .OR. building_type == 16 .OR. & 1029 1029 building_type == 17 .OR. building_type == 18 ) THEN 1030 1030 buildings(:)%ventilation_int_loads = 3 … … 1036 1036 DO j = nys, nyn 1037 1037 IF ( building_id_f%var(j,i) /= building_id_f%fill ) THEN 1038 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), & 1039 DIM = 1 ) 1038 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 1040 1039 bt = building_type_f%var(j,i) 1041 1040 1042 1041 buildings(nb)%lambda_layer3 = building_pars(31,bt) 1043 1042 buildings(nb)%s_layer3 = building_pars(44,bt) 1044 1043 buildings(nb)%f_c_win = building_pars(119,bt) 1045 buildings(nb)%g_value_win = building_pars(120,bt) 1046 buildings(nb)%u_value_win = building_pars(121,bt) 1047 buildings(nb)%eta_ve = building_pars(124,bt) 1048 buildings(nb)%factor_a = building_pars(125,bt) 1044 buildings(nb)%g_value_win = building_pars(120,bt) 1045 buildings(nb)%u_value_win = building_pars(121,bt) 1046 buildings(nb)%eta_ve = building_pars(124,bt) 1047 buildings(nb)%factor_a = building_pars(125,bt) 1049 1048 buildings(nb)%factor_c = building_pars(126,bt) 1050 buildings(nb)%lambda_at = building_pars(127,bt) 1051 buildings(nb)%theta_int_h_set = building_pars(13,bt) 1049 buildings(nb)%lambda_at = building_pars(127,bt) 1050 buildings(nb)%theta_int_h_set = building_pars(13,bt) 1052 1051 buildings(nb)%theta_int_c_set = building_pars(12,bt) 1053 buildings(nb)%q_h_max = building_pars(128,bt) 1054 buildings(nb)%q_c_max = building_pars(129,bt) 1052 buildings(nb)%q_h_max = building_pars(128,bt) 1053 buildings(nb)%q_c_max = building_pars(129,bt) 1055 1054 buildings(nb)%qint_high = building_pars(130,bt) 1056 1055 buildings(nb)%qint_low = building_pars(131,bt) 1057 1056 buildings(nb)%height_storey = building_pars(132,bt) 1058 buildings(nb)%height_cei_con = building_pars(133,bt) 1057 buildings(nb)%height_cei_con = building_pars(133,bt) 1059 1058 buildings(nb)%params_waste_heat_h = building_pars(134,bt) 1060 1059 buildings(nb)%params_waste_heat_c = building_pars(135,bt) 1061 1060 1062 IF ( day_of_year >= northward_equinox .AND. & 1063 day_of_year <= southward_equinox ) THEN 1064 buildings(nb)%air_change_low = summer_pars(0,bt) 1061 IF ( day_of_year >= northward_equinox .AND. day_of_year <= southward_equinox ) THEN 1062 buildings(nb)%air_change_low = summer_pars(0,bt) 1065 1063 buildings(nb)%air_change_high = summer_pars(1,bt) 1066 1064 ELSE 1067 buildings(nb)%air_change_low = winter_pars(0,bt) 1065 buildings(nb)%air_change_low = winter_pars(0,bt) 1068 1066 buildings(nb)%air_change_high = winter_pars(1,bt) 1069 1067 ENDIF 1070 1068 1071 1069 ! 1072 !-- Initialize ventilaation load. Please note, building types > 7 1073 !-- are actually not allowed (check already in urban_surface_mod 1074 !-- and netcdf_data_input_mod. However, the building data base may 1075 !-- be later extended. 1076 IF ( bt == 1 .OR. bt == 2 .OR. &1077 bt == 3 .OR. bt == 10 .OR. &1070 !-- Initialize ventilaation load. Please note, building types > 7 1071 !-- are actually not allowed (check already in urban_surface_mod 1072 !-- and netcdf_data_input_mod. However, the building data base may 1073 !-- be later extended. 1074 IF ( bt == 1 .OR. bt == 2 .OR. & 1075 bt == 3 .OR. bt == 10 .OR. & 1078 1076 bt == 11 .OR. bt == 12 ) THEN 1079 1077 buildings(nb)%ventilation_int_loads = 1 1080 ! 1078 ! 1081 1079 !-- Office, building with large windows 1082 ELSEIF ( bt == 4 .OR. bt == 5 .OR. &1083 bt == 6 .OR. bt == 7 .OR. &1080 ELSEIF ( bt == 4 .OR. bt == 5 .OR. & 1081 bt == 6 .OR. bt == 7 .OR. & 1084 1082 bt == 8 .OR. bt == 9) THEN 1085 1083 buildings(nb)%ventilation_int_loads = 2 1086 1084 ! 1087 1085 !-- Industry, hospitals 1088 ELSEIF ( bt == 13 .OR. bt == 14 .OR. &1089 bt == 15 .OR. bt == 16 .OR. &1086 ELSEIF ( bt == 13 .OR. bt == 14 .OR. & 1087 bt == 15 .OR. bt == 16 .OR. & 1090 1088 bt == 17 .OR. bt == 18 ) THEN 1091 1089 buildings(nb)%ventilation_int_loads = 3 … … 1096 1094 ENDIF 1097 1095 ! 1098 !-- Calculation of surface-related heat transfer coeffiecient 1099 !-- out of standard u-values from building database1100 !-- only amount of extern and surface is used1101 !-- otherwise amount between air and surface taken account twice1096 !-- Calculation of surface-related heat transfer coeffiecient out of standard u-values from building 1097 !-- database. 1098 !-- Only amount of extern and surface is used. 1099 !-- Otherwise amount between air and surface taken account twice. 1102 1100 DO nb = 1, num_build 1103 IF ( buildings(nb)%on_pe ) THEN 1101 IF ( buildings(nb)%on_pe ) THEN 1104 1102 du_win_tmp = 1.0_wp / buildings(nb)%u_value_win 1105 u_tmp = buildings(nb)%u_value_win * ( du_win_tmp / ( du_win_tmp - &1103 u_tmp = buildings(nb)%u_value_win * ( du_win_tmp / ( du_win_tmp - & 1106 1104 0.125_wp + ( 1.0_wp / h_is ) ) ) 1107 1105 1108 1106 du_tmp = 1.0_wp / u_tmp 1109 1107 1110 1108 buildings(nb)%h_es = 1.0_wp / ( du_tmp - ( 1.0_wp / h_is ) ) 1111 1109 … … 1119 1117 !-- Initialize indoor temperature. Actually only for output at initial state. 1120 1118 DO nb = 1, num_build 1121 IF ( buildings(nb)%on_pe ) & 1122 buildings(nb)%t_in(:) = initial_indoor_temperature 1119 IF ( buildings(nb)%on_pe ) buildings(nb)%t_in(:) = initial_indoor_temperature 1123 1120 ENDDO 1124 1121 … … 1128 1125 1129 1126 1130 !------------------------------------------------------------------------------ !1127 !--------------------------------------------------------------------------------------------------! 1131 1128 ! Description: 1132 1129 ! ------------ 1133 1130 !> Main part of the indoor model. 1134 1131 !> Calculation of .... (kanani: Please describe) 1135 !------------------------------------------------------------------------------ !1132 !--------------------------------------------------------------------------------------------------! 1136 1133 SUBROUTINE im_main_heatcool 1137 1134 … … 1139 1136 ! ONLY: c_p 1140 1137 1141 USE control_parameters, &1138 USE control_parameters, & 1142 1139 ONLY: time_since_reference_point 1143 1140 1144 USE grid_variables, &1141 USE grid_variables, & 1145 1142 ONLY: dx, dy 1146 1143 1147 1144 USE pegrid 1148 1149 USE surface_mod, &1145 1146 USE surface_mod, & 1150 1147 ONLY: ind_veg_wall, ind_wat_win, surf_usm_h, surf_usm_v 1151 1148 1152 USE urban_surface_mod, & 1153 ONLY: nzt_wall, t_wall_h, t_wall_v, t_window_h, t_window_v, & 1154 building_type 1155 1149 USE urban_surface_mod, & 1150 ONLY: building_type, nzt_wall, t_wall_h, t_wall_v, t_window_h, t_window_v 1151 1152 1153 INTEGER(iwp) :: fa !< running index for facade elements of each building 1156 1154 INTEGER(iwp) :: i !< index of facade-adjacent atmosphere grid point in x-direction 1157 1155 INTEGER(iwp) :: j !< index of facade-adjacent atmosphere grid point in y-direction … … 1161 1159 INTEGER(iwp) :: m !< running index surface elements 1162 1160 INTEGER(iwp) :: nb !< running index for buildings 1163 INTEGER(iwp) :: fa !< running index for facade elements of each building1164 1161 1165 1162 REAL(wp) :: indoor_wall_window_temperature !< weighted temperature of innermost wall/window layer … … 1171 1168 REAL(wp), DIMENSION(:), ALLOCATABLE :: t_in_recv !< dummy recv buffer used for summing-up indoor temperature per kk-level 1172 1169 ! 1173 !-- Determine time of day in hours. 1170 !-- Determine time of day in hours. 1174 1171 CALL get_date_time( time_since_reference_point, second_of_day=second_of_day ) 1175 1172 time_utc_hour = second_of_day / seconds_per_hour … … 1178 1175 DO nb = 1, num_build 1179 1176 ! 1180 !-- First, check whether building is present on local subdomain. 1177 !-- First, check whether building is present on local subdomain. 1181 1178 IF ( buildings(nb)%on_pe ) THEN 1182 1179 ! 1183 1180 !-- Determine daily schedule. 08:00-18:00 = 1, other hours = 0. 1184 !-- Residental Building, panel WBS 70 1181 !-- Residental Building, panel WBS 70 1185 1182 IF ( buildings(nb)%ventilation_int_loads == 1 ) THEN 1186 1183 IF ( time_utc_hour >= 8.0_wp .AND. time_utc_hour <= 18.0_wp ) THEN … … 1199 1196 ENDIF 1200 1197 ENDIF 1201 ! 1198 ! 1202 1199 !-- Industry, hospitals 1203 1200 IF ( buildings(nb)%ventilation_int_loads == 3 ) THEN … … 1210 1207 ! 1211 1208 !-- Initialize/reset indoor temperature 1212 buildings(nb)%t_in_l = 0.0_wp 1209 buildings(nb)%t_in_l = 0.0_wp 1213 1210 ! 1214 1211 !-- Horizontal surfaces 1215 1212 DO fa = 1, buildings(nb)%num_facades_per_building_h_l 1216 1213 ! 1217 !-- Determine index where corresponding surface-type information 1218 !-- is stored. 1214 !-- Determine index where corresponding surface-type information is stored. 1219 1215 m = buildings(nb)%m_h(fa) 1220 1216 ! 1221 !-- Determine building height level index. 1217 !-- Determine building height level index. 1222 1218 kk = surf_usm_h%k(m) + surf_usm_h%koff 1223 1219 ! 1224 1220 !-- Building geometries --> not time-dependent 1225 facade_element_area = dx * dy !< [m2] surface area per facade element 1221 facade_element_area = dx * dy !< [m2] surface area per facade element 1226 1222 floor_area_per_facade = buildings(nb)%fapf !< [m2/m2] floor area per facade area 1227 indoor_volume_per_facade = buildings(nb)%vpf(kk) !< [m3/m2] indoor air volume per facade area 1228 buildings(nb)%area_facade = facade_element_area * & 1229 ( buildings(nb)%num_facades_per_building_h + & 1230 buildings(nb)%num_facades_per_building_v ) !< [m2] area of total facade 1231 window_area_per_facade = surf_usm_h%frac(m,ind_wat_win) * facade_element_area !< [m2] window area per facade element 1223 indoor_volume_per_facade = buildings(nb)%vpf(kk) !< [m3/m2] indoor air volume per facade area 1224 buildings(nb)%area_facade = facade_element_area * & 1225 ( buildings(nb)%num_facades_per_building_h + & 1226 buildings(nb)%num_facades_per_building_v ) !< [m2] area of total facade 1227 window_area_per_facade = surf_usm_h%frac(m,ind_wat_win) * facade_element_area !< [m2] window area per facade 1228 !< element 1232 1229 1233 1230 buildings(nb)%net_floor_area = buildings(nb)%vol_tot / ( buildings(nb)%height_storey ) 1234 total_area = buildings(nb)%net_floor_area !< [m2] area of all surfaces pointing to zone Eq. (9) according to section 7.2.2.2 1235 a_m = buildings(nb)%factor_a * total_area * & 1236 ( facade_element_area / buildings(nb)%area_facade ) * & 1237 buildings(nb)%lambda_at !< [m2] standard values according to Table 12 section 12.3.1.2 (calculate over Eq. (65) according to section 12.3.1.2) 1238 c_m = buildings(nb)%factor_c * total_area * & 1239 ( facade_element_area / buildings(nb)%area_facade ) !< [J/K] standard values according to table 12 section 12.3.1.2 (calculate over Eq. (66) according to section 12.3.1.2) 1231 total_area = buildings(nb)%net_floor_area !< [m2] area of all surfaces 1232 !< pointing to zone Eq. (9) according to section 7.2.2.2 1233 a_m = buildings(nb)%factor_a * total_area * & 1234 ( facade_element_area / buildings(nb)%area_facade ) * & 1235 buildings(nb)%lambda_at !< [m2] standard values 1236 !< according to Table 12 section 12.3.1.2 (calculate over Eq. (65) according to section 12.3.1.2) 1237 c_m = buildings(nb)%factor_c * total_area * & 1238 ( facade_element_area / buildings(nb)%area_facade ) !< [J/K] standard values 1239 !< according to table 12 section 12.3.1.2 (calculate over Eq. (66) according to section 12.3.1.2) 1240 1240 ! 1241 1241 !-- Calculation of heat transfer coefficient for transmission --> not time-dependent 1242 1242 h_t_es = window_area_per_facade * buildings(nb)%h_es !< [W/K] only for windows 1243 1243 1244 h_t_is = buildings(nb)%area_facade * h_is !< [W/K] with h_is = 3.45 W / (m2 K) between surface and air, Eq. (9) 1245 h_t_ms = a_m * h_ms !< [W/K] with h_ms = 9.10 W / (m2 K) between component and surface, Eq. (64) 1246 h_t_wall = 1.0_wp / ( 1.0_wp / ( ( facade_element_area - window_area_per_facade ) & !< [W/K] 1244 h_t_is = buildings(nb)%area_facade * h_is !< [W/K] with h_is = 3.45 W / 1245 !< (m2 K) between surface and air, Eq. (9) 1246 h_t_ms = a_m * h_ms !< [W/K] with h_ms = 9.10 W / 1247 !< (m2 K) between component and surface, Eq. (64) 1248 h_t_wall = 1.0_wp / ( 1.0_wp / ( ( facade_element_area - window_area_per_facade ) & !< [W/K] 1247 1249 * buildings(nb)%lambda_layer3 / buildings(nb)%s_layer3 * 0.5_wp & 1248 1250 ) + 1.0_wp / h_t_ms ) !< [W/K] opaque components 1249 h_t_wm = 1.0_wp / ( 1.0_wp / h_t_wall - 1.0_wp / h_t_ms ) !< [W/K] emmision Eq. (63), Section 12.2.2 1250 ! 1251 !-- internal air loads dependent on the occupacy of the room 1252 !-- basical internal heat gains (qint_low) with additional internal heat gains by occupancy (qint_high) (0,5*phi_int) 1253 phi_ia = 0.5_wp * ( ( buildings(nb)%qint_high * schedule_d + buildings(nb)%qint_low ) & 1254 * floor_area_per_facade ) 1251 h_t_wm = 1.0_wp / ( 1.0_wp / h_t_wall - 1.0_wp / h_t_ms ) !< [W/K] emmision Eq. (63), 1252 !< Section 12.2.2 1253 ! 1254 !-- Internal air loads dependent on the occupacy of the room. 1255 !-- Basical internal heat gains (qint_low) with additional internal heat gains by occupancy (qint_high) (0,5*phi_int). 1256 phi_ia = 0.5_wp * ( ( buildings(nb)%qint_high * schedule_d + buildings(nb)%qint_low ) & 1257 * floor_area_per_facade ) 1255 1258 q_int = phi_ia / total_area 1256 1259 ! 1257 !-- Airflow dependent on the occupacy of the room 1258 !-- basical airflow (air_change_low) with additional airflow gains by occupancy (air_change_high)1259 air_change = ( buildings(nb)%air_change_high * schedule_d + buildings(nb)%air_change_low ) !< [1/h]? 1260 ! 1261 !-- Heat transfer of ventilation 1262 !-- not less than 0.01 W/K to provide division by 0 in further calculations1263 !-- with heat capacity of air 0.33 Wh/m2K1264 h_v = MAX( 0.01_wp , ( air_change * indoor_volume_per_facade * &1265 0.33_wp * (1.0_wp - buildings(nb)%eta_ve ) ) ) !< [W/K] from ISO 13789 Eq.(10)1260 !-- Airflow dependent on the occupacy of the room. 1261 !-- Basical airflow (air_change_low) with additional airflow gains by occupancy (air_change_high) 1262 air_change = ( buildings(nb)%air_change_high * schedule_d + buildings(nb)%air_change_low ) !< [1/h]? 1263 ! 1264 !-- Heat transfer of ventilation. 1265 !-- Not less than 0.01 W/K to avoid division by 0 in further calculations with heat 1266 !-- capacity of air 0.33 Wh/m2K. 1267 h_v = MAX( 0.01_wp , ( air_change * indoor_volume_per_facade * & 1268 0.33_wp * (1.0_wp - buildings(nb)%eta_ve ) ) ) !< [W/K] from ISO 13789 Eq.(10) 1266 1269 1267 1270 !-- Heat transfer coefficient auxiliary variables … … 1278 1281 k = surf_usm_h%k(m) 1279 1282 near_facade_temperature = surf_usm_h%pt_10cm(m) 1280 indoor_wall_window_temperature = & 1281 surf_usm_h%frac(m,ind_veg_wall) * t_wall_h(nzt_wall,m) & 1282 + surf_usm_h%frac(m,ind_wat_win) * t_window_h(nzt_wall,m) 1283 ! 1284 !-- Solar thermal gains. If net_sw_in larger than sun-protection 1285 !-- threshold parameter (params_solar_protection), sun protection will 1286 !-- be activated 1287 IF ( net_sw_in <= params_solar_protection ) THEN 1283 indoor_wall_window_temperature = & 1284 surf_usm_h%frac(m,ind_veg_wall) * t_wall_h(nzt_wall,m) & 1285 + surf_usm_h%frac(m,ind_wat_win) * t_window_h(nzt_wall,m) 1286 ! 1287 !-- Solar thermal gains. If net_sw_in larger than sun-protection threshold parameter 1288 !-- (params_solar_protection), sun protection will be activated. 1289 IF ( net_sw_in <= params_solar_protection ) THEN 1288 1290 solar_protection_off = 1 1289 1291 solar_protection_on = 0 1290 ELSE 1292 ELSE 1291 1293 solar_protection_off = 0 1292 1294 solar_protection_on = 1 1293 1295 ENDIF 1294 1296 ! 1295 !-- Calculation of total heat gains from net_sw_in through windows [W] in respect on automatic sun protection 1297 !-- Calculation of total heat gains from net_sw_in through windows [W] in respect on 1298 !-- automatic sun protection. 1296 1299 !-- DIN 4108 - 2 chap.8 1297 phi_sol = ( window_area_per_facade * net_sw_in * solar_protection_off & 1298 + window_area_per_facade * net_sw_in * buildings(nb)%f_c_win * solar_protection_on ) & 1300 phi_sol = ( window_area_per_facade * net_sw_in * solar_protection_off & 1301 + window_area_per_facade * net_sw_in * buildings(nb)%f_c_win * & 1302 solar_protection_on ) & 1299 1303 * buildings(nb)%g_value_win * ( 1.0_wp - params_f_f ) * params_f_w 1300 q_sol = phi_sol 1301 ! 1302 !-- Calculation of the mass specific thermal load for internal and external heatsources of the inner node 1303 phi_m = (a_m / total_area) * ( phi_ia + phi_sol ) !< [W] Eq. (C.2) with phi_ia=0,5*phi_int 1304 q_sol = phi_sol 1305 ! 1306 !-- Calculation of the mass specific thermal load for internal and external heatsources of 1307 !-- the inner node. 1308 phi_m = (a_m / total_area) * ( phi_ia + phi_sol ) !< [W] Eq. (C.2) with 1309 !< phi_ia=0,5*phi_int 1304 1310 q_c_m = phi_m 1305 1311 ! 1306 !-- Calculation mass specific thermal load implied non thermal mass 1307 phi_st = ( 1.0_wp - ( a_m / total_area ) - ( h_t_es / ( 9.1_wp * total_area ) ) ) & 1308 * ( phi_ia + phi_sol ) !< [W] Eq. (C.3) with phi_ia=0,5*phi_int 1309 q_c_st = phi_st 1312 !-- Calculation mass specific thermal load implied non thermal mass 1313 phi_st = ( 1.0_wp - ( a_m / total_area ) - ( h_t_es / ( 9.1_wp * total_area ) ) ) & 1314 * ( phi_ia + phi_sol ) !< [W] Eq. (C.3) with 1315 !< phi_ia=0,5*phi_int 1316 q_c_st = phi_st 1310 1317 ! 1311 1318 !-- Calculations for deriving indoor temperature and heat flux into the wall 1312 !-- Step 1: Indoor temperature without heating and cooling1319 !-- Step 1: indoor temperature without heating and cooling 1313 1320 !-- section C.4.1 Picture C.2 zone 3) 1314 1321 phi_hc_nd = 0.0_wp 1315 1316 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1317 near_facade_temperature, phi_hc_nd ) 1318 ! 1319 !-- If air temperature between border temperatures of heating and cooling, assign output variable, then ready 1320 IF ( buildings(nb)%theta_int_h_set <= theta_air .AND. theta_air <= buildings(nb)%theta_int_c_set ) THEN 1322 1323 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1324 near_facade_temperature, phi_hc_nd ) 1325 ! 1326 !-- If air temperature between border temperatures of heating and cooling, assign output 1327 !-- variable, then ready. 1328 IF ( buildings(nb)%theta_int_h_set <= theta_air .AND. & 1329 theta_air <= buildings(nb)%theta_int_c_set ) THEN 1321 1330 phi_hc_nd_ac = 0.0_wp 1322 phi_hc_nd = phi_hc_nd_ac 1331 phi_hc_nd = phi_hc_nd_ac 1323 1332 theta_air_ac = theta_air 1324 1333 ! … … 1328 1337 ! 1329 1338 !-- Temperature not correct, calculation method according to section C4.2 1330 theta_air_0 = theta_air !< temperature without heating/cooling 1339 theta_air_0 = theta_air !< temperature without heating/cooling 1331 1340 ! 1332 1341 !-- Heating or cooling? 1333 1342 IF ( theta_air_0 > buildings(nb)%theta_int_c_set ) THEN 1334 1343 theta_air_set = buildings(nb)%theta_int_c_set 1335 ELSE 1336 theta_air_set = buildings(nb)%theta_int_h_set 1344 ELSE 1345 theta_air_set = buildings(nb)%theta_int_h_set 1337 1346 ENDIF 1338 1347 ! 1339 !-- Calculate the temperature with phi_hc_nd_10 1348 !-- Calculate the temperature with phi_hc_nd_10 1340 1349 phi_hc_nd_10 = 10.0_wp * floor_area_per_facade 1341 1350 phi_hc_nd = phi_hc_nd_10 1342 1343 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature,&1344 near_facade_temperature, phi_hc_nd )1351 1352 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1353 near_facade_temperature, phi_hc_nd ) 1345 1354 theta_air_10 = theta_air !< temperature with 10 W/m2 of heating 1346 phi_hc_nd_un = phi_hc_nd_10 * (theta_air_set - theta_air_0) &1355 phi_hc_nd_un = phi_hc_nd_10 * (theta_air_set - theta_air_0) & 1347 1356 / (theta_air_10 - theta_air_0) !< Eq. (C.13) 1348 1357 ! 1349 !-- Step 3: With temperature ratio to determine the heating or cooling capacity1350 !-- If necessary, limit the power to maximum power 1358 !-- Step 3: with temperature ratio to determine the heating or cooling capacity. 1359 !-- If necessary, limit the power to maximum power. 1351 1360 !-- section C.4.1 Picture C.2 zone 2) and 4) 1352 buildings(nb)%phi_c_max = buildings(nb)%q_c_max * floor_area_per_facade 1361 buildings(nb)%phi_c_max = buildings(nb)%q_c_max * floor_area_per_facade 1353 1362 buildings(nb)%phi_h_max = buildings(nb)%q_h_max * floor_area_per_facade 1354 IF ( buildings(nb)%phi_c_max < phi_hc_nd_un .AND. phi_hc_nd_un < buildings(nb)%phi_h_max ) THEN 1363 IF ( buildings(nb)%phi_c_max < phi_hc_nd_un .AND. & 1364 phi_hc_nd_un < buildings(nb)%phi_h_max ) THEN 1355 1365 phi_hc_nd_ac = phi_hc_nd_un 1356 phi_hc_nd = phi_hc_nd_un 1366 phi_hc_nd = phi_hc_nd_un 1357 1367 ELSE 1358 1368 ! 1359 !-- Step 4: Inner temperature with maximum heating (phi_hc_nd_un positive) or cooling (phi_hc_nd_un negative) 1369 !-- Step 4: inner temperature with maximum heating (phi_hc_nd_un positive) or cooling 1370 !-- (phi_hc_nd_un negative) 1360 1371 !-- section C.4.1 Picture C.2 zone 1) and 5) 1361 1372 IF ( phi_hc_nd_un > 0.0_wp ) THEN 1362 1373 phi_hc_nd_ac = buildings(nb)%phi_h_max !< Limit heating 1363 ELSE 1374 ELSE 1364 1375 phi_hc_nd_ac = buildings(nb)%phi_c_max !< Limit cooling 1365 1376 ENDIF 1366 1377 ENDIF 1367 phi_hc_nd = phi_hc_nd_ac 1378 phi_hc_nd = phi_hc_nd_ac 1368 1379 ! 1369 1380 !-- Calculate the temperature with phi_hc_nd_ac (new) 1370 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature,&1371 near_facade_temperature, phi_hc_nd )1381 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1382 near_facade_temperature, phi_hc_nd ) 1372 1383 theta_air_ac = theta_air 1373 1384 ENDIF … … 1375 1386 !-- Update theta_m_t_prev 1376 1387 theta_m_t_prev = theta_m_t 1377 1388 1378 1389 q_vent = h_v * ( theta_air - near_facade_temperature ) 1379 1390 ! 1380 !-- Calculate the operating temperature with weighted mean temperature of air and mean solar temperature 1381 !-- Will be used for thermal comfort calculations 1391 !-- Calculate the operating temperature with weighted mean temperature of air and mean 1392 !-- solar temperature. 1393 !-- Will be used for thermal comfort calculations. 1382 1394 theta_op = 0.3_wp * theta_air_ac + 0.7_wp * theta_s !< [degree_C] operative Temperature Eq. (C.12) 1383 1395 ! surf_usm_h%t_indoor(m) = theta_op !< not integrated now 1384 1396 ! 1385 !-- Heat flux into the wall. Value needed in urban_surface_mod to 1397 !-- Heat flux into the wall. Value needed in urban_surface_mod to 1386 1398 !-- calculate heat transfer through wall layers towards the facade 1387 1399 !-- (use c_p * rho_surface to convert [W/m2] into [K m/s]) 1388 q_wall_win = h_t_ms * ( theta_s - theta_m ) & 1389 / ( facade_element_area & 1390 - window_area_per_facade ) 1391 q_trans = q_wall_win * facade_element_area 1400 q_wall_win = h_t_ms * ( theta_s - theta_m ) & 1401 / ( facade_element_area - window_area_per_facade ) 1402 q_trans = q_wall_win * facade_element_area 1392 1403 ! 1393 1404 !-- Transfer q_wall_win back to USM (innermost wall/window layer) … … 1395 1406 surf_usm_h%iwghf_eb_window(m) = q_wall_win 1396 1407 ! 1397 !-- Sum up operational indoor temperature per kk-level. Further below, 1398 !-- this temperature is reduced by MPI to one temperature per kk-level 1399 !-- and building (processor overlapping) 1408 !-- Sum up operational indoor temperature per kk-level. Further below, this temperature is 1409 !-- reduced by MPI to one temperature per kk-level and building (processor overlapping). 1400 1410 buildings(nb)%t_in_l(kk) = buildings(nb)%t_in_l(kk) + theta_op 1401 1411 ! 1402 !-- Calculation of waste heat 1403 !-- Anthropogenic heat output 1404 IF ( phi_hc_nd_ac > 0.0_wp ) THEN 1412 !-- Calculation of waste heat. 1413 !-- Anthropogenic heat output. 1414 IF ( phi_hc_nd_ac > 0.0_wp ) THEN 1405 1415 heating_on = 1 1406 1416 cooling_on = 0 1407 ELSE 1417 ELSE 1408 1418 heating_on = 0 1409 1419 cooling_on = -1 1410 1420 ENDIF 1411 1421 1412 q_waste_heat = ( phi_hc_nd * ( & 1413 buildings(nb)%params_waste_heat_h * heating_on + & 1414 buildings(nb)%params_waste_heat_c * cooling_on ) & 1415 ) / facade_element_area !< [W/m2] , observe the directional convention in PALM! 1422 q_waste_heat = ( phi_hc_nd * ( & 1423 buildings(nb)%params_waste_heat_h * heating_on + & 1424 buildings(nb)%params_waste_heat_c * cooling_on ) & 1425 ) / facade_element_area !< [W/m2] , observe the directional 1426 !< convention in PALM! 1416 1427 surf_usm_h%waste_heat(m) = q_waste_heat 1417 1428 ENDDO !< Horizontal surfaces loop … … 1420 1431 DO fa = 1, buildings(nb)%num_facades_per_building_v_l 1421 1432 ! 1422 !-- Determine indices where corresponding surface-type information 1423 !-- is stored. 1433 !-- Determine indices where corresponding surface-type information is stored. 1424 1434 l = buildings(nb)%l_v(fa) 1425 1435 m = buildings(nb)%m_v(fa) 1426 1436 ! 1427 !-- Determine building height level index. 1437 !-- Determine building height level index. 1428 1438 kk = surf_usm_v(l)%k(m) + surf_usm_v(l)%koff 1429 1439 ! 1430 !-- (SOME OF THE FOLLOWING (not time-dependent COULD PROBABLY GO INTO A FUNCTION1440 !-- (SOME OF THE FOLLOWING (not time-dependent) COULD PROBABLY GO INTO A FUNCTION 1431 1441 !-- EXCEPT facade_element_area, EVERYTHING IS CALCULATED EQUALLY) 1432 1442 !-- Building geometries --> not time-dependent … … 1435 1445 1436 1446 floor_area_per_facade = buildings(nb)%fapf !< [m2/m2] floor area per facade area 1437 indoor_volume_per_facade = buildings(nb)%vpf(kk) !< [m3/m2] indoor air volume per facade area 1438 buildings(nb)%area_facade = facade_element_area * & 1439 ( buildings(nb)%num_facades_per_building_h + & 1440 buildings(nb)%num_facades_per_building_v ) !< [m2] area of total facade 1441 window_area_per_facade = surf_usm_v(l)%frac(m,ind_wat_win) * facade_element_area !< [m2] window area per facade element 1447 indoor_volume_per_facade = buildings(nb)%vpf(kk) !< [m3/m2] indoor air volume per facade area 1448 buildings(nb)%area_facade = facade_element_area * & 1449 ( buildings(nb)%num_facades_per_building_h + & 1450 buildings(nb)%num_facades_per_building_v ) !< [m2] area of total facade 1451 window_area_per_facade = surf_usm_v(l)%frac(m,ind_wat_win) * facade_element_area !< [m2] window area per 1452 !< facade element 1442 1453 1443 1454 buildings(nb)%net_floor_area = buildings(nb)%vol_tot / ( buildings(nb)%height_storey ) 1444 total_area = buildings(nb)%net_floor_area !< [m2] area of all surfaces pointing to zone Eq. (9) according to section 7.2.2.2 1445 a_m = buildings(nb)%factor_a * total_area * & 1446 ( facade_element_area / buildings(nb)%area_facade ) * & 1447 buildings(nb)%lambda_at !< [m2] standard values according to Table 12 section 12.3.1.2 (calculate over Eq. (65) according to section 12.3.1.2) 1455 total_area = buildings(nb)%net_floor_area !< [m2] area of all surfaces 1456 !< pointing to zone Eq. (9) according to section 7.2.2.2 1457 a_m = buildings(nb)%factor_a * total_area * & 1458 ( facade_element_area / buildings(nb)%area_facade ) * & 1459 buildings(nb)%lambda_at !< [m2] standard values 1460 !< according to Table 12 section 12.3.1.2 (calculate over Eq. (65) according to section 12.3.1.2) 1448 1461 c_m = buildings(nb)%factor_c * total_area * & 1449 ( facade_element_area / buildings(nb)%area_facade ) !< [J/K] standard values according to table 12 section 12.3.1.2 (calculate over Eq. (66) according to section 12.3.1.2) 1462 ( facade_element_area / buildings(nb)%area_facade ) !< [J/K] standard values 1463 !< according to table 12 section 12.3.1.2 (calculate over Eq. (66) according to section 12.3.1.2) 1450 1464 ! 1451 1465 !-- Calculation of heat transfer coefficient for transmission --> not time-dependent 1452 1466 h_t_es = window_area_per_facade * buildings(nb)%h_es !< [W/K] only for windows 1453 1467 1454 h_t_is = buildings(nb)%area_facade * h_is !< [W/K] with h_is = 3.45 W / (m2 K) between surface and air, Eq. (9) 1455 h_t_ms = a_m * h_ms !< [W/K] with h_ms = 9.10 W / (m2 K) between component and surface, Eq. (64) 1456 h_t_wall = 1.0_wp / ( 1.0_wp / ( ( facade_element_area - window_area_per_facade ) & !< [W/K] 1468 h_t_is = buildings(nb)%area_facade * h_is !< [W/K] with h_is = 3.45 W / 1469 !< (m2 K) between surface and air, Eq. (9) 1470 h_t_ms = a_m * h_ms !< [W/K] with h_ms = 9.10 W / 1471 !< (m2 K) between component and surface, Eq. (64) 1472 h_t_wall = 1.0_wp / ( 1.0_wp / ( ( facade_element_area - window_area_per_facade ) & !< [W/K] 1457 1473 * buildings(nb)%lambda_layer3 / buildings(nb)%s_layer3 * 0.5_wp & 1458 1474 ) + 1.0_wp / h_t_ms ) !< [W/K] opaque components 1459 1475 h_t_wm = 1.0_wp / ( 1.0_wp / h_t_wall - 1.0_wp / h_t_ms ) !< [W/K] emmision Eq. (63), Section 12.2.2 1460 1476 ! 1461 !-- internal air loads dependent on the occupacy of the room 1462 !-- basical internal heat gains (qint_low) with additional internal heat gains by occupancy (qint_high) (0,5*phi_int) 1463 phi_ia = 0.5_wp * ( ( buildings(nb)%qint_high * schedule_d + buildings(nb)%qint_low ) & 1464 * floor_area_per_facade ) 1477 !-- Internal air loads dependent on the occupacy of the room. 1478 !-- Basical internal heat gains (qint_low) with additional internal heat gains by occupancy 1479 !-- (qint_high) (0,5*phi_int) 1480 phi_ia = 0.5_wp * ( ( buildings(nb)%qint_high * schedule_d + buildings(nb)%qint_low ) & 1481 * floor_area_per_facade ) 1465 1482 q_int = phi_ia 1466 1483 1467 1484 ! 1468 !-- Airflow dependent on the occupacy of the room 1469 !-- basical airflow (air_change_low) with additional airflow gains by occupancy (air_change_high) 1470 air_change = ( buildings(nb)%air_change_high * schedule_d + buildings(nb)%air_change_low ) 1471 ! 1472 !-- Heat transfer of ventilation 1473 !-- not less than 0.01 W/K to provide division by 0 in further calculations 1474 !-- with heat capacity of air 0.33 Wh/m2K 1475 h_v = MAX( 0.01_wp , ( air_change * indoor_volume_per_facade * & 1476 0.33_wp * (1.0_wp - buildings(nb)%eta_ve ) ) ) !< [W/K] from ISO 13789 Eq.(10) 1477 1485 !-- Airflow dependent on the occupacy of the room. 1486 !-- Basical airflow (air_change_low) with additional airflow gains by occupancy 1487 !-- (air_change_high) 1488 air_change = ( buildings(nb)%air_change_high * schedule_d + & 1489 buildings(nb)%air_change_low ) 1490 ! 1491 !-- Heat transfer of ventilation. 1492 !-- Not less than 0.01 W/K to avoid division by 0 in further calculations with heat 1493 !-- capacity of air 0.33 Wh/m2K 1494 h_v = MAX( 0.01_wp , ( air_change * indoor_volume_per_facade * & 1495 0.33_wp * (1.0_wp - buildings(nb)%eta_ve ) ) ) !< [W/K] from ISO 13789 1496 !< Eq.(10) 1497 1478 1498 !-- Heat transfer coefficient auxiliary variables 1479 1499 h_t_1 = 1.0_wp / ( ( 1.0_wp / h_v ) + ( 1.0_wp / h_t_is ) ) !< [W/K] Eq. (C.6) … … 1486 1506 !-- Quantities needed for im_calc_temperatures 1487 1507 i = surf_usm_v(l)%i(m) 1488 j = surf_usm_v(l)%j(m) 1508 j = surf_usm_v(l)%j(m) 1489 1509 k = surf_usm_v(l)%k(m) 1490 1510 near_facade_temperature = surf_usm_v(l)%pt_10cm(m) 1491 indoor_wall_window_temperature = 1492 surf_usm_v(l)%frac(m,ind_veg_wall) * t_wall_v(l)%t(nzt_wall,m)&1493 + surf_usm_v(l)%frac(m,ind_wat_win) * t_window_v(l)%t(nzt_wall,m)1494 ! 1495 !-- Solar thermal gains. If net_sw_in larger than sun-protection 1496 !-- threshold parameter (params_solar_protection), sun protection will 1511 indoor_wall_window_temperature = & 1512 surf_usm_v(l)%frac(m,ind_veg_wall) * t_wall_v(l)%t(nzt_wall,m) & 1513 + surf_usm_v(l)%frac(m,ind_wat_win) * t_window_v(l)%t(nzt_wall,m) 1514 ! 1515 !-- Solar thermal gains. If net_sw_in larger than sun-protection 1516 !-- threshold parameter (params_solar_protection), sun protection will 1497 1517 !-- be activated 1498 IF ( net_sw_in <= params_solar_protection ) THEN 1518 IF ( net_sw_in <= params_solar_protection ) THEN 1499 1519 solar_protection_off = 1 1500 solar_protection_on = 0 1501 ELSE 1520 solar_protection_on = 0 1521 ELSE 1502 1522 solar_protection_off = 0 1503 solar_protection_on = 1 1523 solar_protection_on = 1 1504 1524 ENDIF 1505 1525 ! 1506 !-- Calculation of total heat gains from net_sw_in through windows [W] in respect on automatic sun protection 1526 !-- Calculation of total heat gains from net_sw_in through windows [W] in respect on 1527 !-- automatic sun protection. 1507 1528 !-- DIN 4108 - 2 chap.8 1508 phi_sol = ( window_area_per_facade * net_sw_in * solar_protection_off & 1509 + window_area_per_facade * net_sw_in * buildings(nb)%f_c_win * solar_protection_on ) & 1529 phi_sol = ( window_area_per_facade * net_sw_in * solar_protection_off & 1530 + window_area_per_facade * net_sw_in * buildings(nb)%f_c_win * & 1531 solar_protection_on ) & 1510 1532 * buildings(nb)%g_value_win * ( 1.0_wp - params_f_f ) * params_f_w 1511 1533 q_sol = phi_sol 1512 1534 ! 1513 !-- Calculation of the mass specific thermal load for internal and external heatsources 1535 !-- Calculation of the mass specific thermal load for internal and external heatsources. 1514 1536 phi_m = (a_m / total_area) * ( phi_ia + phi_sol ) !< [W] Eq. (C.2) with phi_ia=0,5*phi_int 1515 1537 q_c_m = phi_m 1516 1538 ! 1517 !-- Calculation mass specific thermal load implied non thermal mass 1518 phi_st = ( 1.0_wp - ( a_m / total_area ) - ( h_t_es / ( 9.1_wp * total_area ) ) ) & 1519 * ( phi_ia + phi_sol ) !< [W] Eq. (C.3) with phi_ia=0,5*phi_int 1520 q_c_st = phi_st 1521 ! 1522 !-- Calculations for deriving indoor temperature and heat flux into the wall 1523 !-- Step 1: Indoor temperature without heating and cooling 1539 !-- Calculation mass specific thermal load implied non thermal mass. 1540 phi_st = ( 1.0_wp - ( a_m / total_area ) - ( h_t_es / ( 9.1_wp * total_area ) ) ) & 1541 * ( phi_ia + phi_sol ) !< [W] Eq. (C.3) with 1542 !< phi_ia=0,5*phi_int 1543 q_c_st = phi_st 1544 ! 1545 !-- Calculations for deriving indoor temperature and heat flux into the wall. 1546 !-- Step 1: indoor temperature without heating and cooling. 1524 1547 !-- section C.4.1 Picture C.2 zone 3) 1525 1548 phi_hc_nd = 0.0_wp 1526 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, &1549 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1527 1550 near_facade_temperature, phi_hc_nd ) 1528 1551 ! 1529 !-- If air temperature between border temperatures of heating and cooling, assign output variable, then ready 1530 IF ( buildings(nb)%theta_int_h_set <= theta_air .AND. theta_air <= buildings(nb)%theta_int_c_set ) THEN 1552 !-- If air temperature between border temperatures of heating and cooling, assign output 1553 !-- variable, then ready. 1554 IF ( buildings(nb)%theta_int_h_set <= theta_air .AND. & 1555 theta_air <= buildings(nb)%theta_int_c_set ) THEN 1531 1556 phi_hc_nd_ac = 0.0_wp 1532 1557 phi_hc_nd = phi_hc_nd_ac … … 1543 1568 IF ( theta_air_0 > buildings(nb)%theta_int_c_set ) THEN 1544 1569 theta_air_set = buildings(nb)%theta_int_c_set 1545 ELSE 1546 theta_air_set = buildings(nb)%theta_int_h_set 1570 ELSE 1571 theta_air_set = buildings(nb)%theta_int_h_set 1547 1572 ENDIF 1548 1573 … … 1550 1575 phi_hc_nd_10 = 10.0_wp * floor_area_per_facade 1551 1576 phi_hc_nd = phi_hc_nd_10 1552 1553 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature,&1554 near_facade_temperature, phi_hc_nd )1577 1578 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1579 near_facade_temperature, phi_hc_nd ) 1555 1580 1556 1581 theta_air_10 = theta_air !< Note the temperature with 10 W/m2 of heating 1557 1582 1558 phi_hc_nd_un = phi_hc_nd_10 * ( theta_air_set - theta_air_0 ) &1583 phi_hc_nd_un = phi_hc_nd_10 * ( theta_air_set - theta_air_0 ) & 1559 1584 / ( theta_air_10 - theta_air_0 ) !< Eq. (C.13) 1560 1585 ! 1561 !-- Step 3: With temperature ratio to determine the heating or cooling capacity1562 !-- If necessary, limit the power to maximum power 1586 !-- Step 3: with temperature ratio to determine the heating or cooling capacity 1587 !-- If necessary, limit the power to maximum power. 1563 1588 !-- section C.4.1 Picture C.2 zone 2) and 4) 1564 1589 buildings(nb)%phi_c_max = buildings(nb)%q_c_max * floor_area_per_facade 1565 1590 buildings(nb)%phi_h_max = buildings(nb)%q_h_max * floor_area_per_facade 1566 IF ( buildings(nb)%phi_c_max < phi_hc_nd_un .AND. phi_hc_nd_un < buildings(nb)%phi_h_max ) THEN 1591 IF ( buildings(nb)%phi_c_max < phi_hc_nd_un .AND. & 1592 phi_hc_nd_un < buildings(nb)%phi_h_max ) THEN 1567 1593 phi_hc_nd_ac = phi_hc_nd_un 1568 1594 phi_hc_nd = phi_hc_nd_un 1569 1595 ELSE 1570 1596 ! 1571 !-- Step 4: Inner temperature with maximum heating (phi_hc_nd_un positive) or cooling (phi_hc_nd_un negative) 1597 !-- Step 4: inner temperature with maximum heating (phi_hc_nd_un positive) or cooling 1598 !-- (phi_hc_nd_un negative) 1572 1599 !-- section C.4.1 Picture C.2 zone 1) and 5) 1573 1600 IF ( phi_hc_nd_un > 0.0_wp ) THEN 1574 1601 phi_hc_nd_ac = buildings(nb)%phi_h_max !< Limit heating 1575 ELSE 1602 ELSE 1576 1603 phi_hc_nd_ac = buildings(nb)%phi_c_max !< Limit cooling 1577 1604 ENDIF 1578 1605 ENDIF 1579 phi_hc_nd = phi_hc_nd_ac 1606 phi_hc_nd = phi_hc_nd_ac 1580 1607 ! 1581 1608 !-- Calculate the temperature with phi_hc_nd_ac (new) 1582 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, &1583 near_facade_temperature, phi_hc_nd )1609 CALL im_calc_temperatures ( i, j, k, indoor_wall_window_temperature, & 1610 near_facade_temperature, phi_hc_nd ) 1584 1611 theta_air_ac = theta_air 1585 1612 ENDIF … … 1587 1614 !-- Update theta_m_t_prev 1588 1615 theta_m_t_prev = theta_m_t 1589 1616 1590 1617 q_vent = h_v * ( theta_air - near_facade_temperature ) 1591 1618 ! 1592 !-- Calculate the operating temperature with weighted mean of temperature of air and mean 1593 !-- Will be used for thermal comfort calculations 1619 !-- Calculate the operating temperature with weighted mean of temperature of air and mean. 1620 !-- Will be used for thermal comfort calculations. 1594 1621 theta_op = 0.3_wp * theta_air_ac + 0.7_wp * theta_s 1595 1622 ! surf_usm_v(l)%t_indoor(m) = theta_op !< not integrated yet 1596 1623 ! 1597 !-- Heat flux into the wall. Value needed in urban_surface_mod to 1624 !-- Heat flux into the wall. Value needed in urban_surface_mod to 1598 1625 !-- calculate heat transfer through wall layers towards the facade 1599 q_wall_win = h_t_ms * ( theta_s - theta_m ) & 1600 / ( facade_element_area & 1601 - window_area_per_facade ) 1626 q_wall_win = h_t_ms * ( theta_s - theta_m ) & 1627 / ( facade_element_area - window_area_per_facade ) 1602 1628 q_trans = q_wall_win * facade_element_area 1603 1629 ! … … 1606 1632 surf_usm_v(l)%iwghf_eb_window(m) = q_wall_win 1607 1633 ! 1608 !-- Sum up operational indoor temperature per kk-level. Further below, 1609 !-- this temperature is reduced by MPI to one temperature per kk-level 1610 !-- and building (processor overlapping) 1634 !-- Sum up operational indoor temperature per kk-level. Further below, this temperature is 1635 !-- reduced by MPI to one temperature per kk-level and building (processor overlapping). 1611 1636 buildings(nb)%t_in_l(kk) = buildings(nb)%t_in_l(kk) + theta_op 1612 1637 ! 1613 !-- Calculation of waste heat 1614 !-- Anthropogenic heat output 1615 IF ( phi_hc_nd_ac > 0.0_wp ) THEN 1638 !-- Calculation of waste heat. 1639 !-- Anthropogenic heat output. 1640 IF ( phi_hc_nd_ac > 0.0_wp ) THEN 1616 1641 heating_on = 1 1617 1642 cooling_on = 0 1618 ELSE 1643 ELSE 1619 1644 heating_on = 0 1620 1645 cooling_on = -1 1621 1646 ENDIF 1622 1647 1623 q_waste_heat = ( phi_hc_nd * ( 1624 buildings(nb)%params_waste_heat_h * heating_on +&1625 buildings(nb)%params_waste_heat_c * cooling_on ) &1626 ) / facade_element_area !< [W/m2] , observe the directional convention inPALM!1648 q_waste_heat = ( phi_hc_nd * ( buildings(nb)%params_waste_heat_h * heating_on + & 1649 buildings(nb)%params_waste_heat_c * cooling_on ) & 1650 ) / facade_element_area !< [W/m2] , observe the directional convention in 1651 !< PALM! 1627 1652 surf_usm_v(l)%waste_heat(m) = q_waste_heat 1628 1653 ENDDO !< Vertical surfaces loop … … 1631 1656 1632 1657 ! 1633 !-- Determine the mean building temperature. 1658 !-- Determine the mean building temperature. 1634 1659 DO nb = 1, num_build 1635 1660 ! 1636 !-- Allocate dummy array used for summing-up facade elements. 1637 !-- Please note, dummy arguments are necessary as building-date type 1638 !-- a rrays are not necessarily allocated on all PEs.1661 !-- Allocate dummy array used for summing-up facade elements. 1662 !-- Please note, dummy arguments are necessary as building-date type arrays are not necessarily 1663 !-- allocated on all PEs. 1639 1664 ALLOCATE( t_in_l_send(buildings(nb)%kb_min:buildings(nb)%kb_max) ) 1640 1665 ALLOCATE( t_in_recv(buildings(nb)%kb_min:buildings(nb)%kb_max) ) … … 1647 1672 1648 1673 1649 #if defined( __parallel ) 1650 CALL MPI_ALLREDUCE( t_in_l_send, &1651 t_in_recv, &1652 buildings(nb)%kb_max - buildings(nb)%kb_min + 1, &1653 MPI_REAL, &1654 MPI_SUM, &1655 comm2d, &1674 #if defined( __parallel ) 1675 CALL MPI_ALLREDUCE( t_in_l_send, & 1676 t_in_recv, & 1677 buildings(nb)%kb_max - buildings(nb)%kb_min + 1, & 1678 MPI_REAL, & 1679 MPI_SUM, & 1680 comm2d, & 1656 1681 ierr ) 1657 1682 1658 IF ( ALLOCATED( buildings(nb)%t_in ) ) & 1659 buildings(nb)%t_in = t_in_recv 1683 IF ( ALLOCATED( buildings(nb)%t_in ) ) buildings(nb)%t_in = t_in_recv 1660 1684 #else 1661 IF ( ALLOCATED( buildings(nb)%t_in ) ) & 1662 buildings(nb)%t_in = buildings(nb)%t_in_l 1685 IF ( ALLOCATED( buildings(nb)%t_in ) ) buildings(nb)%t_in = buildings(nb)%t_in_l 1663 1686 #endif 1664 1687 1665 1688 IF ( ALLOCATED( buildings(nb)%t_in ) ) THEN 1666 1689 ! 1667 !-- Average indoor temperature. Note, in case a building is completely 1668 !-- surrounded by higher buildings, it may have no facade elements1669 !-- at some height levels, which will lead to a divideby zero.1690 !-- Average indoor temperature. Note, in case a building is completely surrounded by higher 1691 !-- buildings, it may have no facade elements at some height levels, which will lead to a 1692 !-- division by zero. 1670 1693 DO k = buildings(nb)%kb_min, buildings(nb)%kb_max 1671 IF ( buildings(nb)%num_facade_h(k) + & 1672 buildings(nb)%num_facade_v(k) > 0 ) THEN 1673 buildings(nb)%t_in(k) = buildings(nb)%t_in(k) / & 1674 REAL( buildings(nb)%num_facade_h(k) + & 1675 buildings(nb)%num_facade_v(k), KIND = wp ) 1694 IF ( buildings(nb)%num_facade_h(k) + buildings(nb)%num_facade_v(k) > 0 ) THEN 1695 buildings(nb)%t_in(k) = buildings(nb)%t_in(k) / & 1696 REAL( buildings(nb)%num_facade_h(k) + & 1697 buildings(nb)%num_facade_v(k), KIND = wp ) 1676 1698 ENDIF 1677 1699 ENDDO 1678 1700 ! 1679 !-- If indoor temperature is not defined because of missing facade 1680 !-- elements, the values from the above-lying level will be taken. 1681 !-- At least at the top of the buildings facades are defined, so that 1682 !-- at least there an indoor temperature is defined. This information 1683 !-- will propagate downwards the building. 1701 !-- If indoor temperature is not defined because of missing facade elements, the values from 1702 !-- the above-lying level will be taken. 1703 !-- At least at the top of the buildings facades are defined, so that at least there an indoor 1704 !-- temperature is defined. This information will propagate downwards the building. 1684 1705 DO k = buildings(nb)%kb_max-1, buildings(nb)%kb_min, -1 1685 IF ( buildings(nb)%num_facade_h(k) + & 1686 buildings(nb)%num_facade_v(k) <= 0 ) THEN 1706 IF ( buildings(nb)%num_facade_h(k) + buildings(nb)%num_facade_v(k) <= 0 ) THEN 1687 1707 buildings(nb)%t_in(k) = buildings(nb)%t_in(k+1) 1688 1708 ENDIF 1689 1709 ENDDO 1690 1710 ENDIF 1691 1711 1692 1712 1693 1713 ! … … 1697 1717 1698 1718 ENDDO 1699 1719 1700 1720 END SUBROUTINE im_main_heatcool 1701 1721 1702 !-----------------------------------------------------------------------------! 1722 1723 !--------------------------------------------------------------------------------------------------! 1703 1724 ! Description: 1704 1725 !------------- 1705 1726 !> Check data output for plant canopy model 1706 !----------------------------------------------------------------------------- !1727 !--------------------------------------------------------------------------------------------------! 1707 1728 SUBROUTINE im_check_data_output( var, unit ) 1708 1729 1709 1730 CHARACTER (LEN=*) :: unit !< 1710 1731 CHARACTER (LEN=*) :: var !< 1711 1732 1712 1733 SELECT CASE ( TRIM( var ) ) 1713 1714 1734 1735 1715 1736 CASE ( 'im_hf_roof') 1716 1737 unit = 'W m-2' 1717 1738 1718 1739 CASE ( 'im_hf_wall_win' ) 1719 1740 unit = 'W m-2' 1720 1741 1721 1742 CASE ( 'im_hf_wall_win_waste' ) 1722 1743 unit = 'W m-2' 1723 1744 1724 1745 CASE ( 'im_hf_roof_waste' ) 1725 1746 unit = 'W m-2' 1726 1747 1727 1748 CASE ( 'im_t_indoor_mean' ) 1728 1749 unit = 'K' 1729 1750 1730 1751 CASE ( 'im_t_indoor_roof' ) 1731 1752 unit = 'K' 1732 1753 1733 1754 CASE ( 'im_t_indoor_wall_win' ) 1734 1755 unit = 'K' 1735 1756 1736 1757 CASE DEFAULT 1737 1758 unit = 'illegal' 1738 1759 1739 1760 END SELECT 1740 1761 1741 1762 END SUBROUTINE 1742 1763 1743 1764 1744 !----------------------------------------------------------------------------- !1765 !--------------------------------------------------------------------------------------------------! 1745 1766 ! Description: 1746 1767 !------------- 1747 1768 !> Check parameters routine for plant canopy model 1748 !----------------------------------------------------------------------------- !1769 !--------------------------------------------------------------------------------------------------! 1749 1770 SUBROUTINE im_check_parameters 1750 1771 1751 1772 ! USE control_parameters, 1752 1773 ! ONLY: message_string 1753 1774 1754 1775 END SUBROUTINE im_check_parameters 1755 1776 1756 !-----------------------------------------------------------------------------! 1777 1778 !--------------------------------------------------------------------------------------------------! 1757 1779 ! Description: 1758 1780 !------------- 1759 1781 !> Subroutine defining appropriate grid for netcdf variables. 1760 1782 !> It is called from subroutine netcdf. 1761 !----------------------------------------------------------------------------- !1783 !--------------------------------------------------------------------------------------------------! 1762 1784 SUBROUTINE im_define_netcdf_grid( var, found, grid_x, grid_y, grid_z ) 1763 1785 1764 1765 CHARACTER (LEN=*), INTENT(IN) :: var1766 LOGICAL, INTENT(OUT) :: found1767 CHARACTER (LEN=*), INTENT(OUT) :: grid_x1768 CHARACTER (LEN=*), INTENT(OUT) :: grid_y 1769 CHARACTER (LEN=*), INTENT(OUT) :: grid_z1770 1771 found = .TRUE. 1772 1786 CHARACTER (LEN=*), INTENT(OUT) :: grid_x 1787 CHARACTER (LEN=*), INTENT(OUT) :: grid_y 1788 CHARACTER (LEN=*), INTENT(OUT) :: grid_z 1789 CHARACTER (LEN=*), INTENT(IN) :: var 1790 1791 LOGICAL, INTENT(OUT) :: found 1792 1793 1794 found = .TRUE. 1773 1795 ! 1774 1796 !-- Check for the grid … … 1790 1812 grid_y = 'y' 1791 1813 grid_z = 'zw' 1792 1814 1793 1815 CASE DEFAULT 1794 1816 found = .FALSE. … … 1797 1819 grid_z = 'none' 1798 1820 END SELECT 1799 1821 1800 1822 END SUBROUTINE im_define_netcdf_grid 1801 1823 1802 !------------------------------------------------------------------------------! 1824 1825 !--------------------------------------------------------------------------------------------------! 1803 1826 ! Description: 1804 1827 ! ------------ 1805 1828 !> Subroutine defining 3D output variables 1806 !------------------------------------------------------------------------------! 1807 SUBROUTINE im_data_output_3d( av, variable, found, local_pf, fill_value, & 1808 nzb_do, nzt_do ) 1829 !--------------------------------------------------------------------------------------------------! 1830 SUBROUTINE im_data_output_3d( av, variable, found, local_pf, fill_value, nzb_do, nzt_do ) 1809 1831 1810 1832 USE indices … … 1812 1834 USE kinds 1813 1835 1814 CHARACTER (LEN=*) :: variable !< 1815 1816 INTEGER(iwp) :: av !< 1817 INTEGER(iwp) :: i !< 1818 INTEGER(iwp) :: j !< 1819 INTEGER(iwp) :: k !< 1836 CHARACTER (LEN=*) :: variable !< 1837 1838 INTEGER(iwp) :: av !< 1839 INTEGER(iwp) :: i !< 1840 INTEGER(iwp) :: j !< 1841 INTEGER(iwp) :: k !< 1820 1842 INTEGER(iwp) :: l !< 1821 INTEGER(iwp) :: m !< 1822 INTEGER(iwp) :: nb !< index of the building in the building data structure 1843 INTEGER(iwp) :: m !< 1844 INTEGER(iwp) :: nb !< index of the building in the building data structure 1823 1845 INTEGER(iwp) :: nzb_do !< lower limit of the data output (usually 0) 1824 1846 INTEGER(iwp) :: nzt_do !< vertical upper limit of the data output (usually nz_do3d) 1825 1826 LOGICAL :: found !< 1847 1848 LOGICAL :: found !< 1827 1849 1828 1850 REAL(wp), INTENT(IN) :: fill_value !< value for the _FillValue attribute 1829 1851 1830 REAL(sp), DIMENSION(nxl:nxr,nys:nyn,nzb_do:nzt_do) :: local_pf !< 1831 1852 REAL(sp), DIMENSION(nxl:nxr,nys:nyn,nzb_do:nzt_do) :: local_pf !< 1853 1832 1854 local_pf = fill_value 1833 1855 1834 1856 found = .TRUE. 1835 1857 1836 1858 SELECT CASE ( TRIM( variable ) ) 1837 1859 ! 1838 !-- Output of indoor temperature. All grid points within the building are 1839 !-- filled with values,while atmospheric grid points are set to _FillValues.1860 !-- Output of indoor temperature. All grid points within the building are filled with values, 1861 !-- while atmospheric grid points are set to _FillValues. 1840 1862 CASE ( 'im_t_indoor_mean' ) 1841 1863 IF ( av == 0 ) THEN … … 1844 1866 IF ( building_id_f%var(j,i) /= building_id_f%fill ) THEN 1845 1867 ! 1846 !-- Determine index of the building within the building data structure. 1847 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), & 1848 DIM = 1 ) 1868 !-- Determine index of the building within the building data structure. 1869 nb = MINLOC( ABS( buildings(:)%id - building_id_f%var(j,i) ), DIM=1 ) 1849 1870 IF ( buildings(nb)%on_pe ) THEN 1850 1871 ! 1851 !-- Write mean building temperature onto output array. Please note, 1852 !-- in contrast to many other loops in the output, the vertical1853 !-- bounds are determined by the lowest and hightest vertical index1854 !-- occupied by the building.1872 !-- Write mean building temperature onto output array. Please note, in 1873 !-- contrast to many other loops in the output, the vertical bounds are 1874 !-- determined by the lowest and hightest vertical index occupied by the 1875 !-- building. 1855 1876 DO k = buildings(nb)%kb_min, buildings(nb)%kb_max 1856 1877 local_pf(i,j,k) = buildings(nb)%t_in(k) … … 1860 1881 ENDDO 1861 1882 ENDDO 1862 ENDIF 1883 ENDIF 1863 1884 1864 1885 CASE ( 'im_hf_roof' ) 1865 IF ( av == 0 ) THEN1886 IF ( av == 0 ) THEN 1866 1887 DO m = 1, surf_usm_h%ns 1867 1888 i = surf_usm_h%i(m) !+ surf_usm_h%ioff … … 1870 1891 local_pf(i,j,k) = surf_usm_h%iwghf_eb(m) 1871 1892 ENDDO 1872 ENDIF 1893 ENDIF 1873 1894 1874 1895 CASE ( 'im_hf_roof_waste' ) 1875 IF ( av == 0 ) THEN1876 DO m = 1, surf_usm_h%ns 1896 IF ( av == 0 ) THEN 1897 DO m = 1, surf_usm_h%ns 1877 1898 i = surf_usm_h%i(m) !+ surf_usm_h%ioff 1878 1899 j = surf_usm_h%j(m) !+ surf_usm_h%joff … … 1883 1904 1884 1905 CASE ( 'im_hf_wall_win' ) 1885 IF ( av == 0 ) THEN1906 IF ( av == 0 ) THEN 1886 1907 DO l = 0, 3 1887 1908 DO m = 1, surf_usm_v(l)%ns … … 1895 1916 1896 1917 CASE ( 'im_hf_wall_win_waste' ) 1897 IF ( av == 0 ) THEN1918 IF ( av == 0 ) THEN 1898 1919 DO l = 0, 3 1899 DO m = 1, surf_usm_v(l)%ns 1920 DO m = 1, surf_usm_v(l)%ns 1900 1921 i = surf_usm_v(l)%i(m) !+ surf_usm_v(l)%ioff 1901 1922 j = surf_usm_v(l)%j(m) !+ surf_usm_v(l)%joff 1902 1923 k = surf_usm_v(l)%k(m) !+ surf_usm_v(l)%koff 1903 local_pf(i,j,k) = surf_usm_v(l)%waste_heat(m) 1924 local_pf(i,j,k) = surf_usm_v(l)%waste_heat(m) 1904 1925 ENDDO 1905 1926 ENDDO … … 1910 1931 1911 1932 ! CASE ( 'im_t_indoor_roof' ) 1912 ! IF ( av == 0 ) THEN1933 ! IF ( av == 0 ) THEN 1913 1934 ! DO m = 1, surf_usm_h%ns 1914 1935 ! i = surf_usm_h%i(m) !+ surf_usm_h%ioff … … 1918 1939 ! ENDDO 1919 1940 ! ENDIF 1920 ! 1941 ! 1921 1942 ! CASE ( 'im_t_indoor_wall_win' ) 1922 ! IF ( av == 0 ) THEN1943 ! IF ( av == 0 ) THEN 1923 1944 ! DO l = 0, 3 1924 1945 ! DO m = 1, surf_usm_v(l)%ns … … 1933 1954 CASE DEFAULT 1934 1955 found = .FALSE. 1935 1936 END SELECT 1937 1938 END SUBROUTINE im_data_output_3d 1939 !------------------------------------------------------------------------------! 1956 1957 END SELECT 1958 1959 END SUBROUTINE im_data_output_3d 1960 1961 1962 !--------------------------------------------------------------------------------------------------! 1940 1963 ! Description: 1941 1964 ! ------------ 1942 1965 !> Parin for &indoor_parameters for indoor model 1943 !------------------------------------------------------------------------------ !1966 !--------------------------------------------------------------------------------------------------! 1944 1967 SUBROUTINE im_parin 1945 1946 USE control_parameters, &1968 1969 USE control_parameters, & 1947 1970 ONLY: indoor_model 1948 1971 … … 1951 1974 1952 1975 NAMELIST /indoor_parameters/ initial_indoor_temperature 1976 1953 1977 1954 1978 ! … … 1956 1980 REWIND ( 11 ) 1957 1981 line = ' ' 1958 DO 1982 DO WHILE ( INDEX( line, '&indoor_parameters' ) == 0 ) 1959 1983 READ ( 11, '(A)', END=10 ) line 1960 1984 ENDDO … … 1980 2004 1981 2005 10 CONTINUE 1982 2006 1983 2007 END SUBROUTINE im_parin 1984 2008 -
palm/trunk/SOURCE/inflow_turbulence.f90
r4429 r4646 1 1 !> @file inflow_turbulence.f90 2 !------------------------------------------------------------------------------ !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 4 ! 5 ! PALM is free software: you can redistribute it and/or modify it under the 6 ! terms of the GNU General Public License as published by the Free Software 7 ! Foundation, either version 3 of the License, or (at your option) any later 8 ! 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/>. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 8 ! 9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 12 ! 13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------ !17 !--------------------------------------------------------------------------------------------------! 19 18 ! 20 19 ! Current revisions: 21 20 ! ----------------- 22 ! 23 ! 21 ! 22 ! 24 23 ! Former revisions: 25 24 ! ----------------- 26 25 ! $Id$ 26 ! file re-formatted to follow the PALM coding standard 27 ! 28 ! 4429 2020-02-27 15:24:30Z raasch 27 29 ! bugfix: cpp-directives added for serial mode 28 ! 30 ! 29 31 ! 4360 2020-01-07 11:25:50Z suehring 30 32 ! use y_shift instead of old parameter recycling_yshift 31 ! 33 ! 32 34 ! 4297 2019-11-21 10:37:50Z oliver.maas 33 ! changed recycling_yshift so that the y-shift can be a multiple of PE 34 ! instead of y-shift of a halfdomain width35 ! 35 ! changed recycling_yshift so that the y-shift can be a multiple of PE instead of y-shift of a half 36 ! domain width 37 ! 36 38 ! 4183 2019-08-23 07:33:16Z oliver.maas 37 ! simplified steering of recycling of absolute values by initialization 38 ! parameterrecycling_method_for_thermodynamic_quantities39 ! 39 ! simplified steering of recycling of absolute values by initialization parameter 40 ! recycling_method_for_thermodynamic_quantities 41 ! 40 42 ! 4182 2019-08-22 15:20:23Z scharf 41 43 ! Corrected "Former revisions" section 42 ! 44 ! 43 45 ! 4172 2019-08-20 11:55:33Z oliver.maas 44 46 ! added optional recycling of absolute values for pt and q 45 ! 47 ! 46 48 ! 3655 2019-01-07 16:51:22Z knoop 47 49 ! Corrected "Former revisions" section … … 51 53 ! Description: 52 54 ! ------------ 53 !> Imposing turbulence at the respective inflow using the turbulence 54 !> recycling method ofKataoka and Mizuno (2002).55 !------------------------------------------------------------------------------ !55 !> Imposing turbulence at the respective inflow using the turbulence recycling method of 56 !> Kataoka and Mizuno (2002). 57 !--------------------------------------------------------------------------------------------------! 56 58 SUBROUTINE inflow_turbulence 57 58 59 USE arrays_3d, &59 60 61 USE arrays_3d, & 60 62 ONLY: e, inflow_damping_factor, mean_inflow_profiles, pt, q, s, u, v, w 61 62 #if defined( __parallel ) 63 USE control_parameters, & 64 ONLY: humidity, passive_scalar, recycling_plane, y_shift, & 65 recycling_method_for_thermodynamic_quantities 63 64 #if defined( __parallel ) 65 USE control_parameters, & 66 ONLY: humidity, passive_scalar, recycling_method_for_thermodynamic_quantities, & 67 recycling_plane, y_shift 68 66 69 #else 67 USE control_parameters, & 68 ONLY: humidity, passive_scalar, recycling_plane, & 69 recycling_method_for_thermodynamic_quantities 70 #endif 71 72 USE cpulog, & 70 USE control_parameters, & 71 ONLY: humidity, passive_scalar, recycling_method_for_thermodynamic_quantities, & 72 recycling_plane 73 74 #endif 75 76 USE cpulog, & 73 77 ONLY: cpu_log, log_point 74 75 USE indices, &78 79 USE indices, & 76 80 ONLY: nbgp, nxl, ny, nyn, nys, nyng, nysg, nzb, nzt 77 81 78 82 USE kinds 79 83 80 84 USE pegrid 81 85 82 86 83 87 IMPLICIT NONE 84 88 85 89 INTEGER(iwp) :: i !< loop index 86 90 INTEGER(iwp) :: j !< loop index … … 94 98 #endif 95 99 96 REAL(wp), DIMENSION(nzb:nzt+1,7,nbgp) :: & 97 avpr !< stores averaged profiles at recycling plane 98 REAL(wp), DIMENSION(nzb:nzt+1,7,nbgp) :: & 99 avpr_l !< auxiliary variable to calculate avpr 100 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,7,nbgp) :: & 101 inflow_dist !< turbulence signal of vars, added at inflow boundary 102 #if defined( __parallel ) 103 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,7,nbgp) :: & 104 local_inflow_dist !< auxiliary variable for inflow_dist, used for y-shift 105 #endif 106 100 REAL(wp), DIMENSION(nzb:nzt+1,7,nbgp) :: avpr !< stores averaged profiles at recycling plane 101 REAL(wp), DIMENSION(nzb:nzt+1,7,nbgp) :: avpr_l !< auxiliary variable to calculate avpr 102 103 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,7,nbgp) :: inflow_dist !< turbulence signal of vars, added at inflow boundary 104 #if defined( __parallel ) 105 REAL(wp), DIMENSION(nzb:nzt+1,nysg:nyng,7,nbgp) :: local_inflow_dist !< auxiliary variable for inflow_dist, used for y-shift 106 #endif 107 107 108 CALL cpu_log( log_point(40), 'inflow_turbulence', 'start' ) 108 109 109 110 ! 110 111 !-- Carry out spanwise averaging in the recycling plane … … 119 120 #if defined( __parallel ) 120 121 IF ( myidx == id_recycling ) THEN 121 122 122 123 DO l = 1, nbgp 123 124 DO j = nys, nyn … … 129 130 avpr_l(k,4,l) = avpr_l(k,4,l) + pt(k,j,i) 130 131 avpr_l(k,5,l) = avpr_l(k,5,l) + e(k,j,i) 131 IF ( humidity ) & 132 avpr_l(k,6,l) = avpr_l(k,6,l) + q(k,j,i) 133 IF ( passive_scalar ) & 134 avpr_l(k,7,l) = avpr_l(k,7,l) + s(k,j,i) 132 IF ( humidity ) avpr_l(k,6,l) = avpr_l(k,6,l) + q(k,j,i) 133 IF ( passive_scalar ) avpr_l(k,7,l) = avpr_l(k,7,l) + s(k,j,i) 135 134 136 135 ENDDO … … 143 142 !-- Now, averaging over all PEs 144 143 IF ( collective_wait ) CALL MPI_BARRIER( comm2d, ierr ) 145 CALL MPI_ALLREDUCE( avpr_l(nzb,1,1), avpr(nzb,1,1), ngp_pr, MPI_REAL, & 146 MPI_SUM, comm2d, ierr ) 144 CALL MPI_ALLREDUCE( avpr_l(nzb,1,1), avpr(nzb,1,1), ngp_pr, MPI_REAL, MPI_SUM, comm2d, ierr ) 147 145 148 146 #else … … 156 154 avpr_l(k,4,l) = avpr_l(k,4,l) + pt(k,j,i) 157 155 avpr_l(k,5,l) = avpr_l(k,5,l) + e(k,j,i) 158 IF ( humidity ) & 159 avpr_l(k,6,l) = avpr_l(k,6,l) + q(k,j,i) 160 IF ( passive_scalar ) & 161 avpr_l(k,7,l) = avpr_l(k,7,l) + s(k,j,i) 162 163 ENDDO 164 ENDDO 165 i = i + 1 156 IF ( humidity ) avpr_l(k,6,l) = avpr_l(k,6,l) + q(k,j,i) 157 IF ( passive_scalar ) avpr_l(k,7,l) = avpr_l(k,7,l) + s(k,j,i) 158 159 ENDDO 160 ENDDO 161 i = i + 1 166 162 ENDDO 167 163 168 164 avpr = avpr_l 169 165 #endif … … 171 167 avpr = avpr / ( ny + 1 ) 172 168 ! 173 !-- Calculate the disturbances at the recycling plane 174 !-- for recycling of absolute quantities, the disturbance is defined as the absolute value 175 !-- (and not as the deviation from the mean profile) 169 !-- Calculate the disturbances at the recycling plane for recycling of absolute quantities, the 170 !-- disturbance is defined as the absolute value (and not as the deviation from the mean profile). 176 171 i = recycling_plane 177 172 … … 184 179 inflow_dist(k,j,2,l) = v(k,j,i) - avpr(k,2,l) 185 180 inflow_dist(k,j,3,l) = w(k,j,i) - avpr(k,3,l) 186 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) &187 == 'turbulent_fluctuation' ) THEN181 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 182 == 'turbulent_fluctuation' ) THEN 188 183 inflow_dist(k,j,4,l) = pt(k,j,i) - avpr(k,4,l) 189 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) &190 == 'absolute_value' ) THEN184 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 185 == 'absolute_value' ) THEN 191 186 inflow_dist(k,j,4,l) = pt(k,j,i) 192 187 ENDIF 193 188 inflow_dist(k,j,5,l) = e(k,j,i) - avpr(k,5,l) 194 189 IF ( humidity ) THEN 195 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) &196 == 'turbulent_fluctuation' ) THEN190 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 191 == 'turbulent_fluctuation' ) THEN 197 192 inflow_dist(k,j,6,l) = q(k,j,i) - avpr(k,6,l) 198 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) &199 == 'absolute_value' ) THEN193 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 194 == 'absolute_value' ) THEN 200 195 inflow_dist(k,j,6,l) = q(k,j,i) 201 196 ENDIF 202 197 ENDIF 203 IF ( passive_scalar ) &198 IF ( passive_scalar ) & 204 199 inflow_dist(k,j,7,l) = s(k,j,i) - avpr(k,7,l) 205 200 ENDDO … … 216 211 inflow_dist(k,j,2,l) = v(k,j,i) - avpr(k,2,l) 217 212 inflow_dist(k,j,3,l) = w(k,j,i) - avpr(k,3,l) 218 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) &213 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 219 214 == 'turbulent_fluctuation' ) THEN 220 215 inflow_dist(k,j,4,l) = pt(k,j,i) - avpr(k,4,l) 221 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) &222 == 'absolute_value' ) THEN216 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 217 == 'absolute_value' ) THEN 223 218 inflow_dist(k,j,4,l) = pt(k,j,i) 224 219 ENDIF 225 220 inflow_dist(k,j,5,l) = e(k,j,i) - avpr(k,5,l) 226 221 IF ( humidity ) THEN 227 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) &228 222 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 223 == 'turbulent_fluctuation' ) THEN 229 224 inflow_dist(k,j,6,l) = q(k,j,i) - avpr(k,6,l) 230 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) &231 == 'absolute_value' ) THEN225 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 226 == 'absolute_value' ) THEN 232 227 inflow_dist(k,j,6,l) = q(k,j,i) 233 228 ENDIF 234 229 ENDIF 235 IF ( passive_scalar ) &230 IF ( passive_scalar ) & 236 231 inflow_dist(k,j,7,l) = s(k,j,i) - avpr(k,7,l) 237 232 238 233 ENDDO 239 234 ENDDO … … 247 242 IF ( myidx == id_recycling .AND. myidx /= id_inflow ) THEN 248 243 249 CALL MPI_SEND( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, & 250 id_inflow, 1, comm1dx, ierr ) 244 CALL MPI_SEND( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, id_inflow, 1, comm1dx, ierr ) 251 245 252 246 ELSEIF ( myidx /= id_recycling .AND. myidx == id_inflow ) THEN 253 247 254 248 inflow_dist = 0.0_wp 255 CALL MPI_RECV( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, 256 id_recycling, 1, comm1dx,status, ierr )249 CALL MPI_RECV( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, id_recycling, 1, comm1dx, & 250 status, ierr ) 257 251 258 252 ENDIF … … 262 256 !-- Shift inflow_dist in positive y direction by a number of 263 257 !-- PEs equal to y_shift 264 IF ( ( y_shift /= 0 ) .AND. myidx == id_inflow )THEN265 266 ! 267 !-- Calculate the ID of the PE which sends data to this PE (prev) and of the 268 !-- PE which receivesdata from this PE (next).258 IF ( ( y_shift /= 0 ) .AND. myidx == id_inflow ) THEN 259 260 ! 261 !-- Calculate the ID of the PE which sends data to this PE (prev) and of the PE which receives 262 !-- data from this PE (next). 269 263 prev = MODULO(myidy - y_shift , pdims(2)) 270 264 next = MODULO(myidy + y_shift , pdims(2)) 271 265 272 266 local_inflow_dist = 0.0_wp 273 267 274 CALL MPI_SENDRECV( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, &275 next, 1, local_inflow_dist(nzb,nysg,1,1), ngp_ifd,&276 MPI_REAL, prev, 1, comm1dy,status, ierr )268 CALL MPI_SENDRECV( inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, next, 1, & 269 local_inflow_dist(nzb,nysg,1,1), ngp_ifd, MPI_REAL, prev, 1, comm1dy, & 270 status, ierr ) 277 271 278 272 inflow_dist = local_inflow_dist … … 289 283 DO k = nzb, nzt + 1 290 284 291 u(k,j,-nbgp+1:0) = mean_inflow_profiles(k,1) + & 292 inflow_dist(k,j,1,1:nbgp) * inflow_damping_factor(k) 293 v(k,j,-nbgp:-1) = mean_inflow_profiles(k,2) + & 294 inflow_dist(k,j,2,1:nbgp) * inflow_damping_factor(k) 295 w(k,j,-nbgp:-1) = & 296 inflow_dist(k,j,3,1:nbgp) * inflow_damping_factor(k) 297 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 285 u(k,j,-nbgp+1:0) = mean_inflow_profiles(k,1) + & 286 inflow_dist(k,j,1,1:nbgp) * inflow_damping_factor(k) 287 v(k,j,-nbgp:-1) = mean_inflow_profiles(k,2) + & 288 inflow_dist(k,j,2,1:nbgp) * inflow_damping_factor(k) 289 w(k,j,-nbgp:-1) = inflow_dist(k,j,3,1:nbgp) * inflow_damping_factor(k) 290 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 298 291 == 'turbulent_fluctuation' ) THEN 299 pt(k,j,-nbgp:-1) = mean_inflow_profiles(k,4) + &300 inflow_dist(k,j,4,1:nbgp) * inflow_damping_factor(k)301 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) &302 == 'absolute_value' ) THEN292 pt(k,j,-nbgp:-1) = mean_inflow_profiles(k,4) + & 293 inflow_dist(k,j,4,1:nbgp) * inflow_damping_factor(k) 294 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 295 == 'absolute_value' ) THEN 303 296 pt(k,j,-nbgp:-1) = inflow_dist(k,j,4,1:nbgp) 304 297 ENDIF 305 e(k,j,-nbgp:-1) = mean_inflow_profiles(k,5) + &306 inflow_dist(k,j,5,1:nbgp) * inflow_damping_factor(k)298 e(k,j,-nbgp:-1) = mean_inflow_profiles(k,5) + & 299 inflow_dist(k,j,5,1:nbgp) * inflow_damping_factor(k) 307 300 e(k,j,-nbgp:-1) = MAX( e(k,j,-nbgp:-1), 0.0_wp ) 308 301 IF ( humidity ) THEN 309 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) &302 IF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 310 303 == 'turbulent_fluctuation' ) THEN 311 q(k,j,-nbgp:-1) = mean_inflow_profiles(k,6) + &312 inflow_dist(k,j,6,1:nbgp) * inflow_damping_factor(k)313 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) &314 == 'absolute_value' ) THEN304 q(k,j,-nbgp:-1) = mean_inflow_profiles(k,6) + & 305 inflow_dist(k,j,6,1:nbgp) * inflow_damping_factor(k) 306 ELSEIF ( TRIM( recycling_method_for_thermodynamic_quantities ) & 307 == 'absolute_value' ) THEN 315 308 q(k,j,-nbgp:-1) = inflow_dist(k,j,6,1:nbgp) 316 309 ENDIF 317 310 ENDIF 318 IF ( passive_scalar ) &319 s(k,j,-nbgp:-1) = mean_inflow_profiles(k,7) + &320 inflow_dist(k,j,7,1:nbgp) * inflow_damping_factor(k)321 322 ENDDO 323 ENDDO 324 325 ENDIF 326 327 328 CALL cpu_log( log_point(40), 'inflow_turbulence', 'stop' )311 IF ( passive_scalar ) & 312 s(k,j,-nbgp:-1) = mean_inflow_profiles(k,7) + & 313 inflow_dist(k,j,7,1:nbgp) * inflow_damping_factor(k) 314 315 ENDDO 316 ENDDO 317 318 ENDIF 319 320 321 CALL cpu_log( log_point(40), 'inflow_turbulence', 'stop' ) 329 322 330 323
Note: See TracChangeset
for help on using the changeset viewer.