Skip to content
Snippets Groups Projects
Commit bb309aa1 authored by Evan Hall's avatar Evan Hall
Browse files

A switch to use either BSC or 6D seismic motion

parent 87bf3a5f
No related branches found
No related tags found
1 merge request!54More seismic functions
Pipeline #81954 passed
......@@ -22,7 +22,15 @@ def seismicAll(f, ifo):
theta = ifo.Suspension.VHCoupling.theta
# noise input, horizontal and vertical
nt, nr = seisBSC(f)
if 'PlatformMotion' in ifo.Seismic:
if ifo.Seismic.PlatformMotion == 'BSC':
nt, nr = seisBSC(f)
elif ifo.Seismic.PlatformMotion == '6D':
nt, nr = seis6D(f)
else:
nt, nr = seisBSC(f)
else:
nt, nr = seisBSC(f)
# horizontal noise total
nh = (abs(hTable)**2) * nt**2
......
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