Command reference
R&S
®
ZNL/ZNLE
1056
User Manual 1178.5966.02 ─ 19
CALCulate1:PARameter:SDEFine 'Impedance_trace', 'Z-S21'
// the trace becomes the active trace for channel 1 but is not displayed
CALCulate1:PARameter:SDEFine 'Admittance_trace', 'Y-S21'
// the trace becomes the active trace for channel 1
// Create channel 2 with one new trace, channel 3 with two new traces.
CALCulate2:PARameter:SDEFine 'Ratio_trace', 'B1/B2'
CALCulate3:PARameter:SDEFine 'Z_trace', 'Z21'
CALCulate3:PARameter:SDEFine 'Y_trace', 'Y21'
CALCulate3:PARameter:SELect 'Z_trace'
// the trace created previously becomes the active trace for channel 3
// So far, only the default trace is displayed.
// Check the result on the local screen
// Go to local
SYSTem:DISPlay:UPDate ONCE
// 2. Create second diagram and display traces
DISPlay:WINDow2:STATe ON
DISPlay:WINDow1:TRACe2:FEED 'Admittance_trace'
DISPlay:WINDow1:TRACe3:FEED 'Y_trace'
DISPlay:WINDow2:TRACe1:FEED 'Impedance_trace'
DISPlay:WINDow2:TRACe2:FEED 'Ratio_trace'
DISPlay:WINDow2:TRACe3:FEED 'Z_trace'
// Check the result on the local screen
// Go to local
SYSTem:DISPlay:UPDate ONCE
// 3. Check and modify your configuration
// Query the traces in channel 1.
CALCulate1:PARameter:CATalog?
// The response is 'Trc1,S21,Impedance_trace,Z-S21,Admittance_trace,Y-S21'
// Query the reference level for the 'Z_trace'.
// The trace is referenced by its number in diagram no. 2.
DISPlay:WINDow2:TRACe3:Y:RLEVel?
// Change the display format for the 'Z_trace'. The trace is the active trace
// in channel 3, so it is referenced by the channel suffix 3.
// Update the display
CALCulate3:FORMat PHASe
// Update the display
SYSTem:DISPlay:UPDate ONCE
VNA programming examples