Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • lisa-simulation/instrument
1 result
Show changes
Commits on Source (8)
......@@ -5,6 +5,6 @@ tests/esa-trailing-orbits-2-0.h5 filter=lfs diff=lfs merge=lfs -text
tests/keplerian-fplan-1-1.h5 filter=lfs diff=lfs merge=lfs -text
tests/esa-trailing-fplan-1-1.h5 filter=lfs diff=lfs merge=lfs -text
tests/gws-1-1.h5 filter=lfs diff=lfs merge=lfs -text
tests/gws-2-0-dev.h5 filter=lfs diff=lfs merge=lfs -text
tests/gws-2-0.h5 filter=lfs diff=lfs merge=lfs -text
tests/glitch-1-1.h5 filter=lfs diff=lfs merge=lfs -text
tests/glitch-1-0.h5 filter=lfs diff=lfs merge=lfs -text
......@@ -88,7 +88,7 @@ class Instrument:
backlink_asds=3E-12, backlink_fknees=2E-3, testmass_asds=2.4E-15, testmass_fknees=0.4E-3,
oms_asds=(6.35E-12, 1.25E-11, 1.42E-12, 3.38E-12, 3.32E-12, 7.90E-12), oms_fknees=2E-3,
# TCB synchronization
sync_asds=2.2E-3,
sync_asds=0.42,
# Tilt-to-length (TTL)
ttl_coeffs='default',
sc_jitter_asds=(5E-9, 5E-9, 5E-9), mosa_jitter_asds=(2E-9, 1e-9), mosa_angles='default',
......@@ -154,18 +154,19 @@ class Instrument:
testmass_fknees: dictionary of cutoff frequencies for test-mass noise [Hz]
oms_asds: tuple of dictionaries of amplitude spectral densities for OMS noise [m/sqrt(Hz)],
ordered as (isi_carrier, isi_usb, tmi_carrier, tmi_usb, rfi_carrier, rfi_usb)
sync_asds: dictionary of amplitude spectral densities for TCB synchronization noise [s/sqrt(Hz)]
sync_asds: dictionary of amplitude spectral densities for TCB synchronization noise [s/sqrt(Hz)],
the default ASD seems rather high, this is due to the small sampling rate (default 1 / 86400s)
oms_fknees: dictionary of cutoff frequencies for OMS noise
ttl_coeffs: tuple (local_phi, distant_phi, local_eta, distant_eta) of dictionaries of
tilt-to-length coefficients on each MOSA [m/rad], 'default' for a default set of
coefficients, or 'random' to randomly generate a set of coefficients in a uniform
distribution [-1.6, 1.6] µm/rad (for local) and [-1.65, 1.65] µm/rad (for distant)
distribution [-2.3, 2.3] mm/rad
sc_jitter_asds: tuple of dictionaries of angular jitter amplitude spectral densities
for spacecraft, ordered as (yaw, pitch, roll) [rad/sqrt(Hz)]
mosa_jitter_asds: tuple of dictionaries of angular jitter amplitude spectral densities
for MOSA, ordered as (yaw, pitch) [rad/sqrt(Hz)]
mosa_angles: dictionary of oriented MOSA opening angles [deg], or 'default'
dws_asds: dictionary of amplitude spectral densities for DWS measurement noise [rad/s/sqrt(Hz)]
dws_asds: dictionary of amplitude spectral densities for DWS measurement noise [rad/sqrt(Hz)]
ranging_biases: dictionary of ranging noise bias [s]
ranging_asds: dictionary of ranging noise amplitude spectral densities [s/sqrt(Hz)]
prn_ambiguity: distance after which PRN code repeats itself [m] (reasonable value is 300 km),
......
No preview for this file type
......@@ -143,7 +143,7 @@ def test_gw_file_1_1():
-(instru.central_freq + instru.local_usb_offsets[mosa]) * gwf[f'tps/l_{mosa}'][:]
def test_gw_file_2_0_dev():
"""Test that we can read GW files v2.0.dev with orbit files v2.0.
"""Test that we can read GW files v2.0 with orbit files v2.0.
Test GW file can be generated using LISA GW Response and the following script.
......@@ -163,10 +163,10 @@ def test_gw_file_2_0_dev():
gw_beta=0, gw_lambda=0,
)
galbin.write('tests/gws-2-0-dev.h5')
galbin.write('tests/gws-2-0.h5')
"""
gw_file = 'tests/gws-2-0-dev.h5'
gw_file = 'tests/gws-2-0.h5'
gwf = File(gw_file, 'r')
instru = Instrument(
......