Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2018-08-07 05:58:01
Size: 1255
Comment:
Revision 4 as of 2018-08-07 06:24:33
Size: 1445
Comment:
Deletions are marked like this. Additions are marked like this.
Line 20: Line 20:
 * Try the tutorial script Compare between ADD and CH3 ()
{{{
adder
trf --frame=K-TEST-1209288320-32.gwf --channel=CALIB_ADD,CALIB_CH3 --output=trf.png
}}}
 * [[attachment:trf-C00-Add]]

Step 4: Add two channels and make a strain frame file

  • For the initialization and running the pipeline, please refer step1

  • Access frame cache file by specifying frame_cache and instrument as in step2

  • Define a frame multiplexer(mux) to write channels into a frame as in step3

  • Add CH1(MICH_DELTA_TM) and CH2(MICH_RESIDUAL) and output into ADD divided by the arm length to convert into the strain

   1 arm_length  = 3000
   2 
   3 ch1 = pp.mktee(pipeline, pipe_dict["CH1"])
   4 ch2 = pp.mktee(pipeline, pipe_dict["CH2"])
   5 add = cp.mkadder(pipeline, cp.list_srcs(pipeline, [ch1, short_queue],\
   6                                                   [ch2,  long_queue]))
   7 add = pp.mkaudioamplify(pipeline, add, 1./arm_length)  # Divide by arm length   
   8 
   9 keys.append("ADD")
  10 pipe_dict["CH1"] = ch1
  11 pipe_dict["CH2"] = ch2
  12 pipe_dict["ADD"] = add
  • Try the tutorial script Compare between ADD and CH3 ()

adder
trf --frame=K-TEST-1209288320-32.gwf --channel=CALIB_ADD,CALIB_CH3 --output=trf.png

KAGRA/Subgroups/CAL/GstLAL/tutorials/step4 (last edited 2018-08-08 02:32:07 by SadakazuHaino)