source: palm/trunk/SOURCE/advec_w_pw.f90 @ 3538

Last change on this file since 3538 was 3538, checked in by suehring, 5 years ago

Remove unnecessary double masking of topography in advection and buoyancy terms

  • Property svn:keywords set to Id
File size: 6.2 KB
RevLine 
[1873]1!> @file advec_w_pw.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!
[2718]17! Copyright 1997-2018 Leibniz Universitaet Hannover
[2000]18!------------------------------------------------------------------------------!
[1036]19!
[484]20! Current revisions:
[1]21! -----------------
[1354]22!
[2233]23!
[1321]24! Former revisions:
25! -----------------
26! $Id: advec_w_pw.f90 3538 2018-11-20 10:55:41Z suehring $
[3538]27! Remove unnecessary double-masking of topography
28!
29! 2718 2018-01-02 08:49:38Z maronga
[2716]30! Corrected "Former revisions" section
31!
32! 2696 2017-12-14 17:12:51Z kanani
33! Change in file header (GPL part)
[1321]34!
[2716]35! 2233 2017-05-30 18:08:54Z suehring
36!
[2233]37! 2232 2017-05-30 17:47:52Z suehring
38! topography representation via flags
39!
[2001]40! 2000 2016-08-20 18:09:15Z knoop
41! Forced header and separation lines into 80 columns
42!
[1874]43! 1873 2016-04-18 14:50:06Z maronga
44! Module renamed (removed _mod)
45!
46!
[1851]47! 1850 2016-04-08 13:29:27Z maronga
48! Module renamed
49!
50!
[1683]51! 1682 2015-10-07 23:56:08Z knoop
52! Code annotations made doxygen readable
53!
[1354]54! 1353 2014-04-08 15:21:23Z heinze
55! REAL constants provided with KIND-attribute
56!
[1321]57! 1320 2014-03-20 08:40:49Z raasch
[1320]58! ONLY-attribute added to USE-statements,
59! kind-parameters added to all INTEGER and REAL declaration statements,
60! kinds are defined in new module kinds,
61! revision history before 2012 removed,
62! comment fields (!:) to be used for variable explanations added to
63! all variable declaration statements
[1]64!
[1037]65! 1036 2012-10-22 13:43:42Z raasch
66! code put under GPL (PALM 3.9)
67!
[1]68! Revision 1.1  1997/08/11 06:10:29  raasch
69! Initial revision
70!
71!
72! Description:
73! ------------
[1682]74!> Advection term for w velocity-component using Piacsek and Williams.
75!> Vertical advection at the first grid point above the surface is done with
76!> normal centred differences, because otherwise no information from the surface
77!> would be communicated upwards due to w=0 at k=nzb.
[1]78!------------------------------------------------------------------------------!
[1682]79 MODULE advec_w_pw_mod
80 
[1]81
82    PRIVATE
83    PUBLIC advec_w_pw
84
85    INTERFACE advec_w_pw
86       MODULE PROCEDURE advec_w_pw
87       MODULE PROCEDURE advec_w_pw_ij
88    END INTERFACE advec_w_pw
89 
90 CONTAINS
91
92
93!------------------------------------------------------------------------------!
[1682]94! Description:
95! ------------
96!> Call for all grid points
[1]97!------------------------------------------------------------------------------!
98    SUBROUTINE advec_w_pw
99
[1320]100       USE arrays_3d,                                                          &
101           ONLY:  ddzu, tend, u, v, w
[1]102
[1320]103       USE control_parameters,                                                 &
104           ONLY:  u_gtrans, v_gtrans
105
106       USE grid_variables,                                                     &
107           ONLY:  ddx, ddy
108
109       USE indices,                                                            &
[3538]110           ONLY:  nxl, nxr, nyn, nys, nzb, nzt
[1320]111
112       USE kinds
113
114
[1]115       IMPLICIT NONE
116
[1682]117       INTEGER(iwp) ::  i !<
118       INTEGER(iwp) ::  j !<
119       INTEGER(iwp) ::  k !<
[1320]120       
[1682]121       REAL(wp)    ::  gu !<
122       REAL(wp)    ::  gv !<
[1]123
124 
[1353]125       gu = 2.0_wp * u_gtrans
126       gv = 2.0_wp * v_gtrans
[1]127       DO  i = nxl, nxr
128          DO  j = nys, nyn
[2232]129             DO  k = nzb+1, nzt
[1353]130                tend(k,j,i) = tend(k,j,i) - 0.25_wp * (                        &
[1]131                         ( w(k,j,i+1) * ( u(k+1,j,i+1) + u(k,j,i+1) - gu )     &
132                         - w(k,j,i-1) * ( u(k+1,j,i) + u(k,j,i) - gu ) ) * ddx &
133                       + ( w(k,j+1,i) * ( v(k+1,j+1,i) + v(k,j+1,i) - gv )     &
134                         - w(k,j-1,i) * ( v(k+1,j,i) + v(k,j,i) - gv ) ) * ddy &
135                       + ( w(k+1,j,i) * ( w(k+1,j,i) + w(k,j,i) )              &
136                         - w(k-1,j,i) * ( w(k,j,i) + w(k-1,j,i) ) )            &
137                                                                  * ddzu(k+1)  &
[3538]138                                                      )
[1]139             ENDDO
140          ENDDO
141       ENDDO
142
143    END SUBROUTINE advec_w_pw
144
145
146!------------------------------------------------------------------------------!
[1682]147! Description:
148! ------------
149!> Call for grid point i,j
[1]150!------------------------------------------------------------------------------!
151    SUBROUTINE advec_w_pw_ij( i, j )
152
[1320]153       USE arrays_3d,                                                          &
154           ONLY:  ddzu, tend, u, v, w
[1]155
[1320]156       USE control_parameters,                                                 &
157           ONLY:  u_gtrans, v_gtrans
158
159       USE grid_variables,                                                     &
160           ONLY:  ddx, ddy
161
162       USE indices,                                                            &
[3538]163           ONLY:  nzb, nzt
[1320]164
165       USE kinds
166
167
[1]168       IMPLICIT NONE
169
[1682]170       INTEGER(iwp) ::  i !<
171       INTEGER(iwp) ::  j !<
172       INTEGER(iwp) ::  k !<
[1320]173       
[1682]174       REAL(wp)    ::  gu !<
175       REAL(wp)    ::  gv !<
[1]176
[1353]177       gu = 2.0_wp * u_gtrans
178       gv = 2.0_wp * v_gtrans
[2232]179       DO  k = nzb+1, nzt
[1353]180          tend(k,j,i) = tend(k,j,i) - 0.25_wp * (                              &
[1]181                         ( w(k,j,i+1) * ( u(k+1,j,i+1) + u(k,j,i+1) - gu )     &
182                         - w(k,j,i-1) * ( u(k+1,j,i) + u(k,j,i) - gu ) ) * ddx &
183                       + ( w(k,j+1,i) * ( v(k+1,j+1,i) + v(k,j+1,i) - gv )     &
184                         - w(k,j-1,i) * ( v(k+1,j,i) + v(k,j,i) - gv ) ) * ddy &
185                       + ( w(k+1,j,i) * ( w(k+1,j,i) + w(k,j,i) )              &
186                         - w(k-1,j,i) * ( w(k,j,i) + w(k-1,j,i) ) )            &
187                                                                  * ddzu(k+1)  &
[3538]188                                                )
[1]189       ENDDO
190    END SUBROUTINE advec_w_pw_ij
191
192 END MODULE advec_w_pw_mod
Note: See TracBrowser for help on using the repository browser.