Skip to content
Snippets Groups Projects
Commit 1f5087c5 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

remove errant parens

parent 2bd2bd0c
No related branches found
No related tags found
No related merge requests found
......@@ -342,7 +342,7 @@ class ITMThermoRefractive(nb.Noise):
w0, wBeam_ITM, wBeam_ETM = arm_cavity(self.ifo)
n = noise.substratethermal.substrate_thermorefractive(
self.freq, self.ifo.Materials, wBeam_ITM)
return n * 2 / (gPhase)**2
return n * 2 / gPhase**2
class ITMCarrierDensity(nb.Noise):
......@@ -361,7 +361,7 @@ class ITMCarrierDensity(nb.Noise):
w0, wBeam_ITM, wBeam_ETM = arm_cavity(self.ifo)
n = noise.substratethermal.substrate_carrierdensity(
self.freq, self.ifo.Materials, wBeam_ITM)
return n * 2 / (gPhase)**2
return n * 2 / gPhase**2
class SubstrateBrownian(nb.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