Skip to content
Snippets Groups Projects
Commit 078396f1 authored by Jameson Rollins's avatar Jameson Rollins
Browse files

Merge branch 'feature/sql' into 'master'

Add SQL noise type

It's sometimes helpful to have an SQL noise curve on noise budgets.

See merge request !73
parents 6af8acb0 720d2039
No related branches found
No related tags found
1 merge request!73Add SQL noise type
Pipeline #113170 passed
......@@ -184,6 +184,20 @@ class QuantumVacuum(nb.Noise):
return noise.quantum.shotrad(self.freq, self.ifo)
class StandardQuantumLimit(nb.Noise):
"""Standard Quantum Limit
"""
style = dict(
label="Standard Quantum Limit",
color="#000000",
linestyle=":", # Dotted.
)
def calc(self):
return 8 * const.hbar / (self.ifo.Materials.MirrorMass * (2 * np.pi * self.freq) ** 2)
class Seismic(nb.Noise):
"""Seismic
......
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