Changeset 1682 for palm/trunk/SOURCE/calc_precipitation.f90
- Timestamp:
- Oct 7, 2015 11:56:08 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/calc_precipitation.f90
r1354 r1682 1 MODULE calc_precipitation_mod 2 1 !> @file calc_precipitation.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: … … 47 46 ! Description: 48 47 ! ------------ 49 ! Calculate the change of total water content due to precipitation50 ! (simplified Kessler scheme)48 !> Calculate the change of total water content due to precipitation 49 !> (simplified Kessler scheme) 51 50 !------------------------------------------------------------------------------! 51 MODULE calc_precipitation_mod 52 52 53 53 54 PRIVATE … … 63 64 64 65 !------------------------------------------------------------------------------! 65 ! Call for all grid points 66 ! Description: 67 ! ------------ 68 !> Call for all grid points 66 69 !------------------------------------------------------------------------------! 67 70 SUBROUTINE calc_precipitation … … 87 90 IMPLICIT NONE 88 91 89 INTEGER(iwp) :: i ! :90 INTEGER(iwp) :: j ! :91 INTEGER(iwp) :: k ! :92 INTEGER(iwp) :: i !< 93 INTEGER(iwp) :: j !< 94 INTEGER(iwp) :: k !< 92 95 93 REAL(wp) :: dqdt_precip ! :96 REAL(wp) :: dqdt_precip !< 94 97 95 98 precipitation_rate = 0.0_wp … … 127 130 128 131 !------------------------------------------------------------------------------! 129 ! Call for grid point i,j 132 ! Description: 133 ! ------------ 134 !> Call for grid point i,j 130 135 !------------------------------------------------------------------------------! 131 136 SUBROUTINE calc_precipitation_ij( i, j ) … … 151 156 IMPLICIT NONE 152 157 153 INTEGER(iwp) :: i ! :154 INTEGER(iwp) :: j ! :155 INTEGER(iwp) :: k ! :158 INTEGER(iwp) :: i !< 159 INTEGER(iwp) :: j !< 160 INTEGER(iwp) :: k !< 156 161 157 REAL(wp) :: dqdt_precip ! :162 REAL(wp) :: dqdt_precip !< 158 163 159 164 precipitation_rate(j,i) = 0.0_wp
Note: See TracChangeset
for help on using the changeset viewer.