Simple coherenceΒΆ

This example shows the estimated coherence between the differential-arm length servo control loop error signal for LIGO-Hanford (H1:LSC-DARM_IN1_DQ) and the motion of an optical periscope used to direct the main laser beam into the Hanford interferometer, around the time of GW170814.

gwpy-plot coherence \
    --chan H1:LSC-DARM_IN1_DQ H1:PEM-CS_ACC_PSL_PERISCOPE_X_DQ \
    --start 1186741560 \
    --duration 600 \
    --nds2-server nds.gwosc.org \
    --interactive

The same command can be executed directly in Python as:

from gwpy.cli.gwpy_plot import main
main([
    'coherence',
    '--chan', 'H1:LSC-DARM_IN1_DQ', 'H1:PEM-CS_ACC_PSL_PERISCOPE_X_DQ',
    '--start', '1186741560',
    '--duration', '600',
    '--nds2-server', 'nds.gwosc.org',
    '--interactive',
])
Coherence: H1:LSC-DARM_IN1_DQ, 2017-08-14 10:25:42.000 | 1186741560 (600.0), fftlength=1.0, overlap=0.5
Program run time: 9.9

Total running time of the script: (0 minutes 4.104 seconds)

Gallery generated by Sphinx-Gallery