[1682] | 1 | !> @file lpm_calc_liquid_water_content.f90 |
---|
[1036] | 2 | !--------------------------------------------------------------------------------! |
---|
| 3 | ! This file is part of PALM. |
---|
| 4 | ! |
---|
| 5 | ! PALM is free software: you can redistribute it and/or modify it under the terms |
---|
| 6 | ! of the GNU General Public License as published by the Free Software Foundation, |
---|
| 7 | ! either version 3 of the License, or (at your option) any later version. |
---|
| 8 | ! |
---|
| 9 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 10 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 11 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 12 | ! |
---|
| 13 | ! You should have received a copy of the GNU General Public License along with |
---|
| 14 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 15 | ! |
---|
[1818] | 16 | ! Copyright 1997-2016 Leibniz Universitaet Hannover |
---|
[1036] | 17 | !--------------------------------------------------------------------------------! |
---|
| 18 | ! |
---|
[849] | 19 | ! Current revisions: |
---|
| 20 | ! ------------------ |
---|
[1823] | 21 | ! |
---|
[1360] | 22 | ! |
---|
[1321] | 23 | ! Former revisions: |
---|
| 24 | ! ----------------- |
---|
| 25 | ! $Id: lpm_calc_liquid_water_content.f90 1823 2016-04-07 08:57:52Z suehring $ |
---|
| 26 | ! |
---|
[1823] | 27 | ! 1822 2016-04-07 07:49:42Z hoffmann |
---|
| 28 | ! Unused variables removed. |
---|
| 29 | ! |
---|
[1683] | 30 | ! 1682 2015-10-07 23:56:08Z knoop |
---|
| 31 | ! Code annotations made doxygen readable |
---|
| 32 | ! |
---|
[1360] | 33 | ! 1359 2014-04-11 17:15:14Z hoffmann |
---|
| 34 | ! New particle structure integrated. |
---|
| 35 | ! Kind definition added to all floating point numbers. |
---|
| 36 | ! |
---|
[1321] | 37 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
[1320] | 38 | ! ONLY-attribute added to USE-statements, |
---|
| 39 | ! kind-parameters added to all INTEGER and REAL declaration statements, |
---|
| 40 | ! kinds are defined in new module kinds, |
---|
| 41 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 42 | ! all variable declaration statements |
---|
[849] | 43 | ! |
---|
[1037] | 44 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 45 | ! code put under GPL (PALM 3.9) |
---|
| 46 | ! |
---|
[850] | 47 | ! 849 2012-03-15 10:35:09Z raasch |
---|
| 48 | ! initial revision (former part of advec_particles) |
---|
[849] | 49 | ! |
---|
[850] | 50 | ! |
---|
[849] | 51 | ! Description: |
---|
| 52 | ! ------------ |
---|
[1682] | 53 | !> Calculate the liquid water content for each grid box. |
---|
[849] | 54 | !------------------------------------------------------------------------------! |
---|
[1682] | 55 | SUBROUTINE lpm_calc_liquid_water_content |
---|
| 56 | |
---|
[849] | 57 | |
---|
[1320] | 58 | USE arrays_3d, & |
---|
| 59 | ONLY: ql, ql_v, ql_vp |
---|
[849] | 60 | |
---|
[1320] | 61 | USE cloud_parameters, & |
---|
| 62 | ONLY: rho_l |
---|
| 63 | |
---|
| 64 | USE constants, & |
---|
| 65 | ONLY: pi |
---|
| 66 | |
---|
| 67 | USE control_parameters, & |
---|
| 68 | ONLY: dz, message_string, rho_surface |
---|
| 69 | |
---|
| 70 | USE cpulog, & |
---|
| 71 | ONLY: cpu_log, log_point_s |
---|
| 72 | |
---|
| 73 | USE grid_variables, & |
---|
| 74 | ONLY: dx, dy |
---|
| 75 | |
---|
| 76 | USE indices, & |
---|
| 77 | ONLY: nxl, nxr, nyn, nys, nzb, nzt |
---|
| 78 | |
---|
| 79 | USE kinds |
---|
| 80 | |
---|
| 81 | USE particle_attributes, & |
---|
[1359] | 82 | ONLY: grid_particles, number_of_particles, particles, prt_count |
---|
[1320] | 83 | |
---|
[849] | 84 | IMPLICIT NONE |
---|
| 85 | |
---|
[1682] | 86 | INTEGER(iwp) :: i !< |
---|
| 87 | INTEGER(iwp) :: j !< |
---|
| 88 | INTEGER(iwp) :: k !< |
---|
| 89 | INTEGER(iwp) :: n !< |
---|
[849] | 90 | |
---|
| 91 | CALL cpu_log( log_point_s(45), 'lpm_calc_ql', 'start' ) |
---|
| 92 | |
---|
| 93 | ! |
---|
| 94 | !-- Set water content initially to zero |
---|
[1359] | 95 | ql = 0.0_wp; ql_v = 0.0_wp; ql_vp = 0.0_wp |
---|
[849] | 96 | |
---|
| 97 | ! |
---|
| 98 | !-- Calculate for each grid box |
---|
| 99 | DO i = nxl, nxr |
---|
| 100 | DO j = nys, nyn |
---|
[1359] | 101 | DO k = nzb+1, nzt |
---|
[849] | 102 | |
---|
[1359] | 103 | number_of_particles = prt_count(k,j,i) |
---|
| 104 | IF ( number_of_particles <= 0 ) CYCLE |
---|
| 105 | particles => grid_particles(k,j,i)%particles(1:number_of_particles) |
---|
| 106 | |
---|
[849] | 107 | ! |
---|
| 108 | !-- Calculate the total volume in the boxes (ql_v, weighting factor |
---|
| 109 | !-- has to beincluded) |
---|
[1359] | 110 | DO n = 1, prt_count(k,j,i) |
---|
[849] | 111 | ql_v(k,j,i) = ql_v(k,j,i) + particles(n)%weight_factor * & |
---|
| 112 | particles(n)%radius**3 |
---|
| 113 | ENDDO |
---|
| 114 | |
---|
| 115 | ! |
---|
| 116 | !-- Calculate the liquid water content |
---|
[1359] | 117 | IF ( ql_v(k,j,i) /= 0.0_wp ) THEN |
---|
| 118 | ql(k,j,i) = ql(k,j,i) + rho_l * 1.33333333_wp * pi * & |
---|
[849] | 119 | ql_v(k,j,i) / & |
---|
| 120 | ( rho_surface * dx * dy * dz ) |
---|
| 121 | |
---|
[1359] | 122 | IF ( ql(k,j,i) < 0.0_wp ) THEN |
---|
[849] | 123 | WRITE( message_string, * ) 'LWC out of range: ' , & |
---|
[1359] | 124 | ql(k,j,i),i,j,k |
---|
[849] | 125 | CALL message( 'lpm_calc_liquid_water_content', '', 2, 2, & |
---|
| 126 | -1, 6, 1 ) |
---|
| 127 | ENDIF |
---|
| 128 | |
---|
| 129 | ELSE |
---|
| 130 | |
---|
[1359] | 131 | ql(k,j,i) = 0.0_wp |
---|
[849] | 132 | |
---|
| 133 | ENDIF |
---|
| 134 | |
---|
| 135 | ENDDO |
---|
| 136 | ENDDO |
---|
| 137 | ENDDO |
---|
| 138 | |
---|
| 139 | CALL cpu_log( log_point_s(45), 'lpm_calc_ql', 'stop' ) |
---|
| 140 | |
---|
| 141 | |
---|
| 142 | END SUBROUTINE lpm_calc_liquid_water_content |
---|