-
Notifications
You must be signed in to change notification settings - Fork 2
/
GACL_DryDepositionMod.F90
285 lines (193 loc) · 6.56 KB
/
GACL_DryDepositionMod.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
#include "MAPL_Exceptions.h"
#include "MAPL_Generic.h"
!-------------------------------------------------------------------------
! NASA/GSFC, Global Modeling and Assimilation Office, Code 610.1 !
!-------------------------------------------------------------------------
!BOP
!
! !MODULE: GACL_DryDepositionMod - Dry deposition of gases and particles
!
! !INTERFACE:
!
module GACL_DryDepositionMod
!
! !USES:
!
use MAPL
use GACL_ConstantsMod
implicit NONE
private
!
! !PUBLIC MEMBER FUNCTIONS:
public DepositionVelocity
!
! !PUBLIC PARAMETERS:
!
! !PRIVATE PARAMETERS:
!
! !DESCRIPTION:
!
! {\tt GACL\_DryDepositionMod} provides a collection of methods for
! modeling dry deposition of gases and aerosol particles.
!
!
! !REVISION HISTORY:
!
! 15Dec2011 A. Darmenov Initial version
!
!EOP
!-------------------------------------------------------------------------
interface DepositionVelocity
module procedure DepositionVelocityAerosol
module procedure DepositionVelocityGas
end interface DepositionVelocity
contains
!-------------------------------------------------------------------------
! NASA/GSFC, Global Modeling and Assimilation Office, Code 610.1 !
!-------------------------------------------------------------------------
!BOP
!
! !IROUTINE: schmidt_number --- calculates the Schmidt's number
!
! !INTERFACE:
pure function schmidt_number(viscosity, D) result (Sc)
! !USES:
implicit None
real :: Sc ! Schmidt number, ''
! !INPUT/OUTPUT PARAMETERS:
! !INPUT PARAMETERS:
real, intent(in) :: viscosity ! kinematic viscosity, 'm2 s-1'
real, intent(in) :: D ! Brownian diffusivity coefficient, ''
! !OUTPUT PARAMETERS:
! !DESCRIPTION: calculates the Schmidt's number (see Eq.
!
!
! !REVISION HISTORY:
!
! 29Nov2011 A. Darmenov
!
!EOP
!-------------------------------------------------------------------------
! __Iam__('schmidt_number')
Sc = viscosity / D
end function schmidt_number
!-------------------------------------------------------------------------
! NASA/GSFC, Global Modeling and Assimilation Office, Code 610.1 !
!-------------------------------------------------------------------------
!BOP
!
! !IROUTINE: stokes_number --- calculates the Sokes number
!
! !INTERFACE:
pure function stokes_number(settling_velocity, friction_velocity, viscosity) result (St)
! !USES:
use GACL_ConstantsMod, only : g => g_earth
implicit None
real :: St ! Stokes number, ''
! !INPUT/OUTPUT PARAMETERS:
! !INPUT PARAMETERS:
real, intent(in) :: settling_velocity ! settling/sedimentation velocity, 'm s-1'
real, intent(in) :: friction_velocity ! friction velocity, 'm s-1'
real, intent(in) :: viscosity ! kinematic viscosity, 'm2 s-1'
! !OUTPUT PARAMETERS:
! !DESCRIPTION: calculates the Stokes number (see Eq. 8.105, Seinfeld and Pandis)
!
! !REVISION HISTORY:
!
! 15Dec2011 A. Darmenov
!
!EOP
!-------------------------------------------------------------------------
! __Iam__('stokes_number')
St = settling_velocity * friction_velocity**2 / (g * viscosity)
end function stokes_number
!-------------------------------------------------------------------------
! NASA/GSFC, Global Modeling and Assimilation Office, Code 610.1 !
!-------------------------------------------------------------------------
!BOP
!
! !IROUTINE: stokes_number --- calculates the quasi-laminar resistance for
! particles
!
! !INTERFACE:
pure function quasi_laminar_resistance(friction_velocity, Sc, St) result (r_b)
! !USES:
implicit None
real :: r_b ! Quasi-laminar resistance, 'm-1 s'
! !INPUT/OUTPUT PARAMETERS:
! !INPUT PARAMETERS:
real, intent(in) :: friction_velocity ! friction velocity, 'm s-1'
real, intent(in) :: Sc ! Schmidt number, ''
real, intent(in) :: St ! Stokes number, ''
! !OUTPUT PARAMETERS:
! !DESCRIPTION: calculates the quasi-laminar resistance (see Eq. XX, Seinfeld and Pandis)
!
! !REVISION HISTORY:
!
! 15Dec2011 A. Darmenov
!
!EOP
!-------------------------------------------------------------------------
! __Iam__('quasi_laminar_resistance')
r_b = 1 / (friction_velocity * (Sc**(-0.5) + 10.0**(-3/St)))
end function quasi_laminar_resistance
!-------------------------------------------------------------------------
! NASA/GSFC, Global Modeling and Assimilation Office, Code 610.1 !
!-------------------------------------------------------------------------
!BOP
!
! !IROUTINE: DepositionVelosityAerosol ---
!
! !INTERFACE:
pure function DepositionVelocityAerosol(v_t, r_a, r_b) result (v_d)
! !USES:
implicit None
real :: v_d
! !INPUT/OUTPUT PARAMETERS:
! !INPUT PARAMETERS:
real, intent(in) :: v_t ! settling velocity, 'm s-1'
real, intent(in) :: r_a ! aerodynamic resistance, 'm-1 s'
real, intent(in) :: r_b ! quasi-laminar resistance, 'm-1 s'
! !OUTPUT PARAMETERS:
! !DESCRIPTION: Calculates the deposition velocity of particles following
! Venkatram and Pleim, 1999.
!
! !REVISION HISTORY:
!
! 15Dec2011 A. Darmenov
!
!EOP
!-------------------------------------------------------------------------
! __Iam__('DepositionVelocityAerosol')
v_d = v_t / (1 - exp(-(r_a + r_b) * v_t))
end function DepositionVelocityAerosol
!-------------------------------------------------------------------------
! NASA/GSFC, Global Modeling and Assimilation Office, Code 610.1 !
!-------------------------------------------------------------------------
!BOP
!
! !IROUTINE: GACL_DepositionVelosityAerosol ---
!
! !INTERFACE:
pure function DepositionVelocityGas(r_a, r_b) result (v_d)
! !USES:
implicit None
real :: v_d
! !INPUT/OUTPUT PARAMETERS:
! !INPUT PARAMETERS:
real, intent(in) :: r_a ! aerodynamic resistance, 'm-1 s'
real, intent(in) :: r_b ! quasi-laminar resistance, 'm-1 s'
! !OUTPUT PARAMETERS:
! !DESCRIPTION: Calculates the deposition velocity of particles following
! Venkatram and Pleim, 1999.
!
! !REVISION HISTORY:
!
! 15Dec2011 A. Darmenov
!
!EOP
!-------------------------------------------------------------------------
! __Iam__('GACL_DepositionVelocityGas')
v_d = 1 / (r_a + r_b)
end function DepositionVelocityGas
end module GACL_DryDepositionMod