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
d162fd3c
Commit
d162fd3c
authored
5 years ago
by
Evan Hall
Browse files
Options
Downloads
Patches
Plain Diff
New noises for CE
parent
25c5b069
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
+42
-6
42 additions, 6 deletions
gwinc/ifo/noises.py
with
42 additions
and
6 deletions
gwinc/ifo/noises.py
+
42
−
6
View file @
d162fd3c
from
..
import
nb
from
..
import
noise
import
numpy
as
np
class
QuantumVacuum
(
nb
.
Noise
):
"""
Quantum Vacuum
...
...
@@ -21,25 +22,49 @@ class Seismic(nb.Noise):
"""
style
=
dict
(
label
=
'
Seismic
'
,
color
=
'
#
653
700
'
,
color
=
'
#
855
700
'
,
)
def
calc
(
self
):
return
noise
.
seismic
.
seismic
(
self
.
freq
,
self
.
ifo
)
class
Newtonian
(
nb
.
Noise
):
class
Newtonian
Rayleigh
(
nb
.
Noise
):
"""
Newtonian Gravity
"""
style
=
dict
(
label
=
'
Newtonian
Gravity
'
,
color
=
'
#1
5b01a
'
,
label
=
'
Newtonian
(Rayleigh waves)
'
,
color
=
'
#1
b2431
'
)
def
calc
(
self
):
return
noise
.
newtonian
.
gravg
(
self
.
freq
,
self
.
ifo
)
return
noise
.
newtonian
.
gravg_rayleigh
(
self
.
freq
,
self
.
ifo
)
class
NewtonianBody
(
nb
.
Noise
):
"""
Newtonian Gravity
"""
style
=
dict
(
label
=
'
Newtonian (body waves)
'
,
color
=
'
#85a3b2
'
,
)
def
calc
(
self
):
return
(
noise
.
newtonian
.
gravg_pwave
(
self
.
freq
,
self
.
ifo
)
+
noise
.
newtonian
.
gravg_swave
(
self
.
freq
,
self
.
ifo
))
class
NewtonianInfrasound
(
nb
.
Noise
):
"""
Newtonian Gravity infrasound
"""
style
=
dict
(
label
=
'
Newtonian (infrasound)
'
,
color
=
'
#ffa62b
'
,
)
def
calc
(
self
):
return
noise
.
newtonian
.
atmois
(
self
.
freq
,
self
.
ifo
)
class
AtmosphericInfrasound
(
nb
.
Noise
):
"""
Atmospheric Infrasound
...
...
@@ -67,6 +92,17 @@ 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
...
...
@@ -157,7 +193,7 @@ class ExcessGas(nb.Noise):
"""
style
=
dict
(
label
=
'
Excess Gas
'
,
color
=
'
#ad
9
00d
'
,
color
=
'
#ad
d
00d
'
,
linestyle
=
'
--
'
,
)
...
...
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