Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
flexpart
flexpart
Commits
0a98afe6
Commit
0a98afe6
authored
May 30, 2019
by
Sabine
Browse files
bugfix after FLEXPART paper review, liq_frac was 1-liq_frac
parent
d005a67c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/get_wetscav.f90
View file @
0a98afe6
...
...
@@ -296,7 +296,8 @@ subroutine get_wetscav(itime,ltsample,loutnext,jpart,ks,grfraction,inc_count,blc
else
if
(
act_temp
.ge.
273.
)
then
liq_frac
=
1
else
liq_frac
=
((
act_temp
-273.
)/(
273.-253.
))
**
2.
! sec, bugfix after FLEXPART paper review, liq_frac was 1-liq_frac
liq_frac
=
((
act_temp
-253.
)/(
273.-253.
))
**
2.
end
if
! ZHG: Calculate the aerosol partition based on cloud phase and Ai and Bi
frac_act
=
liq_frac
*
ccn_aero
(
ks
)
+
(
1
-
liq_frac
)
*
in_aero
(
ks
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment