Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
as_tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexander Böhmländer
as_tools
Commits
dbe62fb1
Commit
dbe62fb1
authored
1 week ago
by
Alexander Böhmländer
Browse files
Options
Downloads
Patches
Plain Diff
Added blowing snow probability estimation.
parent
ba7a0647
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Calculations/parameterizations.py
+56
-1
56 additions, 1 deletion
Calculations/parameterizations.py
with
56 additions
and
1 deletion
Calculations/parameterizations.py
+
56
−
1
View file @
dbe62fb1
...
@@ -8,9 +8,27 @@ Collection of parameterizations for INP concentrations and INAS densities.
...
@@ -8,9 +8,27 @@ Collection of parameterizations for INP concentrations and INAS densities.
"""
"""
import
numpy
as
np
import
numpy
as
np
import
numpy.typing
as
npt
def
inas_parameterizations
(
T
,
material
):
def
inas_parameterizations
(
T
:
npt
.
ArrayLike
,
material
:
str
)
->
npt
.
ArrayLike
:
"""
Ice Nucleation Active Site (INAS) density parameterizations for different
materials.
Parameters
----------
T : npt.ArrayLike
Temperature in K.
material : str
Aerosol type.
Returns
-------
npt.ArrayLike
INAS density in cm-2.
"""
match
material
:
match
material
:
case
'
dust
'
:
case
'
dust
'
:
a
=
1e-4
a
=
1e-4
...
@@ -63,3 +81,40 @@ def inas_parameterizations(T, material):
...
@@ -63,3 +81,40 @@ def inas_parameterizations(T, material):
b0
=
141
b0
=
141
b1
=
-
0.495
b1
=
-
0.495
return
1e-4
*
np
.
exp
(
b1
*
(
T
+
273.15
)
**
1
+
b0
)
return
1e-4
*
np
.
exp
(
b1
*
(
T
+
273.15
)
**
1
+
b0
)
def
blowing_snow_probability
(
wind_speed
:
npt
.
ArrayLike
,
temperature
:
npt
.
ArrayLike
,
snow_age
:
npt
.
ArrayLike
)
->
npt
.
ArrayLike
:
"""
Blowing snow probability as a function of the wind speed, temperature and snow age.
Parameterization developed by _[1] and valid for wind speeds between 3 and 20 m/s,
and for air temperatures above -35 °C.
Parameters
----------
wind_speed : npt.ArrayLike
Wind speed in m/s.
temperature : npt.ArrayLike
Temperature in °C.
snow_age : npt.ArrayLike
Snow age in hours.
Returns
-------
npt.ArrayLike
Probability of blowing snow.
References
----------
[1] Li, L. and J. W. Pomeroy (1997). “Probability of occurrence of blowing snow”.
In: Journal of Geophysical Research: Atmospheres 102.D18, pp. 21955–21964.
issn: 0148-0227. doi: 10.1029/97jd01522.
"""
from
scipy.special
import
erf
T
=
temperature
I
=
np
.
log
(
snow_age
)
mean_wind_speed
=
0.365
*
T
+
0.00706
*
T
**
2
+
0.9
*
I
+
11.2
delta
=
0.145
*
T
+
0.00196
*
T
**
2
+
4.3
return
-
1
/
2
*
erf
((
mean_wind_speed
-
wind_speed
)
/
(
np
.
sqrt
(
2
)
*
delta
))
+
0.5
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment