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

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

parent caca029e
No related branches found
No related tags found
1 merge request!36added the function for optimal squeeze angle. Works for A+
...@@ -5,6 +5,12 @@ import scipy.constants ...@@ -5,6 +5,12 @@ import scipy.constants
import logging import logging
from ..struct import Struct 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): def shotrad(f, ifo):
"""Quantum noise """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