Skip to content
Snippets Groups Projects
Commit 4f5e7194 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Add convienience function to Interferometer

Also fixes a typo
parent 3ae8af10
No related branches found
No related tags found
1 merge request!72Clean up of detectors
Pipeline #
......@@ -73,7 +73,7 @@ class InterferometerStrainData(object):
""" Initiate an InterferometerStrainData object
The initialised object contains no data, this should be added using one
of the `set_data..` methods.
of the `set_from..` methods.
Parameters
----------
......@@ -323,6 +323,28 @@ class Interferometer(object):
""" Set the strain_data """
self._strain_data = strain_data
def set_strain_data_from_power_spectral_density(
self, sampling_frequency, duration, start_time=0):
""" Set the `.strain_data` from the power spectal density
This uses the `interferometer.power_spectral_density` object to set
the `strain_data` to a noise realization. See
`tupak.gw.detector.InterferometerStrainData for further information.
Parameters
----------
sampling_frequency: float
The sampling frequency (in Hz)
duration: float
The data duration (in s)
start_time: float
The GPS start-time of the data
"""
self.strain_data.set_from_power_spectral_density(
self.power_spectral_density, sampling_frequency=sampling_frequency,
duration=duration, start_time=start_time)
@property
def latitude(self):
""" Saves latitude in rad internally. Updates related quantities if set to a different value.
......
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