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
526b457a
Commit
526b457a
authored
5 years ago
by
Evan Hall
Browse files
Options
Downloads
Patches
Plain Diff
Clean up noises file
parent
d162fd3c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!59
CE2 budget updates
,
!58
New noises for CE
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwinc/ifo/noises.py
+18
-27
18 additions, 27 deletions
gwinc/ifo/noises.py
with
18 additions
and
27 deletions
gwinc/ifo/noises.py
+
18
−
27
View file @
526b457a
...
...
@@ -29,9 +29,22 @@ class Seismic(nb.Noise):
return
noise
.
seismic
.
seismic
(
self
.
freq
,
self
.
ifo
)
class
Newtonian
Rayleigh
(
nb
.
Noise
):
class
Newtonian
(
nb
.
Noise
):
"""
Newtonian Gravity
"""
style
=
dict
(
label
=
'
Newtonian
'
,
color
=
'
#15b01a
'
)
def
calc
(
self
):
return
noise
.
newtonian
.
gravg
(
self
.
freq
,
self
.
ifo
)
class
NewtonianRayleigh
(
nb
.
Noise
):
"""
Newtonian Gravity, Rayleigh waves
"""
style
=
dict
(
label
=
'
Newtonian (Rayleigh waves)
'
,
...
...
@@ -41,8 +54,9 @@ class NewtonianRayleigh(nb.Noise):
def
calc
(
self
):
return
noise
.
newtonian
.
gravg_rayleigh
(
self
.
freq
,
self
.
ifo
)
class
NewtonianBody
(
nb
.
Noise
):
"""
Newtonian Gravity
"""
Newtonian Gravity
, body waves
"""
style
=
dict
(
...
...
@@ -54,8 +68,9 @@ class NewtonianBody(nb.Noise):
return
(
noise
.
newtonian
.
gravg_pwave
(
self
.
freq
,
self
.
ifo
)
+
noise
.
newtonian
.
gravg_swave
(
self
.
freq
,
self
.
ifo
))
class
NewtonianInfrasound
(
nb
.
Noise
):
"""
Newtonian Gravity infrasound
"""
Newtonian Gravity
,
infrasound
"""
style
=
dict
(
...
...
@@ -66,19 +81,6 @@ class NewtonianInfrasound(nb.Noise):
def
calc
(
self
):
return
noise
.
newtonian
.
atmois
(
self
.
freq
,
self
.
ifo
)
class
AtmosphericInfrasound
(
nb
.
Noise
):
"""
Atmospheric Infrasound
"""
style
=
dict
(
label
=
'
Atmospheric Infrasound
'
,
color
=
'
#15b01a
'
,
linestyle
=
'
--
'
,
)
def
calc
(
self
):
return
noise
.
newtonian
.
atmois
(
self
.
freq
,
self
.
ifo
)
class
SuspensionThermal
(
nb
.
Noise
):
"""
Suspension Thermal
...
...
@@ -92,17 +94,6 @@ class SuspensionThermal(nb.Noise):
def
calc
(
self
):
return
noise
.
suspensionthermal
.
susptherm
(
self
.
freq
,
self
.
ifo
)
class
SuspensionThermal_matgwinc_CE2
(
nb
.
Noise
):
"""
Suspension Thermal
"""
style
=
dict
(
label
=
'
Suspension Thermal
'
,
color
=
'
#0d75f8
'
,
)
def
calc
(
self
):
return
noise
.
suspensionthermal
.
susptherm_CE2
(
self
.
freq
)
class
CoatingBrownian
(
nb
.
Noise
):
"""
Coating Brownian
...
...
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