Skip to content
Snippets Groups Projects

No more precomp

Merged Jameson Rollins requested to merge jameson.rollins/pygwinc:no-precomp into master
2 unresolved threads
2 files
+ 41
59
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 8
1
import numpy as np
from .. import nb
from .. import noise
@@ -176,7 +178,12 @@ class ITMCarrierDensity(nb.Noise):
)
def calc(self):
return noise.substratethermal.carrierdensity(self.freq, self.ifo)
L = self.ifo.Infrastructure.Length
gPhase = self.ifo.gwinc.finesse * 2/np.pi
n = noise.substratethermal.substrate_carrierdensity(
self.freq, self.ifo.Materials, self.ifo.Optics.ITM.BeamRadius)
# 2 ITMS
return n * 2 / (gPhase*L)**2
class SubstrateBrownian(nb.Noise):
Loading