source: palm/trunk/SOURCE/advec_w_up.f90 @ 3547

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

variable description added some routines

  • Property svn:keywords set to Id
File size: 8.1 KB
RevLine 
[1873]1!> @file advec_w_up.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_up.f90 3547 2018-11-21 13:21:24Z suehring $
[3547]27! variables documented
28!
29! 3538 2018-11-20 10:55:41Z suehring
[3538]30! Remove unnecessary double-masking of topography
31!
32! 3255 2018-09-17 11:57:36Z suehring
[3255]33! Missing wall flags added
34!
35! 2718 2018-01-02 08:49:38Z maronga
[2716]36! Corrected "Former revisions" section
37!
38! 2696 2017-12-14 17:12:51Z kanani
39! Change in file header (GPL part)
[1321]40!
[2716]41! 2233 2017-05-30 18:08:54Z suehring
42!
[2233]43! 2232 2017-05-30 17:47:52Z suehring
44! topography representation via flags
45!
[2001]46! 2000 2016-08-20 18:09:15Z knoop
47! Forced header and separation lines into 80 columns
48!
[1874]49! 1873 2016-04-18 14:50:06Z maronga
50! Module renamed (removed _mod)
51!
52!
[1851]53! 1850 2016-04-08 13:29:27Z maronga
54! Module renamed
55!
56!
[1683]57! 1682 2015-10-07 23:56:08Z knoop
58! Code annotations made doxygen readable
59!
[1354]60! 1353 2014-04-08 15:21:23Z heinze
61! REAL constants provided with KIND-attribute
62!
[1321]63! 1320 2014-03-20 08:40:49Z raasch
[1320]64! ONLY-attribute added to USE-statements,
65! kind-parameters added to all INTEGER and REAL declaration statements,
66! kinds are defined in new module kinds,
67! revision history before 2012 removed,
68! comment fields (!:) to be used for variable explanations added to
69! all variable declaration statements
[1]70!
[1037]71! 1036 2012-10-22 13:43:42Z raasch
72! code put under GPL (PALM 3.9)
73!
[1]74! Revision 1.1  1997/08/29 08:56:33  raasch
75! Initial revision
76!
77!
78! Description:
79! ------------
[1682]80!> Advection term for the w velocity-component using upstream scheme.
81!> NOTE: vertical advection at k=1 still has wrong grid spacing for w>0
82!>       The same problem occurs for all topography boundaries!
[1]83!------------------------------------------------------------------------------!
[1682]84 MODULE advec_w_up_mod
85 
[1]86
87    PRIVATE
88    PUBLIC advec_w_up
89
90    INTERFACE advec_w_up
91       MODULE PROCEDURE advec_w_up
92       MODULE PROCEDURE advec_w_up_ij
93    END INTERFACE advec_w_up
94
95 CONTAINS
96
97
98!------------------------------------------------------------------------------!
[1682]99! Description:
100! ------------
101!> Call for all grid points
[1]102!------------------------------------------------------------------------------!
103    SUBROUTINE advec_w_up
104
[1320]105       USE arrays_3d,                                                          &
106           ONLY:  ddzw, tend, u, v, w
[1]107
[1320]108       USE control_parameters,                                                 &
109           ONLY:  u_gtrans, v_gtrans
110
111       USE grid_variables,                                                     &
112           ONLY:  ddx, ddy
113
114       USE indices,                                                            &
[3538]115           ONLY:  nxl, nxr, nyn, nys, nzb, nzt
[1320]116
117       USE kinds
118
119
[1]120       IMPLICIT NONE
121
[3547]122       INTEGER(iwp) ::  i !< grid index along x-direction
123       INTEGER(iwp) ::  j !< grid index along y-direction
124       INTEGER(iwp) ::  k !< grid index along z-direction
[1]125
[3547]126       REAL(wp) ::  ukomp !< advection velocity along x-direction
127       REAL(wp) ::  vkomp !< advection velocity along y-direction
[1]128
[1320]129
[1]130       DO  i = nxl, nxr
131          DO  j = nys, nyn
[2232]132             DO  k = nzb+1, nzt-1
[1]133!
134!--             x-direction
[1353]135                ukomp = 0.25_wp * ( u(k,j,i)   + u(k,j,i+1) +                  &
[1]136                                 u(k+1,j,i) + u(k+1,j,i+1) ) - u_gtrans
[1353]137                IF ( ukomp > 0.0_wp )  THEN
[1320]138                   tend(k,j,i) = tend(k,j,i) - ukomp *                         &
[3538]139                                         ( w(k,j,i) - w(k,j,i-1) ) * ddx
[1]140                ELSE
[1320]141                   tend(k,j,i) = tend(k,j,i) - ukomp *                         &
[3538]142                                         ( w(k,j,i+1) - w(k,j,i) ) * ddx
[1]143                ENDIF
144!
145!--             y-direction
[1353]146                vkomp = 0.25_wp * ( v(k,j,i) + v(k,j+1,i) +                    &
[1]147                                 v(k+1,j,i) + v(k+1,j+1,i) ) - v_gtrans
[1353]148                IF ( vkomp > 0.0_wp )  THEN
[1320]149                   tend(k,j,i) = tend(k,j,i) - vkomp *                         &
[3538]150                                         ( w(k,j,i) - w(k,j-1,i) ) * ddy
[1]151                ELSE
[1320]152                   tend(k,j,i) = tend(k,j,i) - vkomp *                         &
[3538]153                                         ( w(k,j+1,i) - w(k,j,i) ) * ddy
[1]154                ENDIF
155!
156!--             z-direction
[1353]157                IF ( w(k,j,i) > 0.0_wp )  THEN
[1320]158                   tend(k,j,i) = tend(k,j,i) - w(k,j,i) *                      &
[3538]159                                         ( w(k,j,i) - w(k-1,j,i) ) * ddzw(k)
[1]160                ELSE
[1320]161                   tend(k,j,i) = tend(k,j,i) - w(k,j,i) *                      &
[3538]162                                         ( w(k+1,j,i) - w(k,j,i) ) * ddzw(k+1)
[1]163                ENDIF
164
165             ENDDO
166          ENDDO
167       ENDDO
168
169    END SUBROUTINE advec_w_up
170
171
172!------------------------------------------------------------------------------!
[1682]173! Description:
174! ------------
175!> Call for grid point i,j
[1]176!------------------------------------------------------------------------------!
177    SUBROUTINE advec_w_up_ij( i, j )
178
[1320]179       USE arrays_3d,                                                          &
180           ONLY:  ddzw, tend, u, v, w
[1]181
[1320]182       USE control_parameters,                                                 &
183           ONLY:  u_gtrans, v_gtrans
184
185       USE grid_variables,                                                     &
186           ONLY:  ddx, ddy
187
188       USE indices,                                                            &
[3538]189           ONLY:  nzb, nzt
[1320]190
191       USE kinds
192
193
[1]194       IMPLICIT NONE
195
[3547]196       INTEGER(iwp) ::  i !< grid index along x-direction
197       INTEGER(iwp) ::  j !< grid index along y-direction
198       INTEGER(iwp) ::  k !< grid index along z-direction
[1]199
[3547]200       REAL(wp) ::  ukomp !< advection velocity along x-direction
201       REAL(wp) ::  vkomp !< advection velocity along y-direction
[1]202
[1320]203
[2232]204       DO  k = nzb+1, nzt-1
[1]205!
206!--       x-direction
[1353]207          ukomp = 0.25_wp * ( u(k,j,i) + u(k,j,i+1) + u(k+1,j,i) + u(k+1,j,i+1) &
[1]208                         ) - u_gtrans
[1353]209          IF ( ukomp > 0.0_wp )  THEN
[1320]210             tend(k,j,i) = tend(k,j,i) - ukomp *                               &
[3538]211                                         ( w(k,j,i) - w(k,j,i-1) ) * ddx
[1]212          ELSE
[1320]213             tend(k,j,i) = tend(k,j,i) - ukomp *                               &
[3538]214                                         ( w(k,j,i+1) - w(k,j,i) ) * ddx
[1]215          ENDIF
216!
217!--       y-direction
[1353]218          vkomp = 0.25_wp * ( v(k,j,i) + v(k,j+1,i) + v(k+1,j,i) + v(k+1,j+1,i) &
[1]219                         ) - v_gtrans
[1353]220          IF ( vkomp > 0.0_wp )  THEN
[1320]221             tend(k,j,i) = tend(k,j,i) - vkomp *                               &
[3538]222                                         ( w(k,j,i) - w(k,j-1,i) ) * ddy
[1]223          ELSE
[1320]224             tend(k,j,i) = tend(k,j,i) - vkomp *                               &
[3538]225                                         ( w(k,j+1,i) - w(k,j,i) ) * ddy
[1]226          ENDIF
227!
228!--       z-direction
[1353]229          IF ( w(k,j,i) > 0.0_wp )  THEN
[1320]230             tend(k,j,i) = tend(k,j,i) - w(k,j,i) *                            &
[3538]231                                         ( w(k,j,i) - w(k-1,j,i) ) * ddzw(k)
[1]232          ELSE
[1320]233             tend(k,j,i) = tend(k,j,i) - w(k,j,i) *                            &
[3538]234                                         ( w(k+1,j,i) - w(k,j,i) ) * ddzw(k+1)
[1]235          ENDIF
236
237       ENDDO
238
239    END SUBROUTINE advec_w_up_ij
240
241 END MODULE advec_w_up_mod
Note: See TracBrowser for help on using the repository browser.