Skip to content
Snippets Groups Projects
Commit 526b457a authored by Evan Hall's avatar Evan Hall
Browse files

Clean up noises file

parent d162fd3c
No related branches found
No related tags found
2 merge requests!59CE2 budget updates,!58New noises for CE
......@@ -29,9 +29,22 @@ class Seismic(nb.Noise):
return noise.seismic.seismic(self.freq, self.ifo)
class NewtonianRayleigh(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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment