Skip to content
Snippets Groups Projects
Commit c6f06104 authored by Lee McCuller's avatar Lee McCuller
Browse files

added the function for optimal squeeze angle. Works for A+

parent e7529338
No related branches found
No related tags found
1 merge request!28Inheritance
......@@ -5,6 +5,12 @@ import scipy.constants
import logging
from ..struct import Struct
def sqzOptimalSqueezeAngle(Mifo, eta):
vHD = np.array([[sin(eta), cos(eta)]])
H = getProdTF(vHD, Mifo)[0]
alpha = arctan(abs(H[1]), abs(H[0]))
return alpha
def shotrad(f, ifo):
"""Quantum noise
......
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