[1682] | 1 | !> @file compute_vpt.f90 |
---|
[2000] | 2 | !------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[1036] | 4 | ! |
---|
[2000] | 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. |
---|
[1036] | 9 | ! |
---|
| 10 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 11 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 12 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 13 | ! |
---|
| 14 | ! You should have received a copy of the GNU General Public License along with |
---|
| 15 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 16 | ! |
---|
[4360] | 17 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
[2000] | 18 | !------------------------------------------------------------------------------! |
---|
[1036] | 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[1] | 21 | ! ----------------- |
---|
[1354] | 22 | ! |
---|
[2001] | 23 | ! |
---|
[1321] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: compute_vpt.f90 4502 2020-04-17 16:14:16Z schwenkel $ |
---|
[4502] | 27 | ! Implementation of ice microphysics |
---|
| 28 | ! |
---|
| 29 | ! 4360 2020-01-07 11:25:50Z suehring |
---|
[4182] | 30 | ! Corrected "Former revisions" section |
---|
| 31 | ! |
---|
| 32 | ! 3655 2019-01-07 16:51:22Z knoop |
---|
[3274] | 33 | ! Modularization of all bulk cloud physics code components |
---|
[1321] | 34 | ! |
---|
[4182] | 35 | ! Revision 1.1 2000/04/13 14:40:53 schroeter |
---|
| 36 | ! Initial revision |
---|
| 37 | ! |
---|
| 38 | ! |
---|
[1] | 39 | ! Description: |
---|
| 40 | ! ------------- |
---|
[1682] | 41 | !> Computation of the virtual potential temperature |
---|
[1320] | 42 | !------------------------------------------------------------------------------! |
---|
[1682] | 43 | SUBROUTINE compute_vpt |
---|
| 44 | |
---|
[1] | 45 | |
---|
[1320] | 46 | USE arrays_3d, & |
---|
[4502] | 47 | ONLY: pt, q, ql, vpt, d_exner, qi |
---|
[3274] | 48 | |
---|
| 49 | USE basic_constants_and_equations_mod, & |
---|
[4502] | 50 | ONLY: lv_d_cp, ls_d_cp |
---|
[3274] | 51 | |
---|
| 52 | USE control_parameters, & |
---|
| 53 | ONLY: cloud_droplets |
---|
| 54 | |
---|
[1320] | 55 | USE indices, & |
---|
| 56 | ONLY: nzb, nzt |
---|
[3274] | 57 | |
---|
[1320] | 58 | USE kinds |
---|
[1] | 59 | |
---|
[3274] | 60 | USE bulk_cloud_model_mod, & |
---|
[4502] | 61 | ONLY: bulk_cloud_model, microphysics_ice_extension |
---|
[3274] | 62 | |
---|
[1] | 63 | IMPLICIT NONE |
---|
| 64 | |
---|
[1682] | 65 | INTEGER(iwp) :: k !< |
---|
[1] | 66 | |
---|
[3274] | 67 | IF ( .NOT. bulk_cloud_model .AND. .NOT. cloud_droplets ) THEN |
---|
[1353] | 68 | vpt = pt * ( 1.0_wp + 0.61_wp * q ) |
---|
[4502] | 69 | ELSEIF ( bulk_cloud_model .AND. .NOT. microphysics_ice_extension ) THEN |
---|
[1] | 70 | DO k = nzb, nzt+1 |
---|
[4502] | 71 | vpt(k,:,:) = ( pt(k,:,:) + d_exner(k) * lv_d_cp * ql(k,:,:) ) * & |
---|
| 72 | ( 1.0_wp + 0.61_wp * q(k,:,:) - 1.61_wp * ql(k,:,:) ) |
---|
[1] | 73 | ENDDO |
---|
[4502] | 74 | ELSEIF ( bulk_cloud_model .AND. microphysics_ice_extension ) THEN |
---|
| 75 | DO k = nzb, nzt+1 |
---|
| 76 | vpt(k,:,:) = ( pt(k,:,:) + d_exner(k) * lv_d_cp * ql(k,:,:) + & |
---|
| 77 | d_exner(k) * ls_d_cp * qi(k,:,:) ) * & |
---|
| 78 | ( 1.0_wp + 0.61_wp * q(k,:,:) - 1.61_wp * & |
---|
| 79 | ( ql(k,:,:) + qi(k,:,:) ) ) |
---|
| 80 | ENDDO |
---|
[799] | 81 | ELSE |
---|
[1353] | 82 | vpt = pt * ( 1.0_wp + 0.61_wp * q - ql ) |
---|
[1] | 83 | ENDIF |
---|
| 84 | |
---|
| 85 | END SUBROUTINE compute_vpt |
---|