Changeset 1682 for palm/trunk/SOURCE/advec_u_pw.f90
- Timestamp:
- Oct 7, 2015 11:56:08 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/advec_u_pw.f90
r1354 r1682 1 MODULE advec_u_pw_mod 2 1 !> @file advec_u_pw.f90 3 2 !--------------------------------------------------------------------------------! 4 3 ! This file is part of PALM. … … 20 19 ! Current revisions: 21 20 ! ----------------- 22 ! 21 ! Code annotations made doxygen readable 23 22 ! 24 23 ! Former revisions: … … 46 45 ! Description: 47 46 ! ------------ 48 ! Advection term for u velocity-component using Piacsek and Williams.49 ! Vertical advection at the first grid point above the surface is done with50 ! normal centred differences, because otherwise no information from the surface51 ! would be communicated upwards due to w=0 at K=nzb.47 !> Advection term for u velocity-component using Piacsek and Williams. 48 !> Vertical advection at the first grid point above the surface is done with 49 !> normal centred differences, because otherwise no information from the surface 50 !> would be communicated upwards due to w=0 at K=nzb. 52 51 !------------------------------------------------------------------------------! 52 MODULE advec_u_pw_mod 53 53 54 54 55 PRIVATE … … 64 65 65 66 !------------------------------------------------------------------------------! 66 ! Call for all grid points 67 ! Description: 68 ! ------------ 69 !> Call for all grid points 67 70 !------------------------------------------------------------------------------! 68 71 SUBROUTINE advec_u_pw … … 85 88 IMPLICIT NONE 86 89 87 INTEGER(iwp) :: i ! :88 INTEGER(iwp) :: j ! :89 INTEGER(iwp) :: k ! :90 INTEGER(iwp) :: i !< 91 INTEGER(iwp) :: j !< 92 INTEGER(iwp) :: k !< 90 93 91 REAL(wp) :: gu ! :92 REAL(wp) :: gv ! :94 REAL(wp) :: gu !< 95 REAL(wp) :: gv !< 93 96 94 97 gu = 2.0_wp * u_gtrans … … 114 117 115 118 !------------------------------------------------------------------------------! 116 ! Call for grid point i,j 119 ! Description: 120 ! ------------ 121 !> Call for grid point i,j 117 122 !------------------------------------------------------------------------------! 118 123 SUBROUTINE advec_u_pw_ij( i, j ) … … 135 140 IMPLICIT NONE 136 141 137 INTEGER(iwp) :: i ! :138 INTEGER(iwp) :: j ! :139 INTEGER(iwp) :: k ! :142 INTEGER(iwp) :: i !< 143 INTEGER(iwp) :: j !< 144 INTEGER(iwp) :: k !< 140 145 141 REAL(wp) :: gu ! :142 REAL(wp) :: gv ! :146 REAL(wp) :: gu !< 147 REAL(wp) :: gv !< 143 148 144 149 gu = 2.0_wp * u_gtrans
Note: See TracChangeset
for help on using the changeset viewer.