Export TRL error network

21 views
Skip to first unread message

Housam El Feituri

unread,
Jan 22, 2023, 9:40:18 AMJan 22
to scikit-rf
Hi,

Kindly how to export a TRL object to snp ntwork?

trl = TRL(measured = measured,
          switch_terms = switch_terms)

trl.write_touchstone()

vinc0110

unread,
Jan 22, 2023, 11:41:14 AMJan 22
to scikit-rf
Hi,
the TRL object is not a Network. You need to apply it to a Network to get a new (corrected) Network that can be plotted or exported. See here:


Example:
dut_raw = rf.Network('trl_data/mismatched line.s2p')
dut_corrected = trl.apply_cal(dut_raw)
dut_corrected.plot_s_db()
dut_corrected.write_touchstone()

Regards, Vincent
Reply all
Reply to author
Forward
0 new messages