Skip to content
Snippets Groups Projects
Commit 4a0163a2 authored by Kevin Kuns's avatar Kevin Kuns
Browse files

add displacement to force calibration

parent 7aab77b7
No related branches found
No related tags found
No related merge requests found
......@@ -229,11 +229,21 @@ def dhdl(f, armlen):
class Strain(nb.Calibration):
"""Calibrate displacement to strain
"""
def calc(self):
dhdl_sqr, sinc_sqr = dhdl(self.freq, self.ifo.Infrastructure.Length)
return dhdl_sqr
class Force(nb.Calibration):
"""Calibrate displacement to force
"""
def calc(self):
mass = mirror_struct(self.ifo, 'ETM').MirrorMass
return (mass * (2*pi*self.freq)**2)**2
############################################################
# noise sources
############################################################
......
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