source: palm/trunk/SOURCE/interaction_droplets_ptq.f90 @ 1874

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

last commit documented

  • Property svn:keywords set to Id
File size: 4.8 KB
RevLine 
[1873]1!> @file interaction_droplets_ptq.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!
[484]19! Current revisions:
[1]20! -----------------
[1846]21!
22!
[1]23! Former revisions:
24! -----------------
[3]25! $Id: interaction_droplets_ptq.f90 1874 2016-04-18 14:51:10Z maronga $
[800]26!
[1874]27! 1873 2016-04-18 14:50:06Z maronga
28! Module renamed (removed _mod)
29!
30!
[1851]31! 1850 2016-04-08 13:29:27Z maronga
32! Module renamed
33!
34!
[1846]35! 1845 2016-04-08 08:29:13Z raasch
36! nzb_2d replaced by nzb_s_inner
37!
[1823]38! 1822 2016-04-07 07:49:42Z hoffmann
39! Unused variables removed.
40!
[1780]41! 1779 2016-03-03 08:01:28Z raasch
42! bugfix: module procedure names shortened to avoid Intel compiler warnings
43! about too long names
44!
[1683]45! 1682 2015-10-07 23:56:08Z knoop
46! Code annotations made doxygen readable
47!
[1321]48! 1320 2014-03-20 08:40:49Z raasch
49! ONLY-attribute added to USE-statements,
50! kind-parameters added to all INTEGER and REAL declaration statements,
51! kinds are defined in new module kinds,
52! revision history before 2012 removed,
53! comment fields (!:) to be used for variable explanations added to
54! all variable declaration statements
55!
[1037]56! 1036 2012-10-22 13:43:42Z raasch
57! code put under GPL (PALM 3.9)
58!
[800]59! 799 2011-12-21 17:48:03Z franke
60! Bugfix: pt_d_t(k) was missing in calculation of pt_p
61!
[3]62! RCS Log replace by Id keyword, revision history cleaned up
63!
[1]64! Revision 1.1  2005/06/26 19:57:47  raasch
65! Initial revision
66!
67!
68! Description:
69! ------------
[1682]70!> Release of latent heat and change of specific humidity due to condensation /
71!> evaporation of droplets.
[1]72!------------------------------------------------------------------------------!
[1682]73 MODULE interaction_droplets_ptq_mod
74 
[1]75
76    PRIVATE
77    PUBLIC interaction_droplets_ptq
78
79    INTERFACE interaction_droplets_ptq
[1779]80!
81!--    Internal names shortened in order ro avoid Intel compiler messages
82!--    about too long names
83       MODULE PROCEDURE i_droplets_ptq
84       MODULE PROCEDURE i_droplets_ptq_ij
[1]85    END INTERFACE interaction_droplets_ptq
86 
87 CONTAINS
88
89
90!------------------------------------------------------------------------------!
[1682]91! Description:
92! ------------
93!> Call for all grid points
[1]94!------------------------------------------------------------------------------!
[1779]95    SUBROUTINE i_droplets_ptq
[1]96
[1320]97       USE arrays_3d,                                                          &
98           ONLY:  pt_p, ql_c, q_p
99           
100       USE cloud_parameters,                                                   &
101           ONLY:  l_d_cp, pt_d_t
102           
103       USE indices,                                                            &
[1845]104           ONLY:  nxl, nxr, nyn, nys, nzb_s_inner, nzt
[1320]105           
106       USE kinds
[1]107
108       USE pegrid
109
110       IMPLICIT NONE
111
[1682]112       INTEGER(iwp) ::  i !<
113       INTEGER(iwp) ::  j !<
114       INTEGER(iwp) ::  k !<
[1]115
116 
117       DO  i = nxl, nxr
118          DO  j = nys, nyn
[1845]119             DO  k = nzb_s_inner(j,i)+1, nzt
[1]120                q_p(k,j,i)  = q_p(k,j,i)  - ql_c(k,j,i)
[799]121                pt_p(k,j,i) = pt_p(k,j,i) + l_d_cp * ql_c(k,j,i) * pt_d_t(k)
[1]122             ENDDO
123          ENDDO
124       ENDDO
125
[1779]126    END SUBROUTINE i_droplets_ptq
[1]127
128
129!------------------------------------------------------------------------------!
[1682]130! Description:
131! ------------
132!> Call for grid point i,j
[1]133!------------------------------------------------------------------------------!
[1779]134    SUBROUTINE i_droplets_ptq_ij( i, j )
[1]135
[1320]136       USE arrays_3d,                                                          &
137           ONLY:  pt_p, ql_c, q_p
[1]138
[1320]139       USE cloud_parameters,                                                   &
140           ONLY:  l_d_cp, pt_d_t
141
142       USE indices,                                                            &
[1845]143           ONLY:  nzb_s_inner, nzt
[1320]144
145       USE kinds,                                                              &
146           ONLY:  iwp, wp
147
[1]148       USE pegrid
149
150       IMPLICIT NONE
151
[1682]152       INTEGER(iwp) ::  i !<
153       INTEGER(iwp) ::  j !<
154       INTEGER(iwp) ::  k !<
[1]155
156
[1845]157       DO  k = nzb_s_inner(j,i)+1, nzt
[1]158          q_p(k,j,i)  = q_p(k,j,i)  - ql_c(k,j,i)
[799]159          pt_p(k,j,i) = pt_p(k,j,i) + l_d_cp * ql_c(k,j,i) * pt_d_t(k)
[1]160       ENDDO
161
[1779]162    END SUBROUTINE i_droplets_ptq_ij
[1]163
164 END MODULE interaction_droplets_ptq_mod
Note: See TracBrowser for help on using the repository browser.