Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pygwinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gwinc
pygwinc
Commits
ae0cdccf
Commit
ae0cdccf
authored
5 years ago
by
Evan Hall
Browse files
Options
Downloads
Patches
Plain Diff
Seismic s-wave NN calculation following Harms LRR
parent
37e5318b
No related branches found
No related tags found
1 merge request
!55
Body-wave and infrasound Newtonian noise functions
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwinc/noise/newtonian.py
+32
-0
32 additions, 0 deletions
gwinc/noise/newtonian.py
with
32 additions
and
0 deletions
gwinc/noise/newtonian.py
+
32
−
0
View file @
ae0cdccf
...
...
@@ -158,6 +158,38 @@ def gravg_pwave(f, ifo):
return
psd_gravg_pwave
*
ifo
.
gwinc
.
sinc_sqr
def
gravg_swave
(
f
,
ifo
):
"""
Gravity gradient noise for seismic s-waves
Following Harms LRR: https://doi.org/10.1007/lrr-2015-3
"""
import
scipy.integrate
as
scint
import
scipy.special
as
scisp
from
gwinc.noise.seismic
import
seisNLNM
ggcst
=
const
.
G
cS
=
ifo
.
Seismic
.
sWaveSpeed
levelS
=
ifo
.
Seismic
.
sWaveLevel
kS
=
(
2
*
np
.
pi
*
f
)
/
cS
rho_ground
=
ifo
.
Seismic
.
Rho
psd_ground_swave
=
(
levelS
*
seisNLNM
(
f
))
**
2
tmheight
=
ifo
.
Seismic
.
TestMassHeight
xS
=
np
.
abs
(
kS
*
tmheight
)
# For both surface and underground facilities
height_supp_power
=
(
3
/
2
)
*
np
.
array
([
scint
.
quad
(
lambda
th
,
x
:
np
.
sin
(
th
)
**
3
*
np
.
exp
(
-
2
*
x
*
np
.
sin
(
th
)),
0
,
np
.
pi
/
2
,
args
=
(
x
,))[
0
]
for
x
in
xS
])
psd_gravg_swave
=
((
2
*
np
.
pi
*
ggcst
*
rho_ground
)
**
2
*
psd_ground_swave
*
height_supp_power
)
psd_gravg_swave
*=
4
/
((
2
*
np
.
pi
*
f
)
**
2
*
ifo
.
Infrastructure
.
Length
)
**
2
return
psd_gravg_swave
*
ifo
.
gwinc
.
sinc_sqr
def
atmois
(
f
,
ifo
):
import
scipy.special
as
scisp
...
...
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