Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cornish_pasdy
Manage
Activity
Members
Labels
Plan
Issues
18
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
CRNS
cornish_pasdy
Commits
67810a50
Commit
67810a50
authored
1 year ago
by
Martin Schrön
Browse files
Options
Downloads
Patches
Plain Diff
Add Dunai 2000: beta and inclination
parent
d84c0610
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
corny/corn.py
+3
-0
3 additions, 0 deletions
corny/corn.py
corny/grains/Dunai2000.py
+46
-0
46 additions, 0 deletions
corny/grains/Dunai2000.py
with
49 additions
and
0 deletions
corny/corn.py
+
3
−
0
View file @
67810a50
...
...
@@ -265,6 +265,9 @@ def C_press(p, pref=1013.15, beta=136, method='Zreda et al. (2012)', inclination
if
method
==
'
Zreda et al. (2012)
'
:
r
=
np
.
exp
((
p
-
pref
)
/
beta
)
elif
method
==
'
Dunai et al. (2000)
'
:
# Todo:
# from .grains.Dunai2000 import get_beta
# beta = get_beta(lon, lat, alt, date)
beta
=
129.55
+
19.85
/
(
1
+
np
.
exp
((
inclination
-
62.05
)
/
5.43
))
**
3.59
r
=
np
.
exp
((
p
-
pref
)
/
beta
)
else
:
...
...
This diff is collapsed.
Click to expand it.
corny/grains/Dunai2000.py
0 → 100644
+
46
−
0
View file @
67810a50
import
numpy
as
np
def
get_beta
(
lon
,
lat
,
alt
,
t
):
"""
Takes coordinates and date
Returns barometric neutron attenuation coefficient, beta
Example:
beta = get_beta(12.42, 51.58, 100, datetime(2014,7,1))
"""
i
=
get_inclination
(
lon
,
lat
,
alt
,
t
)
L
=
Dunai_2000
(
i
)
beta
=
1
/
L
return
(
beta
)
def
Dunai_2000
(
inclination
=
0
):
"""
Takes inclination of the magnetic field
Returns neutron attenuation length (L=1/beta)
Example:
data = pandas.DataFrame()
data[
"
inclination
"
] = np.arange(0,90)
data[
"
L
"
] = Dunai_2000(data[
"
inclination
"
])
"""
y
=
129.55
x
=
62.05
a
=
19.85
b
=
-
5.43
c
=
3.59
L
=
y
+
a
/
(
1
+
np
.
exp
((
x
-
inclination
)
/
b
))
**
c
return
(
L
)
# %%
def
get_inclination
(
lon
,
lat
,
alt
,
t
):
"""
Takes coordinates and date
Returns inclination of the Geomagnetic field
Example:
incl = get_inclination(12.42, 51.58, 100, datetime(2014,7,1))
"""
import
ppigrf
Be
,
Bn
,
Bu
=
ppigrf
.
igrf
(
lon
,
lat
,
alt
,
t
)
inclination
=
np
.
arctan
(
-
Bu
/
np
.
sqrt
(
Be
**
2
+
Bn
**
2
))
inclination_deg
=
np
.
degrees
(
inclination
)
return
(
float
(
inclination_deg
))
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