-
Notifications
You must be signed in to change notification settings - Fork 0
/
getvdep_nests.f90
205 lines (164 loc) · 7.3 KB
/
getvdep_nests.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
!**********************************************************************
! Copyright 1998,1999,2000,2001,2002,2005,2007,2008,2009,2010 *
! Andreas Stohl, Petra Seibert, A. Frank, Gerhard Wotawa, *
! Caroline Forster, Sabine Eckhardt, John Burkhart, Harald Sodemann *
! *
! This file is part of FLEXPART. *
! *
! FLEXPART is free software: you can redistribute it and/or modify *
! it under the terms of the GNU General Public License as published by*
! the Free Software Foundation, either version 3 of the License, or *
! (at your option) any later version. *
! *
! FLEXPART is distributed in the hope that it will be useful, *
! but WITHOUT ANY WARRANTY; without even the implied warranty of *
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
! GNU General Public License for more details. *
! *
! You should have received a copy of the GNU General Public License *
! along with FLEXPART. If not, see <http://www.gnu.org/licenses/>. *
!**********************************************************************
subroutine getvdep_nests(n,ix,jy,ust,temp,pa, &
L,gr,rh,rr,vdepo,lnest)
! i i i i i i i i i i i o i
!*****************************************************************************
! *
! This routine calculates the dry deposition velocities. *
! *
! Author: A. Stohl *
! *
! 20 December 1996 *
! Sabine Eckhardt, Jan 07 *
! if the latitude is negative: add half a year to the julian day *
! *
!*****************************************************************************
! *
! Variables: *
! gr [W/m2] global radiation *
! L [m] Obukhov length *
! nyl kinematic viscosity *
! pa [Pa] surface air pressure *
! ra [s/m] aerodynamic resistance *
! raquer [s/m] average aerodynamic resistance *
! rh [0-1] relative humidity *
! rhoa density of the air *
! rr [mm/h] precipitation rate *
! temp [K] 2m temperature *
! tc [C] 2m temperature *
! ust [m/s] friction velocity *
! snow [m of water equivalent] snow depth *
! xlanduse fractions of numclasS landuses for each model grid point *
! *
!*****************************************************************************
use par_mod
use com_mod
implicit none
integer :: yyyymmdd,hhmmss,yyyy,mmdd,n,lseason,i,j,ix,jy,lnest
real :: vdepo(maxspec),vd,rb(maxspec),rc(maxspec),raquer,ylat
real :: raerod,ra,ust,temp,tc,pa,L,gr,rh,rr,myl,nyl,rhoa,diffh2o,snow
real :: slanduse(numclass)
real,parameter :: eps=1.e-5
real(kind=dp) :: jul
snow=0.
! Calculate month and determine the seasonal category
!****************************************************
jul=bdate+real(wftime(n),kind=dp)/86400._dp
ylat=jy*dy+ylat0
if (ylat.lt.0) then
jul=jul+365/2
endif
call caldate(jul,yyyymmdd,hhmmss)
yyyy=yyyymmdd/10000
mmdd=yyyymmdd-10000*yyyy
if ((ylat.gt.-20).and.(ylat.lt.20)) then
mmdd=600 ! summer
endif
if ((mmdd.ge.1201).or.(mmdd.le.301)) then
lseason=4
else if ((mmdd.ge.1101).or.(mmdd.le.331)) then
lseason=3
else if ((mmdd.ge.401).and.(mmdd.le.515)) then
lseason=5
else if ((mmdd.ge.516).and.(mmdd.le.915)) then
lseason=1
else
lseason=2
endif
! Calculate diffusivity of water vapor
!************************************
diffh2o=2.11e-5*(temp/273.15)**1.94*(101325/pa)
! Conversion of temperature from K to C
!**************************************
tc=temp-273.15
! Calculate dynamic viscosity
!****************************
if (tc.lt.0) then
myl=(1.718+0.0049*tc-1.2e-05*tc**2)*1.e-05
else
myl=(1.718+0.0049*tc)*1.e-05
endif
! Calculate kinematic viscosity
!******************************
rhoa=pa/(287.*temp)
nyl=myl/rhoa
! 0. Set all deposition velocities zero
!**************************************
do i=1,nspec
vdepo(i)=0.
end do
! 1. Compute surface layer resistances rb
!****************************************
call getrb(nspec,ust,nyl,diffh2o,reldiff,rb)
! change for snow
do j=1,numclass
if (snow.gt.0.001) then ! 10 mm
if (j.eq.12) then
slanduse(j)=1.
else
slanduse(j)=0.
endif
else
slanduse(j)=xlandusen(ix,jy,j,lnest)
endif
end do
raquer=0.
do j=1,numclass ! loop over all landuse classes
if (slanduse(j).gt.eps) then
! 2. Calculate aerodynamic resistance ra
!***************************************
ra=raerod(L,ust,z0(j))
raquer=raquer+ra*slanduse(j)
! 3. Calculate surface resistance for gases
!******************************************
call getrc(nspec,lseason,j,tc,gr,rh,rr,rc)
! 4. Calculate deposition velocities for gases and ...
! 5. ... sum deposition velocities for all landuse classes
!*********************************************************
do i=1,nspec
if (reldiff(i).gt.0.) then
if ((ra+rb(i)+rc(i)).gt.0.) then
vd=1./(ra+rb(i)+rc(i))
! XXXXXXXXXXXXXXXXXXXXXXXXXX TEST
! vd=1./rc(i)
! XXXXXXXXXXXXXXXXXXXXXXXXXX TEST
else
vd=9.999
endif
vdepo(i)=vdepo(i)+vd*slanduse(j)
endif
end do
endif
end do
! 6. Calculate deposition velocities for particles
!*************************************************
call partdep(nspec,density,fract,schmi,vset,raquer,ust,nyl,vdepo)
! 7. If no detailed parameterization available, take constant deposition
! velocity if that is available
!***********************************************************************
do i=1,nspec
if ((reldiff(i).lt.0.).and.(density(i).lt.0.).and. &
(dryvel(i).gt.0.)) then
vdepo(i)=dryvel(i)
endif
end do
end subroutine getvdep_nests