S2VNA and S4VNA SCPI Programming Manual 1 Introduction This Manual contains information about the CMT Network Analyzer remote control and its data communication, carried out by means of user program through a computer network. This manual describes the analyzer command system and the network protocols used to deliver the commands.
S2VNA and S4VNA SCPI Programming Manual Note. Analyzers support an alternative remote control technology based on COM. Its description is contained in a separate manual. 1.1 Programming Manual Scope This programmer's manual covers the 2-port and 4-port models of the CMT network analyzers listed below.
S2VNA and S4VNA SCPI Programming Manual 1.3 References IEEE Standard 488.2–1992, IEEE Standard Codes, Formats, Protocols and Common Commands for Use with ANSI/IEEE Std 488.1–1987. IEEE, New York, NY, 1992. Standard Commands for Programmable Instruments (SCPI), http://www.ivifoundation.org/specifications High-Speed LAN Instrument Protocol (HiSLIP), http://www.ivifoundation.org/specifications VISA specifications, http://www.ivifoundation.org/specifications...
S2VNA and S4VNA SCPI Programming Manual 2 Connection Setup 2.1 Overview To enable remote control of the analyzer, the user must enable the HiSLIP server or Socket server in the settings of the analyzer's program. After that the analyzer’s program waits for connection from the user program (client). HiSLIP server and Socket server use various network protocols based on TCP/IP protocol.
S2VNA and S4VNA SCPI Programming Manual For remote access to the analyzer it is necessary to make the following settings in its program: Enable HiSLIP server and/or Socket server; Configure the TCP/IP port number (optional). Configuring the TCP/IP port number is necessary in the only case where several analyzer programs are simultaneously executed on the same computer, and these programs require remote remote control.
S2VNA and S4VNA SCPI Programming Manual the analyzer will be automatically generated and displayed. The VISA address of the Analyzer is used later in the user program in order to open the connection. The format of the VISA address for the HiSLIP and Socket protocols: HiSLIP TCPIP[board]::host address[::HiSLIP device name[,HiSLIP port]][::INSTR] Socket...
S2VNA and S4VNA SCPI Programming Manual A network configuration involves executing a user program and analyzer program on different computers connected by a local area network. The local configuration involves executing the user program and the analyzer program on the single computer. The figure shows the local configuration on the left and the network configuration on the right.
S2VNA and S4VNA SCPI Programming Manual This section describes in detail how to configure the remote control of the multiple analyzer programs executed simultaneously on a single computer (provided several USB analyzer hardware units connected to the single computer). It is recommended that you create a separate folder for each analyzer with the software.
S2VNA and S4VNA SCPI Programming Manual This section describes the differences in the methods of writing user programs due to the use of different HiSLIP and TCP/IP Socket protocols. It is assumed that the user program works through the VISA library. The list of differences in a brief form is given below.
S2VNA and S4VNA SCPI Programming Manual 2.7.2 Terminal Character in Analyzer Responses When using the HiSLIP protocol, the analyzer terminates messages with the symbol <newline> + the protocol defined end of message (not symbolic). When using the Socket protocol, the analyzer terminates messages only with the <newline>...
S2VNA and S4VNA SCPI Programming Manual queries will be returned in the order in which they were sent. The client himself determines from which request a specific answer has been received. 2.7.4 IEEE488.2 Status Reporting System The HiSLIP protocol fully supports the analyzer's IEEE488.2 Status Reporting System described in the appendix, while the Socket protocol supports it only partially.
S2VNA and S4VNA SCPI Programming Manual 3 SCPI Overview The analyzer implements a set of commands based on the standard SCPI-1999 (Standard Commands for Programmable Instruments). This is a set of instructions oriented to the exchange of symbolic messages. SCPI was developed by the SCPI Consortium (currently supported by the IVI Foundation).
S2VNA and S4VNA SCPI Programming Manual Each tree structure forms a functional system. The base of the tree is called root, e.g. MEASure and SYSTem. Each functional system can have subsystems of lower level. The final nodes are called leaves. The entire sequence from root to the leaf makes up the command.
S2VNA and S4VNA SCPI Programming Manual 3.4 Optional Subsystems Some subsystems can be specified as optional, if omission of such a subsystem will not lead to ambiguity. This means that the subsystem can be omitted in command line. The optional subsystems are bracketed (" ").
S2VNA and S4VNA SCPI Programming Manual 3.7.1 Numeric Values The numeric values are integer or real numbers. These parameters can have measurement units. For example: SENS:FREQ 1000000000 SENS:FREQ 1000 MHz SENS:FREQ 1 GHz SENS:FREQ 1E9 3.7.1.1 Multiplier Prefixes The SCPI standard allows specification of the numeric values with multiplier prefix to the measurement units.
S2VNA and S4VNA SCPI Programming Manual 3.7.1.2 Notations The SCPI standard allows numeric value specification in different notations. Decimal notation is used by default. To use other notations, specify the numeric values in the following way: Notation Prefix Example Binary #B11001010 = 202 Octal #Q107 = 71...
S2VNA and S4VNA SCPI Programming Manual SENSe:FREQuency:STARt MIN SENSe:FREQuency:STARt maximum SENSe:FREQuency:STARt 1000000 3.7.4 String Parameters In some cases, the Analyzer can accept parameters made of character strings. Such strings are enclosed with single quotes ( ) or double quotes ( ).
S2VNA and S4VNA SCPI Programming Manual According to this specification, the command referred to the trace 2 of the channel 1 will be written as follows: CALC1:PAR2:DEF The numeric suffix can be omitted. In this case, it is 1 by default. For example, the following commands are equivalent: CALC:PAR:DEF CALC1:PAR1:DEF...
Page 31
S2VNA and S4VNA SCPI Programming Manual...
S2VNA and S4VNA SCPI Programming Manual 4 Remote Commands 4.1 Conventions The following conventions are used throughout the Manual. 4.1.1 Syntax The following symbols are used in command syntax: <> identifiers enclosed in angular brackets indicated that a particular type of data must be specified part enclosed in square brackets can be omitted part enclosed in curly brackets indicates that you must select one of the items in this part.
S2VNA and S4VNA SCPI Programming Manual 4.2 IEEE488.2 Common Commands *CLS *CLS Clears the following: • Error Queue • Status Byte Register • Standard Event Status Register Description • Operation Status Event Register • Questionable Status Event Register • Questionable Limit Status Event Register •...
S2VNA and S4VNA SCPI Programming Manual *ESR? *ESR? Reads out the value of the Standard Event Status Register. Executing this command clears the register value. Description (query only) Status Reporting System Target Query Response <numeric> None Equivalent Softkeys *IDN? *IDN? Reads out the Analyzer identification string.
S2VNA and S4VNA SCPI Programming Manual *OPC *OPC Sets the OPC bit (bit 0) of the Standard Event Status Register at the completion of all pending operations. Description The pending operation caused by the command only. TRIG:SING (no query) Status Reporting System Target None Equivalent Softkeys...
S2VNA and S4VNA SCPI Programming Manual *RST *RST Restores the default settings of the Analyzer. There is difference from presetting the Analyzer with SYST:PRES Description command – in this case all channels are set to Hold. (no query) Analyzer Target SYSTem:PRESet Related Commands None...
S2VNA and S4VNA SCPI Programming Manual *STB? *STB? Reads out the value of the Status Byte Register Description (query only) Status Reporting System Target <numeric> Query Response None Equivalent Softkeys *TRG *TRG Generates a trigger signal and initiates a sweep under the following conditions.
S2VNA and S4VNA SCPI Programming Manual *WAI *WAI Delays the execution by the analyzer of the next command till the completion of the command TRIG:SING. In absence of a pending command TRIG:SING the command *WAI is equivalent to an empty operation. Description A query that follows the command *WAI blocks the execution of the user program till the completion of the command TRIG:SING,...
S2VNA and S4VNA SCPI Programming Manual 4.3 Network Analyzer Commands ABOR ABORt Aborts the sweep. The channels in the Single trigger initiation mode transit to the Hold state. The channels in the Continuous trigger initiation mode transit to the trigger waiting state, if the trigger source is set to Internal, the channel immediately starts a Description new sweep.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:CZC:BPOR:Z0 <numeric> CALCulate< >:FSIMulator:BALun:CZConversion:BPORt< >:Z0[:R] CALCulate< >:FSIMulator:BALun:CZConversion:BPORt< >:Z0[:R]? Sets or reads out the impedance value for the common impedance conversion function of the balanced port. The impedance is real. Description The default impedance value equals to 25 Ω.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:CZC:STAT <Ch> CALCulate :FSIMulator:BALun:CZConversion:STATe {OFF|ON|0|1} <Ch> CALCulate :FSIMulator:BALun:CZConversion:STATe? Turns ON/OFF the common impedance conversion function of the balanced port. Description (command/query) The channel Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1} Preset Value Analysis >...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DEV <Ch> <char> CALCulate :FSIMulator:BALun:DEVice <Ch> CALCulate :FSIMulator:BALun:DEVice? Selects the type of balanced device of the balance-unbalance fixture simulation function Description (command/query, S4 only). The channel Target <Ch>={[1]|2|...16} <char> Specifies type of the balanced device: SBALanced : Unbalance-Balance (3 ports) Parameter...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DMC:BPOR:PAR:C <numeric> CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:C CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:C? Sets or reads out the capacitance value of the C element of the differential matching circuit. Description (command/query) Balanced Port <Bpt> of channel <Ch>, <Ch>={[1]|2|...16} Target <Bpt>={[1]|2}, 1 or 2 for the Bal-Bal topology, always 1 for the SE-Bal, SE-SE-Bal and Bal topology.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DMC:BPOR:PAR:G <numeric> CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:G CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:G? Sets or reads out the conductance value of the G element of the differential matching circuit. Description (command/query) Balanced Port <Bpt> of channel <Ch>, <Ch>={[1]|2|...16} Target <Bpt>={[1]|2}, 1 or 2 for the Bal-Bal topology, always 1 for the SE-Bal, SE-SE-Bal and Bal topology.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DMC:BPOR:PAR:L <numeric> CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:L CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:L? Sets or reads out the inductance value of the L element of the differential matching circuit. Description (command/query) Balanced Port <Bpt> of channel <Ch>, <Ch>={[1]|2|...16} Target <Bpt>={[1]|2}, 1 or 2 for the Bal-Bal topology, always 1 for the SE-Bal, SE-SE-Bal and Bal topology.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DMC:BPOR:PAR:R <numeric> CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:R CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:PARameters:R? Sets or reads out the resistance value of the R element of the differential matching circuit. Description (command/query) Balanced Port <Bpt> of channel <Ch>, <Ch>={[1]|2|...16} Target <Bpt>={[1]|2}, 1 or 2 for the Bal-Bal topology, always 1 for the SE-Bal, SE-SE-Bal and Bal topology.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DMC:BPOR:TYPE <char> CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:TYPE CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:TYPE? Selects the type of the differential matching circuit for the specified balanced port number Bpt of the channel Ch. Description (command/query) Balanced Port <Bpt> of channel <Ch>, <Ch>={[1]|2|...16} Target <Bpt>={[1]|2}, 1 or 2 for the Bal-Bal topology, always 1 for the SE-Bal,...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DMC:BPOR:USER:FIL <string> CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:USER:FILename CALCulate< >:FSIMulator:BALun:DMCircuit:BPORt< >:USER:FILename? Specifies a file defining the 2-port network which is used in the differential matching circuit, for the specified balanced port number Bpt of the channel Ch. The *.s2p file contains the circuit S– Description parameters in Touchstone format.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DZC:BPOR:Z0 <numeric> CALCulate< >:FSIMulator:BALun:DZConversion:BPORt< >:Z0[:R] CALCulate< >:FSIMulator:BALun:DZConversion:BPORt< >:Z0[:R]? Sets or reads out the impedance value for the differential impedance conversion function of the balanced port. The Description impedance is real. The default impedance value equals to 100 Ω.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:DZC:STAT <Ch> CALCulate :FSIMulator:BALun:DZConversion:STATe {OFF|ON|0|1} <Ch> CALCulate :FSIMulator:BALun:DZConversion:STATe? Turns ON/OFF the differential impedance conversion function of the balanced port. Description (command/query) The channel Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1} Preset Value Analysis >...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:PAR:BAL <Ch> <Tr> <char> CALCulate :FSIMulator:BALun:PARameter :BALanced[:DEFine] <Ch> <Tr> CALCulate :FSIMulator:BALun:PARameter :BALanced[:DEFine]? Selects the measurement parameter of the fixture simulation function when the device type is BALanced. Description (command/query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:PAR:BBAL <Ch> <Tr> <char> CALCulate :FSIMulator:BALun:PARameter :BBALanced[:DEFine] <Ch> <Tr> CALCulate :FSIMulator:BALun:PARameter :BBALanced[:DEFine]? Selects the measurement parameter of the fixture simulation function when the device type is BBALanced. Description (command/query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:PAR:SBAL <Ch> <Tr> <char> CALCulate :FSIMulator:BALun:PARameter :SBALanced[:DEFine] <Ch> <Tr> CALCulate :FSIMulator:BALun:PARameter :SBALanced[:DEFine]? Selects the measurement parameter of the fixture simulation function when the device type is SBALanced. Description (command/query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:PAR:SSB <Ch> <Tr> <char> CALCulate :FSIMulator:BALun:PARameter :SSBalanced[:DEFine] <Ch> <Tr> CALCulate :FSIMulator:BALun:PARameter :SSBalanced[:DEFine]? Selects the measurement parameter of the fixture simulation function when the device type is SSBalanced. Description (command/query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:TOP:BBAL <Ch> <port1> <port2> CALCulate :FSIMulator:BALun:TOPology:BBALanced[:PPORts] <port3> <port4> <Ch> CALCulate :FSIMulator:BALun:TOPology:BBALanced[:PPORts]? Sets or reads out the ports assigned to the balanced device when its type is "BBALance". Description (command/query) The channel Target <Ch>={[1]|2|...16} First port number <port1>...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:TOP:SBAL <Ch> <port1> <port2> CALCulate :FSIMulator:BALun:TOPology:SBALanced[:PPORts] <port3> <Ch> CALCulate :FSIMulator:BALun:TOPology:SBALanced[:PPORts]? Sets or reads out the ports assigned to the balanced device when its type is "SBALance". Description (command/query) The channel Target <Ch>={[1]|2|...16} First port number <port1>...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:BAL:TOP:SSB <Ch> <port1> <port2> CALCulate :FSIMulator:BALun:TOPology:SSBalanced[:PPORts] <port3>,<port4> <Ch> CALCulate :FSIMulator:BALun:TOPology:SSBalanced[:PPORts]? Sets or reads out the ports assigned to the balanced device when its type is "SSBalance". Description (command/query) The channel Target <Ch>={[1]|2|...16} First port number <port1>...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:EMB:TOP:A:PORT <Ch> <port1> <port2> CALCulate :FSIMulator:EMBed:TOPology:A:PORTs <Ch> CALCulate :FSIMulator:EMBed:TOPology:A:PORTs? Sets or reads out the test port assignment when the Topology is set to A, for the 4-port network embedding/de-embedding feature. Description (command/query) The channel Target <Ch>={[1]|2|...16} First port number...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:EMB:TOP:B:PORT <Ch> <port1> <port2> <port3> CALCulate :FSIMulator:EMBed:TOPology:B:PORTs <Ch> CALCulate :FSIMulator:EMBed:TOPology:B:PORTs? Sets or reads out the test port assignment when the Topology is set to B, for the 4-port network embedding/de-embedding feature. Description (command/query) The channel Target <Ch>={[1]|2|...16} First port number...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:EMB:TOP:C:PORT <Ch> <port1> <port2> <port3> CALCulate :FSIMulator:EMBed:TOPology:C:PORTs <port4> <Ch> CALCulate :FSIMulator:EMBed:TOPology:C:PORTs? Sets or reads out the test port assignment when the Topology is set to B, for the 4-port network embedding/de-embedding feature. Description (command/query) The channel Target <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:SEND:DEEM:PORT:STAT <Ch> <Pt> CALCulate :FSIMulator:SENDed:DEEMbed:PORT :STATe {OFF|ON|0|1} <Ch> <Pt> CALCulate :FSIMulator:SENDed:DEEMbed:PORT :STATe? Turns ON/OFF the 2-port network de–embedding function for specified port. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA : ON {ON|1} Parameter...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:SEND:PMC:PORT:USER:FIL <Ch> <Pt> <string> CALCulate :FSIMulator:SENDed:PMCircuit:PORT :USER:FILename <Ch> <Pt> CALCulate :FSIMulator:SENDed:PMCircuit:PORT :USER:FILename? Sets or reads out the name of *.s2p file of the embedded circuit of the 2-port network embedding function. The file contains the Description circuit S–parameters in Touchstone format.
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:SEND:ZCON:PORT:Z0 <Ch> <Pt> <numeric> CALCulate :FSIMulator:SENDed:ZCONversion:PORT :Z0[:R] <Ch> <Pt> CALCulate :FSIMulator:SENDed:ZCONversion:PORT :Z0[:R]? Sets or reads out the value of the impedance for port impedance conversion function. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:FSIM:SEND:ZCON:STAT <Ch> CALCulate :FSIMulator:SENDed:ZCONversion:STATe {OFF|ON|0|1} <Ch> CALCulate :FSIMulator:SENDed:ZCONversion:STATe? Turns ON/OFF the port impedance conversion function. Description (command/query) The channel Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1} Preset Value Analysis > Fixture Simulator > Port Z Conversion > Port Z Conversion Equivalent Softkeys CALC:FSIM:STAT <Ch>...
S2VNA and S4VNA SCPI Programming Manual CALC:PAR:COUN <Ch> <numeric> CALCulate :PARameter:COUNt <Ch> CALCulate :PARameter:COUNt? Sets or reads out the number of traces in the channel. Description (command/query) The channel Target <Ch>={[1]|2|...16} <numeric> The number of the traces in the channel from 1 to 16 Parameter Sets the value of the limit, which is closer to the specified value.
S2VNA and S4VNA SCPI Programming Manual CALC:PAR:SEL <Ch> <Tr> CALCulate :PARameter :SELect Selects the active trace in channel. Description (no query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16} If the trace number is greater than the number of the traces displayed in Notes the channel, an error occurs and the command is ignored.
S2VNA and S4VNA SCPI Programming Manual CALC:CORR:EDEL:TIME <Ch> <time> CALCulate [:SELected]:CORRection:EDELay:TIME <Ch> CALCulate [:SELected]:CORRection:EDELay:TIME? Sets or reads out the value of the electrical delay. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time> the electrical delay value from –10 to 10 Parameter s (second) Unit...
S2VNA and S4VNA SCPI Programming Manual CALC:CORR:OFFS:PHAS <Ch> <phase> CALCulate [:SELected]:CORRection:OFFSet:PHASe <Ch> CALCulate [:SELected]:CORRection:OFFSet:PHASe? Sets or reads out the value of the phase offset. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <phase> the phase offset value from –360 to 360 Parameter °...
S2VNA and S4VNA SCPI Programming Manual CALC:CORR:STAT? <Ch> CALCulate [:SELected]:CORRection:STATus? Reads out the interpolation/extrapolation status of the error correction. Description (query only) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} Trace represents S-parameter: NONE : Correction not applied : Correction applied exactly : Correction interpolated : Correction extrarpolated Query Response...
S2VNA and S4VNA SCPI Programming Manual CALC:DATA:FDAT <Ch> <numeric list> CALCulate [:SELected]:DATA:FDATa <Ch> CALCulate [:SELected]:DATA:FDATa? CALC:TRAC:DATA:FDAT <Ch> <Tr> <numeric list> CALCulate :TRACe :DATA:FDATa <Ch> <Tr> CALCulate :TRACe :DATA:FDATa? Reads out or writes the formatted data array. The formatted data array is the data, whose processing is completed including the formatting as the last step.
S2VNA and S4VNA SCPI Programming Manual CALC:DATA:FMEM <Ch> <numeric list> CALCulate [:SELected]:DATA:FMEMory <Ch> CALCulate [:SELected]:DATA:FMEMory? CALC:TRAC:DATA:FMEM <Ch> <Tr> <numeric list> CALCulate :TRACe :DATA:FMEMory <Ch> <Tr> CALCulate :TRACe :DATA:FMEMory? Reads out or writes the formatted memory array. The formatted memory array is the data, whose processing is completed including the formatting as the last step.
S2VNA and S4VNA SCPI Programming Manual CALC:DATA:SDAT <Ch> <numeric list> CALCulate [:SELected]:DATA:SDATa <Ch> CALCulate [:SELected]:DATA:SDATa? CALC:TRAC:DATA:SDAT <Ch> <Tr> <numeric list> CALCulate :TRACe :DATA:SDATa <Ch> <Tr> CALCulate :TRACe :DATA:SDATa? Reads out or writes the corrected data array. The corrected data array is the data, whose processing is completed excluding the formatting as the last step.
S2VNA and S4VNA SCPI Programming Manual CALC:DATA:SMEM <Ch> <numeric list> CALCulate [:SELected]:DATA:SMEMory <Ch> CALCulate [:SELected]:DATA:SMEMory? CALC:TRAC:DATA:SMEM <Ch> <Tr> <numeric list> CALCulate :TRACe :DATA:SMEMory <Ch> <Tr> CALCulate :TRACe :DATA:SMEMory? Reads out or writes the corrected memory array. The corrected memory array is the data, whose processing is completed excluding the formatting as the last step.
S2VNA and S4VNA SCPI Programming Manual CALC:DATA:XAX? <Ch> CALCulate [:SELected]:DATA:XAXis? CALC:TRAC:DATA:XAX? <Ch> <Tr> CALCulate :TRACe :DATA:XAXis? Reads out the X-axis values array. The X-axis values array is the frequency, power or time values array depending on the trace setup. The array contains real values. The array size is N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual CALC:FILT:TIME <Ch> <char> CALCulate [:SELected]:FILTer[:GATE]:TIME[:TYPE] <Ch> CALCulate [:SELected]:FILTer[:GATE]:TIME[:TYPE]? Sets or reads out the gate type of the gating function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} the gate type <char> Specifies BPASs : Bandpass type Parameter...
S2VNA and S4VNA SCPI Programming Manual CALC:FILT:TIME:CENT <Ch> <time> CALCulate [:SELected]:FILTer[:GATE]:TIME:CENTer <Ch> CALCulate [:SELected]:FILTer[:GATE]:TIME:CENTer? Sets or reads out the gate center value of the gating function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time> the center value of the gate, the range varies depending on the Parameter frequency span and the number of points s (second)
S2VNA and S4VNA SCPI Programming Manual CALC:FILT:TIME:SHAP <Ch> <char> CALCulate [:SELected]:FILTer[:GATE]:TIME:SHAPe <Ch> CALCulate [:SELected]:FILTer[:GATE]:TIME:SHAPe? Sets or reads out the gate shape of the gating function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} the gate shape <char> Specifies MAXimum : Maximum shape WIDE...
S2VNA and S4VNA SCPI Programming Manual CALC:FILT:TIME:SPAN <Ch> <time> CALCulate [:SELected]:FILTer[:GATE]:TIME:SPAN <Ch> CALCulate [:SELected]:FILTer[:GATE]:TIME:SPAN? Sets or reads out the gate span value of the gating function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time> the span value of the gate, the range varies depending on the Parameter frequency span and the number of points s (second)
S2VNA and S4VNA SCPI Programming Manual CALC:FILT:TIME:STAR <Ch> <time> CALCulate [:SELected]:FILTer[:GATE]:TIME:STARt <Ch> CALCulate [:SELected]:FILTer[:GATE]:TIME:STARt? Sets or reads out the gate start value of the gating function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time> the start value of the gate, the range varies depending on the Parameter frequency span and the number of points s (second)
S2VNA and S4VNA SCPI Programming Manual CALC:FILT:TIME:STOP <Ch> <time> CALCulate [:SELected]:FILTer[:GATE]:TIME:STOP <Ch> CALCulate [:SELected]:FILTer[:GATE]:TIME:STOP? Sets or reads out the gate stop value of the gating function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time> the stop value of the gate, the range varies depending on the Parameter frequency span and the number of points s (second)
S2VNA and S4VNA SCPI Programming Manual CALC:FORM <Ch> <char> CALCulate [:SELected]:FORMat <Ch> CALCulate [:SELected]:FORMat? Sets or reads out the trace format. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} trace format <char> Specifies the MLOGarithmic : Logarithmic magnitude PHASe : Phase GDELay...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:DATA? <Ch> CALCulate [:SELected]:FUNCtion:DATA? Reads out the data array, which is the command CALC:FUNC:EXEC analysis result. The array size is 2N, where N is the number of points. For the n–th point, where n from 1 to N: Description <numeric 2n–1>...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:DOM <Ch> CALCulate [:SELected]:FUNCtion:DOMain[:STATe] {OFF|ON|0|1} <Ch> CALCulate [:SELected]:FUNCtion:DOMain[:STATe]? Specify whether an arbitrary range or the range is used entire sweep when the command is executed. CALC:FUNC:EXEC Description (command/query) All traces of channel <Ch> (if the coupling is set to ON by the CALC:FUNC:DOM:COUP command), the active trace of channel <Ch>...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:DOM:COUP <Ch> CALCulate [:SELected]:FUNCtion:DOMain:COUPle {OFF|ON|0|1} <Ch> CALCulate [:SELected]:FUNCtion:DOMain:COUPle? arbitrary range turned ON by the If the CALC:FUNC:DOM:STAT traces of channel use the same range command, specifies whether all (coupling) or each trace uses individual range when the Description command is executed.
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:DOM:STAR <Ch> <stimulus> CALCulate [:SELected]:FUNCtion:DOMain:STARt <Ch> CALCulate [:SELected]:FUNCtion:DOMain:STARt? Sets the start value of the analysis range of the CALC:FUNC:EXEC command. Description (command/query) All traces of channel <Ch> (if the coupling is set to ON by the command), the active trace of channel <Ch>...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:DOM:STOP <Ch> <stimulus> CALCulate [:SELected]:FUNCtion:DOMain:STOP <Ch> CALCulate [:SELected]:FUNCtion:DOMain:STOP? Sets the stop value of the analysis range of the CALC:FUNC:EXEC command. Description (command/query) All traces of channel <Ch> (if the coupling is set to ON by the CALC:FUNC:DOM:COUP command), the active trace of channel <Ch>...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:PEXC <Ch> <numeric> CALCulate [:SELected]:FUNCtion:PEXCursion <Ch> CALCulate [:SELected]:FUNCtion:PEXCursion? Sets the lower limit for the peak excursion value when executing the peak search with the command. CALC:FUNC:EXEC Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:POIN? <Ch> CALCulate [:SELected]:FUNCtion:POINts? Reads out the number of points (data pairs) of the analysis result by the command. CALC:FUNC:EXEC Always reads out 1, when the search is executed for the maximum, minimum, mean, standard deviation, peak, and peak–to–peak Description values.
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:PPOL <Ch> <char> CALCulate [:SELected]:FUNCtion:PPOLarity <Ch> CALCulate [:SELected]:FUNCtion:PPOLarity? Selects the polarity when performing the peak search with the command. CALC:FUNC:EXEC Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} polarity <char> Specifies the POSitive : Positive peaks Parameter...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:TARG <Ch> <numeric> CALCulate [:SELected]:FUNCtion:TARGet <Ch> CALCulate [:SELected]:FUNCtion:TARGet? Selects the target level when performing the search for the trace and the target level crosspoints with the command. CALC:FUNC:EXEC Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:TTR <Ch> <char> CALCulate [:SELected]:FUNCtion:TTRansition <Ch> CALCulate [:SELected]:FUNCtion:TTRansition? Selects the transition type when performing the search for the trace and the target level crosspoints with the CALC:FUNC:EXEC Description command. (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} transition...
S2VNA and S4VNA SCPI Programming Manual CALC:FUNC:TYPE <Ch> <char> CALCulate [:SELected]:FUNCtion:TYPE <Ch> CALCulate [:SELected]:FUNCtion:TYPE? Selects the type of analysis executed with the CALC:FUNC:EXEC command. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} transition <char> Specifies the PTPeak : Peak–to–peak (difference between the maximum value and the minimum value) STDEV : Standard deviation...
S2VNA and S4VNA SCPI Programming Manual CALC:LIM:DATA <Ch> <numeric list> CALCulate [:SELected]:LIMit:DATA <Ch> CALCulate [:SELected]:LIMit:DATA? Sets the data array, which is the limit line in the limit test function. The array size is 1 + 5N, where N is the number of limit line segments.
S2VNA and S4VNA SCPI Programming Manual CALC:LIM:DISP <Ch> CALCulate [:SELected]:LIMit:DISPlay[:STATe] {OFF|ON|0|1} <Ch> CALCulate [:SELected]:LIMit:DISPlay[:STATe]? Turns ON/OFF the limit line display of the limit test function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1}...
S2VNA and S4VNA SCPI Programming Manual CALC:LIM:OFFS:AMPL <Ch> <numeric> CALCulate [:SELected]:LIMit:OFFSet:AMPLitude <Ch> CALCulate [:SELected]:LIMit:OFFSet:AMPLitude? Sets the value of the limit line offset along Y–axis. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> the value of the limit line offset along Y–axis, varies Parameter depending on the data format { dB | °...
S2VNA and S4VNA SCPI Programming Manual CALC:LIM:OFFS:STIM <Ch> <stimulus> CALCulate [:SELected]:LIMit:OFFSet:STIMulus <Ch> CALCulate [:SELected]:LIMit:OFFSet:STIMulus? Sets the value of the limit line offset along X–axis. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <stimulus> the value of the limit line offset along X–axis Parameter { Hz | s | dBm } Unit...
S2VNA and S4VNA SCPI Programming Manual CALC:LIM:REP:ALL? <Ch> CALCulate [:SELected]:LIMit:REPort:ALL? Reads out the data array, which is the limit test result. The array size is 4N, where N is the number of measurement points. For the n–th point, where n from 1 to N: <numeric 4n–3>...
S2VNA and S4VNA SCPI Programming Manual CALC:LIM:REP:POIN? <Ch> CALCulate [:SELected]:LIMit:REPort:POINts? Reads out the number of the measurement points that failed the limit test. The stimulus data array of these points can be read out by the Description command. CALC:LIM:REP? (query only) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK <Ch> <Mk> CALCulate [:SELected]:MARKer [:STATe] {OFF|ON|0|1} <Ch> <Mk> CALCulate [:SELected]:MARKer [:STATe]? Turns ON/OFF the marker. Turning ON a marker with the number from 1 to 15 will turn ON all the markers of smaller numbers. Turning OFF a marker with the number from 1 to 15 will turn OFF all the markers of greater numbers (except of the reference marker with number 16).
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:ACT <Ch> <Mk> CALCulate :SELected]:MARKer :ACTivate Sets the active marker. If the marker is not ON, this function will turn the marker ON. Turning ON a marker with the number from 1 to 15 will turn ON all the markers of smaller numbers.
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:BWID:DATA? <Ch> <Mk> CALCulate [:SELected]:MARKer :BWIDth:DATA? Reads out the bandwidth search result. The bandwidth search can performed relatively to the marker <Mk> or relatively to the absolute maximum value of the trace (in this case the number of the marker is ignored), what is set by the command.
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:BWID:REF <Ch> <char> CALCulate [:SELected]:MARKer:BWIDth:REFerence <Ch> CALCulate [:SELected]:MARKer:BWIDth:REFerence? Selects the reference point for the bandwidth search function: reference marker or absolute maximum value of the trace. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <char>...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:BWID:THR <Ch> <Mk> <numeric> CALCulate [:SELected]:MARKer :BWIDth:THReshold <Ch> <Mk> CALCulate [:SELected]:MARKer :BWIDth:THReshold? Sets the bandwidth definition value.. Description (command/query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16} <numeric> the bandwidth definition value, the range varies depending Parameter on the data format { dB | °...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:BWID:TYPE <Ch> <char> CALCulate [:SELected]:MARKer:BWIDth:TYPE <Ch> CALCulate [:SELected]:MARKer:BWIDth:TYPE? Sets the type of the bandwidth search function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} type of the bandwidth <char> Specifies the BPASs : Bandpass Parameter NOTCh...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:COUN <Ch> <numeric> CALCulate [:SELected]:MARKer:COUNt <Ch> CALCulate [:SELected]:MARKer:COUNt? Sets the number of the turned ON markers. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>, range from 0 to 16 Parameter Sets the value of the limit, which is closer to the specified value. Out of Range Query Response <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:COUP <Ch> CALCulate [:SELected]:MARKer:COUPle {OFF|ON|0|1} <Ch> CALCulate [:SELected]:MARKer:COUPle? Turns ON/OFF the marker coupling between traces. When coupled the markers of different traces with same number track the X-axis Description position. (command/query) All the traces of channel <Ch>, Target <Ch>={[1]|2|...16} {ON|1}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:DATA? <Ch> CALCulate [:SELected]:MARKer:DATA? Reads out the data array of all turned ON markers. The array size is 3N + 1, where N is the number of turned ON markers including the reference marker. If the reference marker is turned ON the last three elements of array contain the reference marker data and the rest elements of array contain the relative values.
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:DISC <Ch> CALCulate [:SELected]:MARKer:DISCrete {OFF|ON|0|1} <Ch> CALCulate [:SELected]:MARKer:DISCrete? Turns ON/OFF the marker discrete mode. Description (command/query) All traces of channel <Ch> (if the marker coupling is set to ON by the command), the active trace of channel <Ch> (if CALC:MARK:COUP Target otherwise),...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:DOM <Ch> CALCulate [:SELected]:MARKer:FUNCtion:DOMain[:STATe] {OFF|ON|0|1} <Ch> CALCulate [:SELected]:MARKer:FUNCtion:DOMain[:STATe]? Specify whether an arbitrary range or the range is used entire sweep when the marker search is performed. Description (command/query) All traces of channel <Ch> (if the marker search range coupling is set to ON by the command), the active trace of CALC:MARK:FUNC:DOM:COUP...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:DOM:COUP <Ch> CALCulate [:SELected]:MARKer:FUNCtion:DOMain:COUPle {OFF|ON|0|1} <Ch> CALCulate [:SELected]:MARKer:FUNCtion:DOMain:COUPle? arbitrary search range turned ON by the If the CALC:MARK:FUNC:DOM traces of channel use the same range command, specifies whether all (coupling) or each trace uses individual range when the marker Description search is performed.
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:DOM:STAR <Ch> <stimulus> CALCulate [:SELected]:MARKer:FUNCtion:DOMain:STARt <Ch> CALCulate [:SELected]:MARKer:FUNCtion:DOMain:STARt? Sets or reads out the start value of the marker search range. Description (command/query) All traces of channel <Ch> (if the marker search range coupling is set to ON by the command), the active trace of CALC:MARK:FUNC:DOM:COUP...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:DOM:STOP <Ch> <stimulus> CALCulate [:SELected]:MARKer:FUNCtion:DOMain:STOP <Ch> CALCulate [:SELected]:MARKer:FUNCtion:DOMain:STOP? Sets or reads out the stop value of the marker search range. Description (command/query) All traces of channel <Ch> (if the marker search range coupling is set to ON by the command), the active trace of CALC:MARK:FUNC:DOM:COUP...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:EXEC <Ch> <Mk> CALCulate [:SELected]:MARKer :FUNCtion:EXECute Executes the marker search according to the specified criterion. The type of the marker search is set by the CALC:MARK:FUNC:TYPE Description command. (no query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:PEXC <Ch> <Mk> <numeric> CALCulate [:SELected]:MARKer :FUNCtion:PEXCursion <Ch> <Mk> CALCulate [:SELected]:MARKer :FUNCtion:PEXCursion? Sets or reads out the peak excursion value, when the marker search for peak is performed by the command. CALC:MARK:FUNC:EXEC Description (command/query) Marker <Mk>...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:PPOL <Ch> <Mk> <char> CALCulate [:SELected]:MARKer :FUNCtion:PPOLarity <Ch> <Mk> CALCulate [:SELected]:MARKer :FUNCtion:PPOLarity? Selects the peak polarity, when the marker search for peak is performed by the command. CALC:MARK:FUNC:EXEC Description (command/query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:TARG <Ch> <Mk> <numeric> CALCulate [:SELected]:MARKer :FUNCtion:TARGet <Ch> <Mk> CALCulate [:SELected]:MARKer :FUNCtion:TARGet? Sets or reads out the target value, when the marker search for target is performed by the command. CALC:MARK:FUNC:EXEC Description (command/query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:TTR <Ch> <Mk> <char> CALCulate [:SELected]:MARKer :FUNCtion:TTRansition <Ch> <Mk> CALCulate [:SELected]:MARKer :FUNCtion:TTRansition? Selects the type of the target transition, when the marker search for transition is performed by the command. CALC:MARK:FUNC:EXEC Description (command/query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:FUNC:TYPE <Ch> <Mk> <char> CALCulate [:SELected]:MARKer :FUNCtion:TYPE <Ch> <Mk> CALCulate [:SELected]:MARKer :FUNCtion:TYPE? Selects the type of the marker search, which is performed by the command. CALC:MARK:FUNC:EXEC Description (command/query) Marker <Mk> the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:MATH:FLAT:DATA? <Ch> CALCulate [:SELected]:MARKer:MATH:FLATness:DATA? Reads out FLATNESS function data array. The FLATNESS function is applied within the range determined by two markers. The array includes 4 elements: Span <numeric 1> Description Gain <numeric 2> Slope <numeric 3>...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:MATH:FLAT:DOM:STOP <Ch> <numeric> CALCulate [:SELected]:MARKer:MATH:FLATness:STOP <Ch> CALCulate [:SELected]:MARKer:MATH:FLATness:STOP? Sets or reads out the number of the marker, which specifies the stop frequency of the FLATNESS function domain. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:SET <Ch> <Mk> <char> CALCulate [:SELected]:MARKer :SET Sets the value of the specified item to the value of the position of the marker. Description (no query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:X <Ch> <Mk> <stimulus> CALCulate [:SELected]:MARKer <Ch> <Mk> CALCulate [:SELected]:MARKer Sets or reads out the stimulus value of the marker. Description (command/query) Marker <Mk> of the active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <Mk>={[1]|2|...16} <stimulus>...
S2VNA and S4VNA SCPI Programming Manual CALC:MARK:Y? <Ch> <Mk> CALCulate [:SELected]:MARKer Reads out the response value of the marker. If the reference marker is turned ON, the values of the markers from 1 to 15 are read out as relative values to the reference marker.
S2VNA and S4VNA SCPI Programming Manual CALC:MATH:FUNC <Ch> <char> CALCulate [:SELected]:MATH:FUNCtion <Ch> CALCulate [:SELected]:MATH:FUNCtion? Selects the math operation between the data trace and the memory trace. The math result replaces the data trace. If the Description memory trace does not exist, the command is ignored. (command/query) The active trace of channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual CALC:MST:DATA? <Ch> CALCulate [:SELected]:MSTatistics:DATA? Reads out the math statistics values. The statistics function is applied either over the whole range, or within the range specified by command (the range CALC:MST:DOM limits are determined by two markers). The data include 3 elements: Description Mean value;...
S2VNA and S4VNA SCPI Programming Manual CALC:MST:DOM <Ch> CALCulate [:SELected]:MSTatistics:DOMain[:STATe] {OFF|ON|0|1} <Ch> CALCulate [:SELected]:MSTatistics:DOMain[:STATe]? Selects either partial frequency range or entire frequency range is used for math statistic calculation. The partial frequency range is Description limited by two markers. (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual CALC:MST:DOM:STAR <Ch> <numeric> CALCulate [:SELected]:MSTatistics:DOMain[:MARKer]:STARt <Ch> CALCulate [:SELected]:MSTatistics:DOMain[:MARKer]:STARt? Sets or reads out the number of the marker, which specifies the start frequency of the math statistics range. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:MST:DOM:STOP <Ch> <numeric> CALCulate [:SELected]:MSTatistics:DOMain[:MARKer]:STOP <Ch> CALCulate [:SELected]:MSTatistics:DOMain[:MARKer]:STOP? Sets or reads out the number of the marker, which specifies the stop frequency of the math statistics range. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:RLIM:DATA <Ch> <numeric list> CALCulate [:SELected]:RLIMit:DATA <Ch> CALCulate [:SELected]:RLIMit:DATA? Sets the data array, which is the limit line for the ripple limit function. The array size is 1 + 4N, where N is the number of limit line segments.
S2VNA and S4VNA SCPI Programming Manual CALC:RLIM:DISP:VAL <Ch> <char> CALCulate [:SELected]:RLIMit:DISPlay:VALue <Ch> CALCulate [:SELected]:RLIMit:DISPlay:VALue? Selects the display type of the ripple value in the specified band. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} math operation <char> Specifies the : Ripple value display OFF ABSolute : Absolute value...
S2VNA and S4VNA SCPI Programming Manual CALC:RLIM:REP? <Ch> CALCulate [:SELected]:RLIMit:REPort[:DATA]? Reads out the data array, which is the ripple limit test result. The array size is 1+3N, where N is the number of ripple limit bands. For the n–th point, where n from 1 to N: N total number of the bands <numeric 1>...
S2VNA and S4VNA SCPI Programming Manual CALC:SMO:APER <Ch> <numeric> CALCulate [:SELected]:SMOothing:APERture <Ch> CALCulate [:SELected]:SMOothing:APERture? Sets or reads out the smoothing aperture, when performing smoothing function. Description (command/query) Active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> the smoothing aperture from 0.01 to 20 Parameter % (percent) Unit...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME <Ch> <char> CALCulate [:SELected]:TRANsform:TIME[:TYPE] <Ch> CALCulate [:SELected]:TRANsform:TIME[:TYPE]? Selects the transformation type for the time domain transformation function: band-pass or low-pass. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <char> Specifies the transformation type: BPASs Ban-dpass Parameter...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:CENT <Ch> <time> CALCulate [:SELected]:TRANsform:TIME:CENTer <Ch> CALCulate [:SELected]:TRANsform:TIME:CENTer? Sets or reads out the time domain center value, when the time domain transformation function is turned ON. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time>...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:IMP:WIDT <Ch> <time> CALCulate [:SELected]:TRANsform:TIME:IMPulse:WIDTh <Ch> CALCulate [:SELected]:TRANsform:TIME:IMPulse:WIDTh? Sets or reads out the impulse width (time domain transformation resolution), coupled with the Kaiser–Bessel window shape β parameter. The impulse width setting changes the β parameter, Description and setting of β...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:KBES <Ch> <numeric> CALCulate [:SELected]:TRANsform:TIME:KBESsel <Ch> CALCulate [:SELected]:TRANsform:TIME:KBESsel? Sets or reads out the β parameter, which controls the Kaiser– Bessel window shape, when performing time domain Description transformation. (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:SPAN <Ch> <time> CALCulate [:SELected]:TRANsform:TIME:SPAN <Ch> CALCulate [:SELected]:TRANsform:TIME:SPAN? Sets or reads out the time domain span value, when the time domain transformation function is turned ON. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time>...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:STAR <Ch> <time> CALCulate [:SELected]:TRANsform:TIME:STARt <Ch> CALCulate [:SELected]:TRANsform:TIME:STARt? Sets or reads out the time domain start value, when the time domain transformation function is turned ON. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time>...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:STOP <Ch> <time> CALCulate [:SELected]:TRANsform:TIME:STOP <Ch> CALCulate [:SELected]:TRANsform:TIME:STOP? Sets or reads out the time domain stop value, when the time domain transformation function is turned ON. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <time>...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:STAT <Ch> CALCulate [:SELected]:TRANsform:TIME:STATe {OFF|ON|0|1} <Ch> CALCulate [:SELected]:TRANsform:TIME:STATe? Turns ON/OFF the time domain transformation function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1} Preset Value Analysis >...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:STEP:RTIM <Ch> <time> CALCulate [:SELected]:TRANsform:TIME:STEP:RTIMe <Ch> CALCulate [:SELected]:TRANsform:TIME:STEP:RTIMe? Sets or reads out the rise time of the step signal (time domain transformation resolution), coupled with the Kaiser–Bessel window shape β parameter. The impulse width setting changes the β Description parameter, and setting of β...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:STIM <Ch> <char> CALCulate [:SELected]:TRANsform:TIME:STIMulus <Ch> CALCulate [:SELected]:TRANsform:TIME:STIMulus? Selects the stimulus type for the time domain transformation function: impulse or step. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <char> Specifies the stimulus type: IMPulse : Impulse Parameter...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:REFL:TYPE <Ch> <char> CALCulate [:SELected]:TRANsform:TIME:REFLection:TYPE <Ch> CALCulate [:SELected]:TRANsform:TIME:REFLection:TYPE? Selects the reflection distance either one way or round trip for the time domain transformation function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <char>...
S2VNA and S4VNA SCPI Programming Manual CALC:TRAN:TIME:UNIT <Ch> <char> CALCulate [:SELected]:TRANsform:TIME:UNIT <Ch> CALCulate [:SELected]:TRANsform:TIME:UNIT? Selects the the transformation unit for the time domain transformation function: seconds, meters, feet. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} <char> Choose from: SEConds : Seconds Parameter...
S2VNA and S4VNA SCPI Programming Manual DISP:COL:BACK <numeric 1> <numeric 2> <numeric 3> DISPlay:COLor:BACK DISPlay:COLor:BACK? Sets or reads out the background color for trace display. Description (command/query) Red value R from 0 to 255; <numeric 1> Parameter Green value G from 0 to 255; <numeric 2>...
S2VNA and S4VNA SCPI Programming Manual DISP:COL:GRAT <numeric 1> <numeric 2> <numeric 3> DISPlay:COLor:GRATicule DISPlay:COLor:GRATicule? Sets or reads out the grid and the graticule label color for trace display. Description (command/query) Red value R from 0 to 255; <numeric 1> Parameter Green value G from 0 to 255;...
S2VNA and S4VNA SCPI Programming Manual DISP:COL:TRAC:DATA <Tr> <numeric 1> <numeric 2> <numeric 3> DISPlay:COLor:TRACe :DATA <Tr> DISPlay:COLor:TRACe :DATA? Sets or reads out the data trace color. Description (command/query) Trace <Tr>, Target <Tr>={[1]|2|...16} Red value R from 0 to 255; <numeric 1>...
S2VNA and S4VNA SCPI Programming Manual DISP:COL:TRAC:MEM <Tr> <numeric 1> <numeric 2> <numeric 3> DISPlay:COLor:TRACe :MEMory <Tr> DISPlay:COLor:TRACe :MEMory? Sets or reads out the memory trace color. Description (command/query) Trace <Tr>, Target <Tr>={[1]|2|...16} Red value R from 0 to 255; <numeric 1>...
S2VNA and S4VNA SCPI Programming Manual DISP:HIDE DISPlay:HIDE Hides the Analyzer GUI. Description (no query) DISP:SHOW Related Commands None Equivalent Softkeys DISP:MAX DISPlay:MAXimize {OFF|ON|0|1} DISPlay:MAXimize? Turns ON/OFF of the maximization of the active channel window. Description (command/query) The active channel set by the command DISP:WIND:ACT Target : ON...
S2VNA and S4VNA SCPI Programming Manual DISP:SHOW DISPlay:SHOW Shows the Analyzer GUI hidden by the command. DISP:HIDE Description (no query) DISP:HIDE Related Commands None Equivalent Softkeys DISP:SPL <numeric> DISPlay:SPLit DISPlay:SPLit? Sets or reads out the layout of the channel windows on the screen. The channel window layout on the screen see below.
S2VNA and S4VNA SCPI Programming Manual DISP:UPD DISPlay:UPDate[:IMMediate] Updates the display once, when the display update is set to OFF by command. DISP:ENAB Description (no query) DISP:ENAB Related Commands None Equivalent Softkeys DISP:WIND:ACT <Ch> DISPlay:WINDow :ACTivate Sets the active channel. Description (no query) Channel <Ch>,...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:ANN:MARK:ALIG <Ch> <char> DISPlay:WINDow :ANNotation:MARKer:ALIGn[:TYPE] <Ch> DISPlay:WINDow :ANNotation:MARKer:ALIGn[:TYPE]? Sets or reads out the alignment mode of the marker display position of each trace, when the only active trace display feature is Description turned OFF by the command.
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:SPL <Ch> <numeric> DISPlay:WINDow :SPLit <Ch> DISPlay:WINDow :SPLit? Sets or reads out the layout of the graph in the channel window. Description The graph layout in the channel window see below. (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:TRAC:ANN:MARK:POS:X <Ch> <Tr> <numeric> DISPlay:WINDow :TRACe :ANNotation:MARKer:POSition:X <Ch> <Tr> DISPlay:WINDow :TRACe :ANNotation:MARKer:POSition:X? Sets or reads out the display position of the marker annotation on the X–axis by a percentage of the display width. Description (command/query) Trace <Tr>...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:TRAC:ANN:MARK:POS:Y <Ch> <Tr> <numeric> DISPlay:WINDow :TRACe :ANNotation:MARKer:POSition:Y <Ch> <Tr> DISPlay:WINDow :TRACe :ANNotation:MARKer:POSition:Y? Sets or reads out the display position of the marker annotation on the Y–axis by a percentage of the display height. Description (command/query) Trace <Tr>...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:TRAC:Y:PDIV <Ch> <Tr> <numeric> DISPlay:WINDow :TRACe :Y[:SCALe]:PDIVision <Ch> <Tr> DISPlay:WINDow :TRACe :Y[:SCALe]:PDIVision? Sets or reads out the trace scale. Sets the scale per division, when the data format is the rectangular format. Sets the full scale value, Description when the data format is the Smith chart format or the polar format.
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:TRAC:Y:RLEV <Ch> <Tr> <numeric> DISPlay:WINDow :TRACe :Y[:SCALe]:RLEVel <Ch> <Tr> DISPlay:WINDow :TRACe :Y[:SCALe]:RLEVel? Sets the value of the reference line (response value on the reference line). For the rectangular format only. Description (command/query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:TRAC:Y:RPOS <Ch> <Tr> <numeric> DISPlay:WINDow :TRACe :Y[:SCALe]:RPOSition <Ch> <Tr> DISPlay:WINDow :TRACe :Y[:SCALe]:RPOSition? Sets the position of the reference line. For the rectangular format only. Description (command/query) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:X:SPAC <Ch> <char> DISPlay:WINDow :X:SPACing <Ch> DISPlay:WINDow :X:SPACing? Sets or reads out the display method of the graph horizontal axis for the segment sweep. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <char> Choose from: LINear : Frequency base (linear frequency axis) Parameter OBASe...
S2VNA and S4VNA SCPI Programming Manual DISP:WIND:Y:DIV <Ch> <numeric> DISPlay:WINDow :Y[:SCALe]:DIVisions <Ch> DISPlay:WINDow :Y[:SCALe]:DIVisions? Sets the number of the vertical scale divisions. For the rectangular format only. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> the number of the vertical scale divisions from 4 to 30 Parameter Sets the value of the limit, which is closer to the specified value.
S2VNA and S4VNA SCPI Programming Manual FORM:BORD <char> FORMat:BORDer FORMat:BORDer? Sets or reads out the transfer order of each byte in data, when the binary data transfer format is set by the command. FORM:DATA Description (command/query) <char> Choose from: : Normal (big-endian format) Parameter NORMal : Swapped (little-endian format)
S2VNA and S4VNA SCPI Programming Manual FORM:DATA <char> FORMat:DATA FORMat:DATA? Sets or reads out the data transfer format, when responding to the following queries: CALC:DATA:FDAT? CALC:DATA:FMEM? CALC:DATA:SDAT? CALC:DATA:SMEM? CALC:FUNC:DATA? CALC:LIM:DATA? Description CALC:LIM:REP? CALC:LIM:REP:ALL? CALC:RLIM:DATA? CALC:RLIM:REP? SENS:FREQ:DATA? SENS:SEGM:DATA? (command/query) <char> Choose from: : Character format ASCii Parameter...
S2VNA and S4VNA SCPI Programming Manual HCOP HCOPy[:IMMediate] Prints out the image displayed on the screen without previewing. Description (no query) System > Print > Print Embedded Equivalent Softkeys HCOP:ABOR HCOPy:ABORt Aborts the printout. Description (no query) None Equivalent Softkeys HCOP:DATE:STAM HCOPy:DATE:STAMp {OFF|ON|0|1} HCOPy:DATE:STAMp?
S2VNA and S4VNA SCPI Programming Manual HCOP:IMAG <char> HCOPy:IMAGe HCOPy:IMAGe? Sets or reads out the inverted color image printout. Description (command/query) <char> Choose from: NORMal : Normal printout Parameter INVert : Inverted color printout Query Response {NORM|INV} Preset Value NORM System >...
S2VNA and S4VNA SCPI Programming Manual INIT <Ch> INITiate [:IMMediate] Puts the channel to the Trigger Waiting state for the one trigger event. The channel should be in the hold state, otherwise an error occurs and the command is ignored. The channel goes into the Hold as a result of the command INIT: CONT OFF.
S2VNA and S4VNA SCPI Programming Manual INIT:CONT <Ch> INITiate :CONTinuous {OFF|ON|0|1} <Ch> INITiate :CONTinuous? Turns ON/OFF the continuous trigger initiation mode. When the continuous initiation mode turned ON: If the Internal trigger source is selected by the command TRIG:SOUR INT, then the channel continuously sweeps; ...
S2VNA and S4VNA SCPI Programming Manual MMEM:CAT? <string> MMEMory:CATalog? This command reads out the following information on the hard drive: Space in use Available space Description Name and size of all files (including directories) in the specified directory (query only) Directory name Parameter...
S2VNA and S4VNA SCPI Programming Manual MMEM:DEL <string> MMEMory:DELete Deletes a file. Description (no query) File name Parameter <string> None Equivalent Softkeys MMEM:LOAD <string> MMEMory:LOAD[:STATe] Recalls the specified Analyzer state file. The file must be saved by command. MMEM:STOR Description (no query) File name Parameter...
S2VNA and S4VNA SCPI Programming Manual MMEM:LOAD:CHAN <char> MMEMory:LOAD:CHANnel[:STATe] Recalls the Analyzer state for the active channel. The file must be saved in one of the four memory registers by the MMEM:STOR:CHAN Description command. (no query) Active channel set by the command DISP:WIND:ACT Target...
S2VNA and S4VNA SCPI Programming Manual MMEM:LOAD:LIM <string> MMEMory:LOAD:LIMit Recalls the limit table file. The file must be saved by the command. MMEM:STOR:LIM Description (no query) Active trace of the active channel, set by the command CALC:PAR:SEL Target File name Parameter <string>...
S2VNA and S4VNA SCPI Programming Manual MMEM:LOAD:RLIM <string> MMEMory:LOAD:RLIMit Recalls the ripple limit table file. The file must be saved by the command. MMEM:STOR:RLIM Description (no query) Active trace of the active channel, set by the command CALC:PAR:SEL Target File name Parameter <string>...
S2VNA and S4VNA SCPI Programming Manual MMEM:LOAD:SNP <string> MMEMory:LOAD:SNP[:DATA] Loads the Touchstone file with the specified name to the measured S–parameters of the active channel. The Touchstone file types 1, 2, 3 or 4 port (file extensions s1p, s2p, s3p or s4p) are supported. Description On completion of the command, the channel goes to the hold state.
S2VNA and S4VNA SCPI Programming Manual MMEM:MDIR <string> MMEMory:MDIRectory Creates a new directory. Description (no query) Directory full name Parameter <string> None Equivalent Softkeys MMEM:STOR <string> MMEMory:STORe[:STATe] Saves the Analyzer state into a file. Description (no query) File name Parameter <string>...
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:CHAN <char> MMEMory:STORe:CHANnel[:STATe] Saves the Analyzer state of the items set for the active channel into one of the four memory registers. Description (no query) Active channel set by the command DISP:WIND:ACT Target <char> Choose from: : Save to register A : Save to register B Parameter...
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:CKIT <Ck> <string> MMEMory:STORe:CKIT Saves the definition file for the calibration kit. Description (no query) Calibration kit <Ck>, Target <Ck>={[1]|2|...50} File name Parameter <string> If the full path of the file is not specified, the \CalKit subdirectory of the application directory will be searched for the file.
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:IMAG <string> MMEMory:STORe:IMAGe Saves the display image in BMP or PNG format into a file. Description (no query) File name Parameter <string> If the full path of the file is not specified, the \Image subdirectory of the application directory will be searched for the file.
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:PLOS <Pt> <string> MMEMory:STORe:PLOSs Saves the loss compensation table into a file. Description (no query) Port <Pt> of the active channel, set by the command DISP:WIND:ACT Target <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA File name Parameter <string>...
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:RLIM <string> MMEMory:STORe:RLIMit Saves the ripple limit table into a file. Description (no query) Active trace of the active channel, set by the command CALC:PAR:SEL Target File name Parameter <string> If the full path of the file is not specified, the \Limit subdirectory of the application directory will be searched for the file.
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:SNP <string> MMEMory:STORe:SNP[:DATA] Saves the measured S–parameters of the active channel into a Touchstone file. The file type (1–port to 4–port) is set by the Description command. MMEM:STOR:SNP:TYPE:SxP (no query) Active channel, set by the command DISP:WIND:ACT Target...
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:SNP:TYPE:S1P <port> MMEMory:STORe:SNP:TYPE:S1P MMEMory:STORe:SNP:TYPE:S1P? Sets the 1-port Touchstone file type (*.s1p) and the port number, when saving S–parameters by the command. MMEM:STOR:SNP Description (command/query) <port> port number from 1 to 2 (or 4 for S4 software) Parameter Query Response <numeric>...
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:SNP:TYPE:S3P <port1> <port2> <port3> MMEMory:STORe:SNP:TYPE:S3P MMEMory:STORe:SNP:TYPE:S3P? Sets the 3-port Touchstone file type (*.s3p) and the port numbers, when saving S–parameters by the command. MMEM:STOR:SNP Description (command/query) First port number <port1> Second port number <port2> Parameter Third port number <port3>...
S2VNA and S4VNA SCPI Programming Manual MMEM:STOR:STYP <char> MMEMory:STORe:STYPe MMEMory:STORe:STYPe? Selects the type of the Analyzer or channel state saving by the command. MMEM:STOR:CHAN Description (command/query) <char> Choose from: STATe : Measurement conditions CSTate : Measurement conditions and calibration Parameter DSTate : Measurement conditions and data CDSTate...
S2VNA and S4VNA SCPI Programming Manual MMEM:TRAN? <string> MMEMory:TRANsfer? Transfers the contents of a specified file from the Analyzer to the external computer. Description (command/query) the file name with the full path Parameter <string> Block data transfer format. For example: #6001000<binary block 1000 bytes>...
S2VNA and S4VNA SCPI Programming Manual SENS:AVER <Ch> SENSe :AVERage[:STATe] {OFF|ON|0|1} <Ch> SENSe :AVERage[:STATe]? Turns ON/OFF the measurement averaging function. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1} Preset Value SENS:AVER:COUN Related Commands Equivalent Softkeys Average >...
S2VNA and S4VNA SCPI Programming Manual SENS:AVER:COUN <Ch> <numeric> SENSe :AVERage:COUNt <Ch> SENSe :AVERage:COUNt? Sets or reads out the averaging factor, when the averaging function turned on. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> the averaging factor from 1 to 999 Parameter Sets the value of the limit, which is closer to the specified value.
S2VNA and S4VNA SCPI Programming Manual SENS:BAND <Ch> <frequency> SENSe :BANDwidth[:RESolution] <Ch> SENSe :BANDwidth[:RESolution]? SENS:BWID <Ch> <frequency> SENSe :BWIDth[:RESolution] <Ch> SENSe :BWIDth[:RESolution]? Sets or reads out the IF bandwidth. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <frequency> the IF bandwidth value Parameter Hz (Hertz) Unit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COEF <Ch> <char> <rcvport> <srcport> <numeric list> SENSe :CORRection:COEFficient[:DATA] <Ch> <char> <rcvport> <srcport> SENSe :CORRection:COEFficient[:DATA]? Writes or reads out the calibration coefficient data array. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COEF:METH:ERES <Ch> <rcvport> <srcport> SENSe :CORRection:COEFficient:METHod:ERESponse Selects the ports and sets the 1–path 2–port calibration type, when the written calibration coefficients are made effective by the Description command. SENS:CORR:COEF:SAVE (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <rcvport>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COEF:METH:SHOR <Ch> <port> SENSe :CORRection:COEFficient:METHod[:RESPonse]:SHORt Selects the port and sets the response calibration (Short) type, when the written calibration coefficients are made effective by the Description command. SENS:CORR:COEF:SAVE (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COEF:METH:SOLT2 <Ch> <port1> <port2> SENSe :CORRection:COEFficient:METHod:SOLT2 Selects the ports and sets the full 2–port calibration type, when the written calibration coefficients are made effective by the Description command. SENS:CORR:COEF:SAVE (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port1>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COEF:METH:SOLT4 <Ch> <port1> <port2> <port3> <port4> SENSe :CORRection:COEFficient:METHod:SOLT4 Selects the ports and sets the full 4–port calibration type, when the written calibration coefficients are made effective by the Description command. SENS:CORR:COEF:SAVE (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port1>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COEF:SAVE <Ch> SENSe :CORRection:COEFficient:SAVE Enables the written calibration coefficients depending on the selected calibration type. On completion of the command the error correction automatically turns ON. Description At the attempt to execute this command before all the needed calibration coefficients are written, an error occurs and the command is ignored.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ADAP:DEL <Ch> <numeric> SENSe :CORRection:COLLect:ADAPter:DELay <Ch> SENSe :CORRection:COLLect:ADAPter:DELay? Sets or reads out the approximate delay value of an adapter in the adapter removal/insertion function. This value is used to eliminate the uncertainty of ± 180 ° when calculating the phase response of the adapter.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ADAP:LENG <Ch> <numeric> SENSe :CORRection:COLLect:ADAPter:LENGth <Ch> SENSe :CORRection:COLLect:ADAPter:LENGth? Sets or reads out the approximate value of the mechanical length of the adapter in the adapter removal/insertion function. This value is used to eliminate the uncertainty of ± 180 ° when calculating the phase response of the adapter.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ADAP:UNIT <Ch> SENSe :CORRection:COLLect:ADAPter:UNIT {SEConds|METers} <Ch> SENSe :CORRection:COLLect:ADAPter:UNIT? Selects the display units of the adapter delay (length) in the adapter removal/insertion function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} SEConds : Selects the seconds Parameter METers : Selects the meters...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ADAP:MED <Ch> SENSe :CORRection:COLLect:ADAPter:MEDia {COAXial|WAVeguide} <Ch> SENSe :CORRection:COLLect:ADAPter:MEDia? Specifies the adapter media in the adapter removal/insertion function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} COAXial : Specifies the coaxial adapter Parameter WAVeguide : Specifies the waveguide adapter Query Response...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ADAP:PERM <Ch> <numeric> SENSe :CORRection:COLLect:ADAPter:PERMittivity <Ch> SENSe :CORRection:COLLect:ADAPter:PERMittivity? Sets or reads out the value of the permittivity of an adapter media in the adapter removal/insertion function. When setting the adapter length, this parameter is used to calculate the adapter delay;...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ADAP:WAV:CUT <Ch> <numeric> SENSe :CORRection:COLLect:ADAPter:WAVeguide:CUToff <Ch> SENSe :CORRection:COLLect:ADAPter:WAVeguide:CUToff? Sets or reads out the value of the cutoff frequency of the waveguide adapter. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} value of the cutoff frequency of the waveguide <numeric>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT <numeric> SENSe:CORRection:COLLect:CKIT[:SELect] SENSe:CORRection:COLLect:CKIT[:SELect]? Sets or reads out the number of the selected calibration kit in the table of calibration kits. The selected calibration kit is used in the subsequent calibration and is used for editing by the commands Description SENS:CORR:COLL:CKIT:XXXX.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:ORD:OPEN <port> <numeric> SENSe:CORRection:COLLect:CKIT:ORDer:OPEN <port> SENSe:CORRection:COLLect:CKIT:ORDer:OPEN? Sets or reads out the number of the calibration standard of the open type, used for the measurement of the specified port. Description (command/query) Selected calibration kit Target <port>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:ORD:SHOR <port> <numeric> SENSe:CORRection:COLLect:CKIT:ORDer:SHORt <port> SENSe:CORRection:COLLect:CKIT:ORDer:SHORt? Sets or reads out the number of the calibration standard of the short type, used for the measurement of the specified port. Description (command/query) Selected calibration kit Target <port>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:ORD:THRU <port1> <port2> <numeric> SENSe:CORRection:COLLect:CKIT:ORDer:THRU <port1> <port2> SENSe:CORRection:COLLect:CKIT:ORDer:THRU? Sets or reads out the number of the calibration standard of the thru type, used for the measurement between the <port1> and Description <port2> ports. (command/query) Selected calibration kit Target <port1>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:ORD:TRLL <port1> <port2> <numeric> SENSe:CORRection:COLLect:CKIT:ORDer:TRLLine <port1> <port2> SENSe:CORRection:COLLect:CKIT:ORDer:TRLLine? Sets or reads out the number of the calibration standard of the TRL line type, used for the measurement between the <port1> and Description <port2> ports. (command/query) Selected calibration kit Target...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:ORD:TRLT <port1> <port2> <numeric> SENSe:CORRection:COLLect:CKIT:ORDer:TRLThru <port1> <port2> SENSe:CORRection:COLLect:CKIT:ORDer:TRLThru? Sets or reads out the number of the calibration standard of the TRL thru type, used for the measurement between the <port1> and Description <port2> ports. (command/query) Selected calibration kit Target...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:ORD:TRLR <port> <numeric> SENSe:CORRection:COLLect:CKIT:ORDer:TRLReflect <port> SENSe:CORRection:COLLect:CKIT:ORDer:TRLReflect? Sets or reads out the number of the calibration standard of the TRL Reflect type, used for the measurement of the specified port. Description (command/query) Selected calibration kit Target <port>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:ARB <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN :ARBitrary <Std> SENSe:CORRection:COLLect:CKIT:STAN :ARBitrary? Sets or reads out the value of the arbitrary impedance for the load standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:C0 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :C0? Sets or reads out the C0 value for the open calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:C1 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :C1? Sets or reads out the C1 value for the open calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:C2 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :C2? Sets or reads out the C2 value for the open calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:C3 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :C3? Sets or reads out the C3 value for the open calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:DEL <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN :DELay <Std> SENSe:CORRection:COLLect:CKIT:STAN :Delay? Sets or reads out the offset delay value for the calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:FMAX <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN :FMAXimum <Std> SENSe:CORRection:COLLect:CKIT:STAN :FMAXimum? Sets or reads out the maximum frequency limit of the calibration standard Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:FMIN <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN :FMINimum <Std> SENSe:CORRection:COLLect:CKIT:STAN :FMINimum? Sets or reads out the minimum frequency limit of the calibration standard Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:L0 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :L0? Sets or reads out the L0 value for the short calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:L1 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :L1? Sets or reads out the L1 value for the short calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:L2 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :L2? Sets or reads out the L2 value for the short calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:L3 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :L3? Sets or reads out the L3 value for the short calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:LOSS <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN :LOSS <Std> SENSe:CORRection:COLLect:CKIT:STAN :LOSS? Sets or reads out the offset loss value for the calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:TYPE <Std> <char> SENSe:CORRection:COLLect:CKIT:STAN :TYPE <Std> SENSe:CORRection:COLLect:CKIT:STAN :TYPE? Sets or reads out the type of calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:CKIT:STAN:Z0 <Std> <numeric> SENSe:CORRection:COLLect:CKIT:STAN <Std> SENSe:CORRection:COLLect:CKIT:STAN :Z0? Sets or reads out the offset Z0 value for the calibration standard. Description (command/query) Standard <Std> of the selected calibration kit, , where N – the number of the standards in Target <Std>={[1]|2|...N} the calibration kit...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ECAL:INF? SENSe:CORRection:COLLect:ECAL:INFormation? Gets information of the AutoCal Module connected to the Network Analyzer. Description (query only) AutoCal Module Target The query returns information in a string with comma separated fields. Autocal Module Information: Model Name, Serial Number, Current Temperature of AutoCal Module, Selected Characterization Information:...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ECAL:SOLT1 <Ch> <port> SENSe :CORRection:COLLect:ECAL:SOLT1 Executes 1-port calibration of the specified port of specified Description channel using the AutoCal module (command only). Channel <Ch>, Target <Ch>={[1]|2|...16} : Port Number Parameter <port> Calibration > AutoCal > 1-Port AutoCal > Port n Equivalent Softkeys SENS:CORR:COLL:ECAL:SOLT2 <Ch>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ECAL:SOLT3 <Ch> <port1> <port2> <port3> SENSe :CORRection:COLLect:ECAL:SOLT3 Executes full 3-port calibration between the specified 3 ports of Description specified channel using the AutoCal module (command only). Channel <Ch>, Target <Ch>={[1]|2|...16} : Port Number <port1> : Port Number Parameter <port2>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ECAL:UCH <char> SENSe:CORRection:COLLect:ECAL:UCHar SENSe:CORRection:COLLect:ECAL:UCHar? Sets or reads out the characterization number used when executing AutoCal (factory or user characterizations). Description (command/query) AutoCal Target <char> Specifies the stimulus type: : factory characterization CHAR0 : user characterization 1 CHAR1 Parameter : user characterization 2...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:DATA:ISOL <Ch> <rcvport> <srcport> <numeric list> SENSe :CORRection:COLLect:DATA:ISOLation <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect:DATA:ISOLation? Writes or reads out the array of the isolation calibration measurement performed between the receiver port <rcvport> and the source port <srcport>. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:DATA:LOAD <Ch> <port> <numeric list> SENSe :CORRection:COLLect:DATA:LOAD <Ch> <port> SENSe :CORRection:COLLect:DATA:LOAD? Writes or reads out the array of the load calibration standard measurement for the port <port>. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:DATA:OPEN <Ch> <port> <numeric list> SENSe :CORRection:COLLect:DATA:OPEN <Ch> <port> SENSe :CORRection:COLLect:DATA:OPEN? Writes or reads out the array of the open calibration standard measurement for the port <port>. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:DATA: SHOR <Ch> <port> <numeric list> SENSe :CORRection:COLLect:DATA:SHORt <Ch> <port> SENSe :CORRection:COLLect:DATA:SHORt? Writes or reads out the array of the short calibration standard measurements for the port <port>. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:DATA:THRU:MATC <Ch> <rcvport> <srcport> <numeric list> SENSe :CORRection:COLLect:DATA:THRU:MATCh <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect:DATA:THRU:MATCh? Writes or reads out the array of the reflection measurement of the thru standard connected between the receiver port <rcvport> and the source port <srcport>.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:DATA:THRU:TRAN <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect:DATA:THRU:TRANsmission <numeric list> <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect:DATA:THRU:TRANsmission? Writes or reads out the array of the transmission measurement performed between the receiver port <rcvport> and the source port <srcport> using the thru standard. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:ISOL <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect[:ACQuire]:ISOLation Measures the isolation calibration data between the receiver port <rcvport> and the source port <srcport>. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <rcvport> the number of the receiver port from 1 to 2 (or 4) Parameter <srcport>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:LOAD <Ch> <port> SENSe :CORRection:COLLect[:ACQuire]:LOAD Measures the calibration data of the load standard for the specified port. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port> the number of the port from 1 to 2 (or 4) Parameter The command starts the measurement immediately if the trigger source calibration...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:OPEN <Ch> <port> SENSe :CORRection:COLLect[:ACQuire]:OPEN Measures the calibration data of the open standard for the specified port. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port> the number of the port from 1 to 2 (or 4) Parameter The command starts the measurement immediately if the trigger source calibration...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:SHOR <Ch> <port> SENSe :CORRection:COLLect[:ACQuire]:SHORt Measures the calibration data of the short standard for the specified port. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port> the number of the port from 1 to 2 (or 4) Parameter The command starts the measurement immediately if the trigger source calibration...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect[:ACQuire]:THRU Measures the calibration data of the thru standard between the receiver port <rcvport> and the source port <srcport>. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <rcvport> the number of the receiver port from 1 to 2 (or 4) Parameter <srcport>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:TRLL <Ch> <port1> <port2> SENSe :CORRection:COLLect[:ACQuire]:TRLLine Measures the calibration data of the TRL line standard between the <port1> and the <port2>. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port1> the number of the port from 1 to 2 (or 4) Parameter <port2>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:TRLT <Ch> <port1> <port2> SENSe :CORRection:COLLect[:ACQuire]:TRLThru Measures the calibration data of the TRL thru standard between the <port1> and the <port2>. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port1> the number of the port from 1 to 2 (or 4) Parameter <port2>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:SUBC <Ch> <numeric> SENSe :CORRection:COLLect[:ACQuire]:SUBClass <Ch> SENSe :CORRection:COLLect[:ACQuire]:SUBClass? Selects the subclass number of calibration standard used for measurement by the subsequent command . If the SENS:CORR:COLL:XXXX calibration kit contains several calibration standards of the same type, Description say SHORTs, this allows select the particular SHORT.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:METH:OPEN <Ch> <port> SENSe :CORRection:COLLect:METHod[:RESPonse]:OPEN Selects the port and sets the response calibration (Open) type for the calculation of the calibration coefficients on completion of the Description calibration executed by the command. SENS:CORR:COLL:SAVE (no query) Channel <Ch>, Target <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:METH:SOLT1 <Ch> <port> SENSe :CORRection:COLLect:METHod:SOLT1 Selects the port and sets the full 1–port calibration type for the calculation of the calibration coefficients on completion of the Description calibration executed by the command. SENS:CORR:COLL:SAVE (no query) Channel <Ch>, Target <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:METH:SOLT3 <Ch> <port1> <port2> <port3> SENSe :CORRection:COLLect:METHod:SOLT3 Selects the ports and sets the full 3–port calibration type for the calculation of the calibration coefficients on completion of the Description calibration executed by the command. SENS:CORR:COLL:SAVE (no query) Channel <Ch>,...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:METH:THRU <Ch> <rcvport> <srcport> SENSe :CORRection:COLLect:METHod[:RESPonse]:THRU Selects the ports and sets the response calibration (Thru) type for the calculation of the calibration coefficients on completion of the Description calibration executed by the command. SENS:CORR:COLL:SAVE (no query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:METH:TRL3 <Ch> <port1> <port2> <port3> SENSe :CORRection:COLLect:METHod:TRL3 Selects the ports and sets the 3–port TRL calibration type for the calculation of the calibration coefficients on completion of the Description calibration executed by the command. SENS:CORR:COLL:SAVE (no query) Channel <Ch>,...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:METH:TYPE? <Ch> SENSe :CORRection:COLLect:METHod:TYPE? Reads out the calibration type selected for the calculation of the calibration coefficients on completion of the calibration executed Description by the command. SENS:CORR:COLL:SAVE (query only) Channel <Ch>, Target <Ch>={[1]|2|...16} RESPO : Response (Open) RESPS...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:SAVE <Ch> SENSe :CORRection:COLLect:SAVE Calculates the calibration coefficients from the calibration standards measurements depending on the selected calibration type. The calibration type is selected by one of commands SENS:CORR:COLL:METH:XXXX On completion of the command, all the calibration standards measurements are cleared and the error correction automatically Description turns ON.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:SIMP:SAVE <Ch> SENSe :CORRection:COLLect:SIMPlified:SAVE Calculates the calibration coefficients for the simplified 3 or 4 port calibration from the calibration standards measurements when the 3 or 4 port calibration is selected as the calibration type. The calibration type selected...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:DEL <Ch> <numeric> SENSe :CORRection:COLLect:THRU:ADDition:DELay <Ch> SENSe :CORRection:COLLect:THRU:ADDition:DELay? Sets or reads out the approximate delay value of an unknown thru in the thru addition function. This value is used to eliminate the uncertainty of ± 180 ° when calculating the phase response of the thru.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:LENG <Ch> <numeric> SENSe :CORRection:COLLect:THRU:ADDition:LENGth <Ch> SENSe :CORRection:COLLect:THRU:ADDition:LENGth? Sets or reads out the approximate value of the mechanical length of an unknown thru in the thru addition function. This value is used to eliminate the uncertainty of ± 180 ° when calculating the phase response of the thru.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:UNIT <Ch> SENSe :CORRection:COLLect:THRU:ADDition:UNIT {SEConds|METers} <Ch> SENSe :CORRection:COLLect:THRU:ADDition:UNIT? Selects the display units of the thru delay (length) in the thru addition function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} SEConds : Selects the seconds Parameter METers : Selects the meters...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:MED <Ch> SENSe :CORRection:COLLect:THRU:ADDition:MEDia {COAXial|WAVeguide} <Ch> SENSe :CORRection:COLLect:THRU:ADDition:MEDia? Specifies the media of the thru in the thru addition function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} COAXial : Specifies the coaxial Parameter WAVeguide : Specifies the waveguide...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:PERM <Ch> <numeric> SENSe :CORRection:COLLect:THRU:ADDition:PERMittivity <Ch> SENSe :CORRection:COLLect:THRU:ADDition:PERMittivity? Sets or reads out the value of the permittivity of the thru media in the thru addition function. This parameter is used to calculate the adapter delay when the thru length is setting;...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:WAV:CUT <Ch> <numeric> SENSe :CORRection:COLLect:THRU:ADDition:WAVeguide:CUToff <Ch> SENSe :CORRection:COLLect:THRU:ADDition:WAVeguide:CUToff? Sets or reads out the value of the cutoff frequency of the waveguide thru in the thru addition function. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} value of the cutoff frequency of the waveguide thru. <numeric>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:FULL2:COMP <Ch> <port1>,<port2> SENSe :CORRection:COLLect:THRU:ADDition:FULL2:COMPlete Completes the full 2-port calibration between the specified ports provided that each port was calibrated using full 1-port calibration: Measures an arbitrary thru between the ports; Calculates the error terms Et and El using the unknown thru algorithm;...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:FULL3:PORT <Ch> <port1> <port2> SENSe :CORRection:COLLect:THRU:ADDition:FULL3:PORTs <port3> <Ch> SENSe :CORRection:COLLect:THRU:ADDition:FULL3:PORTs? Selects the pors to comlete the 3–port calibration in the thru addition function. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <port1> the first port number from 1 to 4 <port2>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:FULL3:COMP <Ch> SENSe :CORRection:COLLect:THRU:ADDition:FULL3:COMPlete Completes the full 3-port calibration between the ports specified by the command The ports SENS:CORR:COLL:THRU:ADD:FULL3:PORT. must be calibrated using the full 1-port calibration in advance. The necessary number of the thru measurement must be accomplished by the command SENS:CORR:COLL:THRU:ADD:FULL3:ACQ.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:COLL:THRU:ADD:FULL4:COMP <Ch> SENSe :CORRection:COLLect:THRU:ADDition:FULL4:COMPlete Completes the full 4-port calibration The ports must be calibrated using the full 1-port calibration in advance. The necessary number of the thru measurement must be accomplished by the command SENS:CORR:COLL:THRU:ADD:FULL4:ACQ.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:AUTO:CONF <Ch> SENSe :CORRection:EXTension:AUTO:CONFig {CSPN|AMKR|USPN} <Ch> SENSe :CORRection:EXTension:AUTO:CONFig? Specifies the frequency range used for calculation of the results of the Auto Port Extension function. Description (command/query) The active trace of channel <Ch>, Target <Ch>={[1]|2|...16} CSPN : Uses current frequency span AMKR...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:AUTO:DCOF <Ch> SENSe :CORRection:EXTension:AUTO:DCOFfset {OFF|ON|0|1} <Ch> SENSe :CORRection:EXTension:AUTO:DCOFfset? Turns ON/OFF the usage of "Loss at DC" value for the results of the auto port extension function. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:AUTO:MEAS <Ch> SENSe :CORRection:EXTension:AUTO:MEASure {SHORt|OPEN} Performs measurement of the standard "SHORT" or "OPEN", automatically calculates and sets the parameters of the Port Extension. The set of ports for which this command is executed is determined Description by the SENS:CORR:EXT:AUTO:PORTcommand.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:AUTO:PORT <Ch> <Pt> SENSe :CORRection:EXTension:AUTO:PORT {OFF|ON|0|1} <Ch> <Pt> SENSe :CORRection:EXTension:AUTO:PORT Turns ON/OFF the status of the auto port extension for the Port number <Pt>. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA : ON {ON|1} Parameter...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:AUTO:STAR <Ch> <frequency> SENSe :CORRection:EXTension:AUTO:STARt <Ch> SENSe :CORRection:EXTension:AUTO:STARt? Sets or reads out the start value of the user span of the auto port extension function. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} the user span start Parameter <frequency>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:AUTO:STOP <Ch> <frequency> SENSe :CORRection:EXTension:AUTO:STOP <Ch> SENSe :CORRection:EXTension:AUTO:STOP? Sets or reads out the stop value of the user span of the auto port extension function. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} the user span stop Parameter <frequency>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:PORT:FREQ <Ch> <Pt> <frequency> SENSe :CORRection:EXTension:PORT :FREQuency{[1]|2} <Ch> <Pt> SENSe :CORRection:EXTension:PORT :FREQuency{[1]|2}? Sets or reads out the values of the frequency 1 and frequency 2 to calculate the loss for the port extension function. Description (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:PORT:INCL <Ch> <Pt> SENSe :CORRection:EXTension:PORT :INCLude{[1]|2}[:STATe] {OFF|ON|0|1} <Ch> <Pt> SENSe :CORRection:EXTension:PORT :INCLude{[1]|2}[:STATe]? Turns ON/OFF the loss compensation of the loss 1 and loss 2 for the port extension function. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:PORT:LDC <Ch> <Pt> <numeric> SENSe :CORRection:EXTension:PORT :LDC <Ch> <Pt> SENSe :CORRection:EXTension:PORT :LDC? Sets or reads out the loss value at DC for the port extension function. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA <numeric>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:PORT:LOSS <Ch> <Pt> <numeric> SENSe :CORRection:EXTension:PORT :LOSS{[1]|2} <Ch> <Pt> SENSe :CORRection:EXTension:PORT :LOSS{[1]|2}? Sets or reads out the values of the loss 1 and loss 2 for the port extension function. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:EXT:PORT:TIME <Ch> <Pt> <time> SENSe :CORRection:EXTension:PORT :TIME <Ch> <Pt> SENSe :CORRection:EXTension:PORT :TIME? Sets or reads out the electrical delay value for the port extension function. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA <time>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:INF? <Ch> <rcvport> <srcport> SENSe :CORRection:INFormation? Reads out the information string of the calibration acting between the <rcvport> and <srcport>. Description (query only) Channel <Ch>, Target <Ch>={[1]|2|...16} <rcvport> the receiver port number from 1 to 2 (or 4) Parameter <srcport>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:CLE <Ch> SENSe :CORRection:OFFSet:CLEar Clears the scalar mixer calibration coefficient table. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} Equivalent Softkeys None SENS:CORR:OFFS:COLL:CLE <Ch> SENSe :CORRection:OFFSet:COLLect:CLEar Clears the calibration measurement data of scalar mixer calibration when the frequency offset feature is ON.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:COLL:LOAD <Ch> <numeric1> <numeric2> SENSe :CORRection:OFFSet:COLLect[:ACQuire]:LOAD Measures the calibration data of the load standard of the specified port when the frequency offset feature is on for scalar mixer Description calibration. (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric1>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:COLL:METH:SMIX2 <Ch> <numeric1> <numeric2> SENSe :CORRection:OFFSet:COLLect:METHod:SMIX2 Selects the ports and sets the scalar mixer calibration type when the frequency offset feature is on for the calculation of the calibration coefficients on completion of the calibration executed by the Description command.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:COLL:PMETer <Ch> <numeric1> <numeric2> SENSe :CORRection:OFFSet:COLLect[:ACQuire]:PMETer <numeric3> Measures the scalar-mixer calibration data using the power meter when the frequency offset feature is ON. Description (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric1> Measurement port number <numeric2>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:COLL:SHOR <Ch> <numeric1> <numeric2> SENSe :CORRection:OFFSet:COLLect[:ACQuire]:SHORt Measures the calibration data of the short standard of the specified port when the frequency offset feature is on for scalar mixer Description calibration. (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric1>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:COLL:THRU <Ch> <numeric1> <numeric2> SENSe :CORRection:OFFSet:COLLect[:ACQuire]:THRU Measures the calibration data of the thru standard of the specified port when the frequency offset feature is on for scalar mixer Description calibration. (no query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric1>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:OFFS:COLL:SAVE <Ch> SENSe :CORRection:OFFSet:COLLect:SAVE Calculates the calibration coefficient for the selected calibration type (scalar mixer calibration only) from the calibration data measured with the frequency offset feature is ON. Description If this command is executed before all necessary calibration data for calculating the calibration coefficient is measured, an error occurs when executed.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:REC <Ch> <Pt> SENSe :CORRection:RECeiver [:STATe] {OFF|ON|0|1} <Ch> <Pt> SENSe :CORRection:RECeiver [:STATe]? Turns ON/OFF the receiver correction of the specified port. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA : ON {ON|1} Parameter...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:REC:COLL:RCH:ACQ <Ch> <Pt> SENSe :CORRection:RECeiver :COLLect:RCHannel:ACQuire Executes receiver calibration of the reference receiver of the specified port <Pt>.The reference receiver calibration uses its own Description port <Pt> as the source port. (no query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:REC:OFFS:AMPL <Ch> <Pt> <numeric> SENSe :CORRection:RECeiver :OFFSET:AMPLitude <Ch> <Pt> SENSe :CORRection:RECeiver :OFFSET:AMPLitude Sets or reads out the power offset value when the Receiver Calibration is performed. Receiver calibration is done at the Description condition of <source power> + < power offset>. (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:TRAN:TIME:LOSS <Ch> <numeric> SENSe :CORRection:TRANsform:TIME:LOSS <Ch> SENSe :CORRection:TRANsform:TIME:LOSS? Sets or reads out the cable loss value for the cable correction function, when the time domain transformation function is turned ON Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:TRAN:TIME:STAT <Ch> SENSe :CORRection:TRANsform:TIME:STATe {OFF|ON|0|1} <Ch> SENSe :CORRection:TRANsform:TIME:STATe? Turns ON/OFF the cable correction when the time domain transformation function is turned ON Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1}...
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:TRIG:FREE <Ch> SENSe :CORRection:TRIGger:FREE[:STATe] {OFF|ON|0|1} <Ch> SENSe :CORRection:TRIGger:FREE[:STATe]? Enables/disables the internal trigger source for calibration. If the internal trigger source for calibration is enabled then a command of the calibration standard measurement starts the measurement immediately.
S2VNA and S4VNA SCPI Programming Manual SENS:CORR:TYPE? <Ch> <Tr> SENSe :CORRection:TYPE Reads out the applied calibration type and the port numbers for the specified trace. Description (query only) Trace <Tr> of channel <Ch>, Target <Tr>={[1]|2|...16} <Ch>={[1]|2|...16} {RESPO|RESPS|RESPT|SOLT1|SOLT2|1PATH|NONE},<srcport>, <rcvport> Where: RESPO : Response (Open) RESPS : Response (Short)
S2VNA and S4VNA SCPI Programming Manual SENS:DATA:CORR? <Ch> <char> SENSe :DATA:CORRdata? Reads out the corrected S-parameter data array or the corrected receiver data array. The type of the array entries is a complex number. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:DATA:RAWD? <Ch> <char> SENSe :DATA:RAWData? Reads out the raw S-parameter data array or the raw receiver data array. The type of the array entries is a complex number. The array size is 2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SENS:FREQ <Ch> <frequency> SENSe :FREQuency[:CW] <Ch> <frequency> SENSe :FREQuency[:FIXed] <Ch> SENSe :FREQuency[:CW]? <Ch> SENSe :FREQuency[:FIXed]? Sets or reads out the fixed frequency value when the power sweep type selected. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <frequency>...
S2VNA and S4VNA SCPI Programming Manual SENS:FREQ:DATA? <Ch> SENSe :FREQuency:DATA? Reads out the frequency array of the measurement points. The array size is N, where N is the number of measurement points. For the n–th point, where n from 1 to N: Description <numeric n>...
S2VNA and S4VNA SCPI Programming Manual SENS:FREQ:CENT <Ch> <frequency> SENSe :FREQuency:CENTer <Ch> SENSe :FREQuency:CENTer? Sets or reads out the stimulus center value of the sweep range for linear or logarithmic sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <frequency> the stimulus center value within the frequency limits of Parameter the analyzer.
S2VNA and S4VNA SCPI Programming Manual SENS:FREQ:SPAN <Ch> <frequency> SENSe :FREQuency:SPAN <Ch> SENSe :FREQuency:SPAN? Sets or reads out the stimulus span value of the sweep range for linear or logarithmic sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <frequency> the stimulus span value from 0 to the maximum frequency Parameter span of the analyzer.
S2VNA and S4VNA SCPI Programming Manual SENS:FREQ:STAR <Ch> <frequency> SENSe :FREQuency:STARt <Ch> SENSe :FREQuency:STARt? Sets or reads out the stimulus start value of the sweep range for linear or logarithmic sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <frequency> the stimulus start value within the frequency limits of the Parameter analyzer.
S2VNA and S4VNA SCPI Programming Manual SENS:FREQ: STOP <Ch> <frequency> SENSe :FREQuency:STOP <Ch> SENSe :FREQuency:STOP? Sets or reads out the stimulus stop value of the sweep range for linear or logarithmic sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <frequency> the stimulus stop value within the frequency limits of the Parameter analyzer..
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS <Ch> SENSe :OFFSet[:STATe] {OFF|ON|0|1} <Ch> SENSe :OFFSet[:STATe]? Turns ON/OFF the frequency offset feature. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF {OFF|0} Query Response {0|1} Preset Value Stimulus > Frequency Offset > Frequency Offset Equivalent Softkeys SENS:OFFS:PORT:DATA? <Ch>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:PORT:DIV <Ch> <Pt> <numeric> SENSe :OFFSet:PORT [:FREQuency]:DIVisor <Ch> <Pt> SENSe :OFFSet:PORT [:FREQuency]:DIVisor? Sets or reads out the basic frequency range divisor of port <Pt> when the frequency offset feature is ON and offset type is "PORT". Description (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:PORT:MULT <Ch> <Pt> <numeric> SENSe :OFFSet:PORT [:FREQuency]:MULTiplier <Ch> <Pt> SENSe :OFFSet:PORT [:FREQuency]:MULTiplier? Sets or reads out the basic frequency range multiplier of port <Pt> when the frequency offset feature is ON and offset type is "PORT". Description (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:PORT:OFFS <Ch> <Pt> <frequency> SENSe :OFFSet:PORT [:FREQuency]:OFFSet <Ch> <Pt> SENSe :OFFSet:PORT [:FREQuency]:OFFSet? Sets or reads out the basic frequency range offset of port <Pt> when the frequency offset feature is ON and offset type is "PORT". Description (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:PORT:STAR <Ch> <Pt> <frequency> SENSe :OFFSet:PORT [:FREQuency]:STARt <Ch> <Pt> SENSe :OFFSet:PORT [:FREQuency]:STARt? Sets or reads out the frequency sweep start of port <Pt> when the frequency offset feature is ON and offset type is "PORT". Description (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:PORT:STOP <Ch> <Pt> <frequency> SENSe :OFFSet:PORT [:FREQuency]:STOP <Ch> <Pt> SENSe :OFFSet:PORT [:FREQuency]:STOP? Sets or reads out the frequency sweep stop of port <Pt> when the frequency offset feature is ON and offset type is "PORT". Description (command/query) Port <Pt>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:REC:DATA? <Ch> SENSe :OFFSet:RECeiver[:FREQuency]:DATA? Reads out the array of the receiver frequency points when the frequency offset feature is ON and offset type is "SRCRcv". The array size is N, where N is the number of measurement points. Description For the n–th point, where n from 1 to N: <numeric n>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:REC:DIV <Ch> <numeric> SENSe :OFFSet:RECeiver[:FREQuency]:DIVisor <Ch> SENSe :OFFSet:RECeiver[:FREQuency]:DIVisor? Sets or reads out the basic frequency range divisor to get the receiver frequency when the frequency offset feature is ON and Description offset type is "SRCRcv". (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:REC:MULT <Ch> <numeric> SENSe :OFFSet:RECeiver[:FREQuency]:MULTiplier <Ch> SENSe :OFFSet:RECeiver[:FREQuency]:MULTiplier? Sets or reads out the basic frequency range multiplier to get the receiver frequency when the frequency offset feature is ON and Description offset type is "SRCRcv". (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:REC:OFFS <Ch> <frequency> SENSe :OFFSet:RECeiver[:FREQuency]:OFFSet <Ch> SENSe :OFFSet:RECeiver[:FREQuency]:OFFSet? Sets or reads out the basic frequency range offset to get the receiver frequency when the frequency offset feature is ON and Description offset type is "SRCRcv". (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:REC:STAR <Ch> <frequency> SENSe :OFFSet:RECeiver[:FREQuency]:STARt <Ch> SENSe :OFFSet:RECeiver[:FREQuency]:STARt? Sets or reads out the frequency sweep start of the receivers when the frequency offset feature is ON and offset type is "SRCRcv". Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} frequency sweep start of receivers...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:REC:STOP <Ch> <frequency> SENSe :OFFSet:RECeiver[:FREQuency]:STOP <Ch> SENSe :OFFSet:RECeiver[:FREQuency]:STOP? Sets or reads out the frequency sweep stop of the receivers when the frequency offset feature is ON and offset type is "SRCRcv". Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} frequency sweep stop of receivers...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:SOUR:DATA? <Ch> SENSe :OFFSet:SOURce[:FREQuency]:DATA? Reads out the array of the frequency points of the source when the frequency offset feature is ON and offset type is "SRCRcv". The array size is N, where N is the number of measurement points. Description For the n–th point, where n from 1 to N: <numeric n>...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:SOUR:DIV <Ch> <numeric> SENSe :OFFSet:SOURce[:FREQuency]:DIVisor <Ch> SENSe :OFFSet:SOURce[:FREQuency]:DIVisor? Sets or reads out the basic frequency range divisor to get the source frequency when the frequency offset feature is ON and Description offset type is "SRCRcv". (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:SOUR:MULT <Ch> <numeric> SENSe :OFFSet:SOURce[:FREQuency]:MULTiplier <Ch> SENSe :OFFSet:SOURce[:FREQuency]:MULTiplier? Sets or reads out the basic frequency range multiplier to get the source frequency when the frequency offset feature is ON and Description offset type is "SRCRcv". (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:SOUR:OFFS <Ch> <frequency> SENSe :OFFSet:SOURce[:FREQuency]:OFFSet <Ch> SENSe :OFFSet:SOURce[:FREQuency]:OFFSet? Sets or reads out the basic frequency range offset to get the source frequency when the frequency offset feature is ON and offset type Description is "SRCRcv". (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:SOUR:STAR <Ch> <frequency> SENSe :OFFSet:SOURce[:FREQuency]:STARt <Ch> SENSe :OFFSet:SOURce[:FREQuency]:STARt? Sets or reads out the frequency sweep start of the source when the frequency offset feature is ON and offset type is "SRCRcv". Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} frequency sweep start of the source...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:SOUR:STOP <Ch> <frequency> SENSe :OFFSet:SOURce[:FREQuency]:STOP <Ch> SENSe :OFFSet:SOURce[:FREQuency]:STOP? Sets or reads out the frequency sweep stop of the source when the frequency offset feature is ON and offset type is "SRCRcv". Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} frequency sweep stop of the source...
S2VNA and S4VNA SCPI Programming Manual SENS:OFFS:TYPE <Ch> <char> SENSe :OFFSet:TYPE <Ch> SENSe :OFFSet:TYPE? Sets or reads out the frequency offset type when the frequency offset feature is ON. There are two frequency offset types: "Port1/Port2" and "Source/Receivers". First offset type offsets ports Description against each other.
S2VNA and S4VNA SCPI Programming Manual SENS:ROSC:SOUR <Ch> <char> SENSe :ROSCillator:SOURce <Ch> SENSe :ROSCillator:SOURce? Sets or reads out the internal or external source of the reference frequency of 10 MHz. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <char> Choose from: INTernal : Internal source of the reference frequency Parameter EXTernal...
S2VNA and S4VNA SCPI Programming Manual SENS:SEGM:DATA <Ch> <numeric list> SENSe :SEGMent:DATA <Ch> SENSe :SEGMent:DATA? Sets or reads out the array of the segment sweep table. The array has the following format: { <Buf>, <Flag1>, <Flag2>, <Flag3>, <Flag4>, <Flag5>, <N>, <Start 1>, <Stop 1>, <NOP 1>...
S2VNA and S4VNA SCPI Programming Manual SENS:SWE:POIN <Ch> <numeric> SENSe :SWEep:POINts <Ch> SENSe :SWEep:POINts? Sets or reads out the number of measurement points. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> the number of measurement points from 2 to maximum limit Parameter of the analyzer.
S2VNA and S4VNA SCPI Programming Manual SENS:SWE:POIN:TIME <Ch> <time> SENSe :SWEep:POINt:TIME <Ch> SENSe :SWEep:POINt:TIME? Sets or reads out the delay before measurement in each measurement point. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <time> the measurement delay value from 0 to 0.3 sec. Parameter s (second) Unit...
S2VNA and S4VNA SCPI Programming Manual SENS:SWE:TYPE <Ch> <char> SENSe :SWEep:TYPE <Ch> SENSe :SWEep:TYPE? Sets or reads out the sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} sweep type <char> Specifies the LINear : Linear frequency sweep LOGarithmic : Logarithmic frequency sweep Parameter SEGMent : Segment frequency sweep...
S2VNA and S4VNA SCPI Programming Manual SENS:VOLT:DC:RANG:UPP <Ch> <numeric> SENSe :VOLTage{[1]|2}:DC:RANGe:UPPer <Ch> SENSe :VOLTage{[1]|2}:DC:RANGe:UPPer? Sets or reads out the DC voltage range at the connector AUX1 or AUX2. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} DC voltage range 10V or 1V <numeric>...
S2VNA and S4VNA SCPI Programming Manual SERV:CHAN:COUN? SERVice:CHANnel:COUNt? Reads out the maximum number of the channels. Description (query only) <numeric> Query Response None Equivalent Softkeys SERV:CHAN:TRAC:ACT? <Ch> SERVice:CHANnel :TRACe:ACTive? Read out the active trace number of the channel. Description (query only) Channel <Ch>, Target <Ch>={[1]|2|...16}...
S2VNA and S4VNA SCPI Programming Manual SERV:PORT:COUN? SERVice:PORT:COUNt? Reads out the number of the ports. Description (query only) <numeric> Query Response None Equivalent Softkeys SERV:SWE:FREQ:MAX? SERVice:SWEep:FREQuency:MAXimum? Reads out the upper limit of the measurement frequency. Description (query only) <numeric> Query Response Hz (Hertz) Unit None...
S2VNA and S4VNA SCPI Programming Manual SERV:SWE:POIN? SERVice:SWEep:POINts? Reads out the maximum number of the measurement points. Description (query only) <numeric> Query Response None Equivalent Softkeys SOUR:AUX <Ch> SOURce :AUXiliary[:STATe] {OFF|ON|0|1} <Ch> SOURce :AUXiliary[:STATe]? Turns ON/OFF an auxiliary RF source. The auxiliary RF source takes one port of the 4 port VNA to output the second RF source with programmable frequency and power (4-port VNA only).
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:FREQ:DIV <Ch> <numeric> SOURce :AUXiliary:FREQuency:DIVisor <Ch> SOURce :AUXiliary:FREQuency:DIVisor? Sets or reads out the basic frequency range divisor to derive the frequency of the auxiliary RF source (4-port VNA only). Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:FREQ:MULT <Ch> <numeric> SOURce :AUXiliary:FREQuency:MULTiplier <Ch> SOURce :AUXiliary:FREQuency:MULTiplier? Sets or reads out the basic frequency range multiplier to derive the frequency of the auxiliary RF source (4-port VNA only). Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:FREQ:OFFS <Ch> <numeric> SOURce :AUXiliary:FREQuency:MULTiplier <Ch> SOURce :AUXiliary:FREQuency:MULTiplier? Sets or reads out the basic frequency range offset to derive the frequency of the auxiliary RF source (4-port VNA only). Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric>...
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:FREQ:STAR <Ch> <numeric> SOURce :AUXiliary:FREQuency:STARt <Ch> SOURce :AUXiliary:FREQuency:STARt? Sets or reads out the start of the frequency range of the auxiliary RF source (4-port VNA only). When set the multiplier and offset Description values are automatically corrected. (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:FREQ:STOP <Ch> <numeric> SOURce :AUXiliary:FREQuency:STOP <Ch> SOURce :AUXiliary:FREQuency:STOP? Sets or reads out the stop of the frequency range of the auxiliary RF source (4-port VNA only). When set the multiplier and offset Description values are automatically corrected. (command/query) Channel <Ch>, Target...
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:PORT <Ch> <numeric> SOURce :AUXiliary:PORT <Ch> SOURce :AUXiliary:PORT? Sets or reads out the port number assigned to the auxiliary RF source when it is turned on (4-port VNA only). The auxiliary port can not be used for measurements. Ports are divided into two groups: 1, 2 and 3, 4 ports.
S2VNA and S4VNA SCPI Programming Manual SOUR:AUX:POW <Ch> <numeric> SOURce :AUXiliary:POWer[:AMPLitude] <Ch> SOURce :AUXiliary:POWer[:AMPLitude]? Sets or reads out the power of the auxiliary RF source (4-port VNA only). Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} of the auxiliary RF source <numeric> the power level within the Parameter power limits of the analyzer;...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW <Ch> <power> SOURce :POWer[:LEVel][:IMMediate][:AMPLitude] <Ch> SOURce :POWer[:LEVel][:IMMediate][:AMPLitude]? Sets or reads out the power level for the frequency sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <power> the power level within the power limits of the analyzer. Parameter dBm (decibels above 1 milliwatt) Unit...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:CENT <Ch> <power> SOURce :POWer:CENTer <Ch> SOURce :POWer:CENTer? Sets or reads out the center value of the power sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <power> the power level within the power limits of the analyzer. Parameter dBm (decibels above 1 milliwatt) Unit...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:PORT <Ch> <Pt> <power> SOURce :POWer:PORT [:LEVel][:IMMediate][:AMPLitude] <Ch> <Pt> SOURce :POWer:PORT [:LEVel][:IMMediate][:AMPLitude]? Sets or reads out the power level of each port for the frequency sweep type when the port couple feature is set to OFF by the Description command.
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:PORT:CORR <Ch> <Pt> SOURce :POWer:PORT :CORRection[:STATe] {OFF|ON|0|1} <Ch> <Pt> SOURce :POWer:PORT :CORRection[:STATe]? Turns ON/OFF the power correction. Description (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA : ON {ON|1} Parameter : OFF...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:PORT:CORR:COLL:TABL:LOSS:DATA <Ch> <Pt> <numeric SOURce :POWer:PORT :CORRection:COLLect:TABLe:LOSS:DATA list> <Ch> <Pt> SOURce :POWer:PORT :CORRection:COLLect:TABLe:LOSS:DATA? Sets/gets the loss compensation table used when the power calibration is executed by the command. SOUR:POW:PORT:CORR:COLL Description (command/query) The array size is 1+2N, where N is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:PORT:CORR:COLL:TABL:LOSS <Ch> <Pt> SOURce :POWer:PORT :CORRection:COLLect:TABLe:LOSS[:STATe] {OFF|ON|0|1} <Ch> <Pt> SOURce :POWer:PORT :CORRection:COLLect:TABLe:LOSS[:STATe]? Turns ON/OFF the state of the loss compensation used when the power calibration is executed by the SOUR:POW:PORT:CORR:COLL Description command. (command/query) Port <Pt> of channel <Ch>, Target <Ch>={[1]|2|...16} <Pt>={[1]|2} for S2VNA or {[1]|2|3|4} for S4VNA...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:PORT:CORR:DATA <Ch> <Pt> <numeric list> SOURce :POWer:PORT :CORRection:DATA <Ch> <Pt> SOURce :POWer:PORT :CORRection:DATA? Sets or reads out the power correction array (result of power calibration executed by the command). SOUR:POW:PORT:CORR:COLL Description (command/query) The array size is NOP, where NOP is the number of measurement points.
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:PORT:COUP <Ch> SOURce :POWer:PORT:COUPle {OFF|ON|0|1} <Ch> SOURce :POWer:PORT:COUPle? Turns ON/OFF the port power couple. Setting the port power couple to OFF allows independent power level setting for each Description port. (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1}...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:SLOP <Ch> <numeric> SOURce :POWer[:LEVel]:SLOPe[:DATA] <Ch> SOURce :POWer[:LEVel]:SLOPe[:DATA]? Sets or reads out the power slope value for the frequency sweep type. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> the power slope value from –2 to +2 Parameter dB/GHz (decibel/gigahertz) Unit...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:SLOP:STAT <Ch> SOURce :POWer[:LEVel]:SLOPe:STATe {OFF|ON|0|1} <Ch> SOURce :POWer[:LEVel]:SLOPe:STATe? Turns ON/OFF the power slope. The power slope is valid for the frequency sweep type: Linear, Logarithimic, Segment. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} : ON {ON|1} Parameter : OFF...
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:SPAN <Ch> <power> SOURce :POWer:SPAN <Ch> SOURce :POWer:SPAN? Sets or reads out the power span when the power sweep type is active. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <power> the power sweep span value from 0 to maximum limit of the Parameter analyzer dBm (decibels above 1 milliwatt)
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:STAR <Ch> <power> SOURce :POWer:STARt <Ch> SOURce :POWer:STARt? Sets or reads out the power sweep start value when the power sweep type is active. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <power> the power sweep start value within the power limits of the Parameter analyzer dBm (decibels above 1 milliwatt)
S2VNA and S4VNA SCPI Programming Manual SOUR:POW:STOP <Ch> <power> SOURce :POWer:STOP <Ch> SOURce :POWer:STOP? Sets or reads out the power sweep stop value when the power sweep type is active. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <power> the power sweep stop value within the power limits of the Parameter analyzer dBm (decibels above 1 milliwatt)
S2VNA and S4VNA SCPI Programming Manual STAT:OPER:COND? STATus:OPERation:CONDition? Reads out the value of the Operation Status Condition Register. Description (query only) Status Reporting System Target <numeric> Query Response None Equivalent Softkeys STAT:OPER:ENAB <numeric> STATus:OPERation:ENABle STATus:OPERation:ENABle? Sets or reads out the value of the Operation Status Enable Register. Description (command/query) Status Reporting System...
S2VNA and S4VNA SCPI Programming Manual STAT:OPER:NTR <numeric> STATus:OPERation:NTRansition STATus:OPERation:NTRansition? Sets or reads out the value of the Negative transition filter of the Operation Status Register. Description (command/query) Status Reporting System Target <numeric> from 0 to 65535 Parameter <numeric> Query Response Preset Value None Equivalent Softkeys...
S2VNA and S4VNA SCPI Programming Manual STAT:PRES STATus:PRESet Resets all the status registers to the factory settings. Description (no query) Status Reporting System Target <numeric> Query Response None Equivalent Softkeys STAT:QUES:COND? STATus:QUEStionable:CONDition? Reads out the value of the Questionable Status Condition Register. Description (query only) Status Reporting System...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:ENAB <numeric> STATus:QUEStionable:ENABle STATus:QUEStionable:ENABle? Sets or reads out the value of the Questionable Status Enable Register. Description (command/query) Status Reporting System Target <numeric> from 0 to 65535 Parameter <numeric> Query Response Preset Value None Equivalent Softkeys STAT:QUES:LIM:CHAN:COND? <Ch>...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:LIM:CHAN:ENAB <Ch> <numeric> STATus:QUEStionable:LIMit:CHANnel :ENABle <Ch> STATus:QUEStionable:LIMit:CHANnel :ENABle? Sets or reads out the value of the Questionable Limit Channel Status Enable Register. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> from 0 to 65535 Parameter <numeric>...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:LIM:CHAN:PTR <Ch> <numeric> STATus:QUEStionable:LIMit:CHANnel :PTRansition <Ch> STATus:QUEStionable:LIMit:CHANnel :PTRansition? Sets or reads out the value of the Positive transition filter of the Questionable Limit Channel Status Register. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> from 0 to 65535 Parameter <numeric>...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:LIM:COND? STATus:QUEStionable:LIMit:CONDition? Reads out the value of the Questionable Limit Status Condition Register. Description (query only) Status Reporting System Target Query Response <numeric> None Equivalent Softkeys STAT:QUES:LIM:ENAB <numeric> STATus:QUEStionable:LIMit:ENABle STATus:QUEStionable:LIMit:ENABle? Sets or reads out the value of the Questionable Limit Status Enable Register.
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:LIM:NTR <numeric> STATus:QUEStionable:LIMit:NTRansition STATus:QUEStionable:LIMit:NTRansition? Sets or reads out the value of the Negative transition filter of the Questionable Limit Status Register. Description (command/query) Status Reporting System Target <numeric> from 0 to 65535 Parameter <numeric> Query Response Preset Value None...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:LIM? STATus:QUEStionable:LIMit[:EVENt]? Reads out the value of the Questionable Limit Status Event Register. Description (query only) Status Reporting System Target Query Response <numeric> None Equivalent Softkeys STAT:QUES:NTR <numeric> STATus:QUEStionable:NTRansition STATus:QUEStionable:NTRansition? Sets or reads out the value of the Negative transition filter of the Questionable Status Register.
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:PTR <numeric> STATus:QUEStionable:PTRansition STATus:QUEStionable:PTRansition? Sets or reads out the value of the Positive transition filter of the Questionable Status Register. Description (command/query) Status Reporting System Target <numeric> from 0 to 65535 Parameter <numeric> Query Response 65535 Preset Value None...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:RLIM:CHAN:ENAB <Ch> <numeric> STATus:QUEStionable:RLIMit:CHANnel :ENABle <Ch> STATus:QUEStionable:RLIMit:CHANnel :ENABle? Sets or reads out the value of the Questionable Ripple Limit Channel Status Enable Register. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> from 0 to 65535 Parameter <numeric>...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:RLIM:CHAN:PTR <Ch> <numeric> STATus:QUEStionable:RLIMit:CHANnel :PTRansition <Ch> STATus:QUEStionable:RLIMit:CHANnel :PTRansition? Sets or reads out the value of the Positive transition filter of the Questionable Ripple Limit Channel Status Register. Description (command/query) Channel <Ch>, Target <Ch>={[1]|2|...16} <numeric> from 0 to 65535 Parameter <numeric>...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:RLIM:COND? STATus:QUEStionable:RLIMit:CONDition? Reads out the value of the Questionable Ripple Limit Status Condition Register. Description (query only) Status Reporting System Target Query Response <numeric> None Equivalent Softkeys STAT:QUES:RLIM:ENAB <numeric> STATus:QUEStionable:RLIMit:ENABle STATus:QUEStionable:RLIMit:ENABle? Sets or reads out the value of the Questionable Ripple Limit Status Enable Register.
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:RLIM:NTR <numeric> STATus:QUEStionable:RLIMit:NTRansition STATus:QUEStionable:RLIMit:NTRansition? Sets or reads out the value of the Negative transition filter of the Questionable Ripple Limit Status Register. Description (command/query) Status Reporting System Target <numeric> from 0 to 65535 Parameter <numeric>...
S2VNA and S4VNA SCPI Programming Manual STAT:QUES:RLIM? STATus:QUEStionable:RLIMit[:EVENt]? Reads out the value of the Questionable Ripple Limit Status Event Register. Description (query only) Status Reporting System Target Query Response <numeric> None Equivalent Softkeys STAT:QUES? STATus:QUEStionable[:EVENt]? Reads out the value of the Questionable Status Event Register. Description (query only) Status Reporting System...
S2VNA and S4VNA SCPI Programming Manual SYST:BEEP:COMP:STAT SYSTem:BEEPer:COMPlete:STATe {OFF|ON|0|1} SYSTem:BEEPer:COMPlete:STATe? Turns ON/OFF the beeper notifying of the completion of the operation. Description (command/query) : ON {ON|1} Parameter {OFF|0} : OFF Query Response {0|1} Preset Value Equivalent Softkeys System > Misc Setup > Beeper > Beep complete SYST:BEEP:WARN:IMM SYSTem:BEEPer:WARNing:IMMediate Generates a beep to notify of warning.
S2VNA and S4VNA SCPI Programming Manual SYST:BEEP:WARN:STAT SYSTem:BEEPer:WARNing:STATe {OFF|ON|0|1} SYSTem:BEEPer:WARNing:STATe? Turns ON/OFF the beeper notifying of warning. Description (command/query) : ON {ON|1} Parameter {OFF|0} : OFF Query Response {0|1} Preset Value Equivalent Softkeys System > Misc Setup > Beeper > Beep Warning SYST:COMM:ECAL:TEMP:SENS? SYSTem:COMMunicate:ECAL:TEMPerature:SENSor? Reads out the temperature of the AutoCal module connected to the...
S2VNA and S4VNA SCPI Programming Manual SYST:COMM:ECAL:IMP <port> <char> SYSTem:COMMunicate:ECAL:IMPedance <port> SYSTem:COMMunicate:ECAL:IMPedance? Sets or reads out the impedance state of the specified port of AutoCal module. Description (command/query) : Port number of the AutoCal module <port> math operation <char> Specifies the OPEN : OPEN impedance state SHORt...
S2VNA and S4VNA SCPI Programming Manual SYST:COMM:ECAL:CHEC SYSTem:COMMunicate:ECAL:CHECk Sets the CHECK state of AutoCal module (command only). Description None Equivalent Softkeys SYST:CORR SYSTem:CORRection[:STATe] {OFF|ON|0|1} SYSTem:CORRection[:STATe]? Turns ON/OFF the system correction. The system correction is the factory full 1-port calibration performed at the port connectors. Description (command/query) : ON...
S2VNA and S4VNA SCPI Programming Manual SYST:CYCL:TIME:MEAS? SYSTem:CYCLe:TIME:MEASurement? Reads out the measured cycle time. The cycle time is the interval between the start of two adjacent sweeps. The cycle time is averaged by an exponential window with a time constant of about Description 0.5 sec.
S2VNA and S4VNA SCPI Programming Manual SYST:ERR? SYSTem:ERRor[:NEXT]? Reads out the error message of the error occurred when executing the SCPI commands, from the FIFO (First In First Out) error queue stored in the Analyzer. The read out error is deleted from the error Description queue.
S2VNA and S4VNA SCPI Programming Manual SYST:FREQ:EXT:RFP:PSL <numeric> SYSTem:FREQuency:EXTender:RFPort:PSLope SYSTem:FREQuency:EXTender:RFPort:PSLope? Sets or reads out the RF Port Power Slope when analyzer is configured to work with a frequency extender. Description (command/query) <numeric> the slope value. Parameter dB/GHz (decibel / gigahertz) Unit Sets the value of the limit, which is closer to the specified value.
S2VNA and S4VNA SCPI Programming Manual SYST:FREQ:EXT:LOP:POW <numeric> SYSTem:FREQuency:EXTender:LOPort:POWer SYSTem:FREQuency:EXTender:LOPort:POWer? Sets or reads out the LO Port Power when analyzer is configured to work with a frequency extender. Description (command/query) <numeric> the power value. Parameter dBm (decibel relative to 1 milliwatt) Unit Sets the value of the limit, which is closer to the specified value.
S2VNA and S4VNA SCPI Programming Manual SYST:FREQ:EXT:LOP:PSL <numeric> SYSTem:FREQuency:EXTender:LOPort:PSLope SYSTem:FREQuency:EXTender:LOPort:PSLope? Sets or reads out the LO Port Power Slope when analyzer is configured to work with a frequency extender. Description (command/query) <numeric> the slope value. Parameter dB/GHz (decibel / gigahertz) Unit Sets the value of the limit, which is closer to the specified value.
S2VNA and S4VNA SCPI Programming Manual SYST:FREQ:EXT:TYPE <char> SYSTem:FREQuency:EXTender:TYPE SYSTem:FREQuency:EXTender:TYPE? Selects or reads the frequency extender type. When the new type is selected the connection has been closed because of the program Description restart. (command/query) <char> Choose from: NONE : None FEV15 : FEV-15 50 –...
S2VNA and S4VNA SCPI Programming Manual SYST:FREQ:EXT:PORT:CONN? SYSTem:FREQuency:EXTender:PORT< >:CONNect? Reads out whether the frequency extender is connected to the port number <Pt>. The actual state is read out when the FET-1854 is configured. Always reads 1 when other type of frequency extender Description is configured.
S2VNA and S4VNA SCPI Programming Manual SYST:LOC SYSTem:LOCal Sets the Analyzer to the local operation mode, when all the keys on the front panel, mouse and the touch screen are active. Description (no query) SYST:REM Related Commands SYST:RWL None Equivalent Softkeys SYST:PORT:SWIT:DEL SYSTem:PORT:SWITchover:DELay[:STATe] {OFF|ON|0|1} SYSTem:PORT:SWITchover:DELay[:STATe]?
S2VNA and S4VNA SCPI Programming Manual SYST:PRES SYSTem:PRESet Resets the Analyzer to the factory settings. Description (no query) The difference from the* command is that the trigger is set to RST: Notes the Continuous trigger mode. *RST Related Commands System > Preset > OK Equivalent Softkeys SYST:READy? SYSTem:READy[:STATe]?
S2VNA and S4VNA SCPI Programming Manual SYST:REM SYSTem:REMote Sets the Analyzer to the remote operation mode, when all the keys on the front panel, mouse and the touch screen are not active, except for one key labeled Return to Local. Pushing this button Description will reset the Analyzer to the local operation mode.
S2VNA and S4VNA SCPI Programming Manual SYST:HIDE SYSTem:SHOW Minimizes the analyzer main window removing it from desktop. Description (no query) SYST:SHOW Related Commands None Equivalent Softkeys SYST:SHOW SYSTem:SHOW Restores the analyzer main window hidden by the SCPI.SYSTem.HIDE command. Description (no query) SYST:HIDE Related Commands None...
S2VNA and S4VNA SCPI Programming Manual SYST:TIME <numeric 1> <numeric 2> <numeric 3> SYSTem:TIME SYSTem:TIME? Sets or reads out the current time. Description (command/query) hours from 0 to 23; <numeric 1> Parameter minutes from 0 to 59; <numeric 2> seconds from 0 to 59. <numeric 3>...
S2VNA and S4VNA SCPI Programming Manual TRIG TRIGger[:SEQuence][:IMMediate] Generates a trigger signal and initiates a sweep under the following conditions. 8. Trigger source is set to the BUS (set by the command TRIG:SOUR BUS), otherwise an error occurs and the command is ignored.
S2VNA and S4VNA SCPI Programming Manual TRIG:AVER TRIGger[:SEQuence]:AVERage {OFF|ON|0|1} TRIGger[:SEQuence]:AVERage? Turns ON/OFF the averaging trigger function. The function executes a sweep the number of times specified by the averaging factor with a single trigger for the channels with the averaging enabled.
S2VNA and S4VNA SCPI Programming Manual TRIG:EXT:DEL <time> TRIGger[:SEQuence]:EXTernal:DELay TRIGger[:SEQuence]:EXTernal:DELay? Sets or reads out the response delay with respect to the external trigger signal. Description (command/query) <time> the delay value from 0 to 100 sec. Parameter s (second) Unit Sets the value of the limit, which is closer to the specified value. Out of Range Query Response <numeric>...
S2VNA and S4VNA SCPI Programming Manual TRIG:EXT:POS <char> TRIGger[:SEQuence]:EXTernal:POSition TRIGger[:SEQuence]:EXTernal:POSition? Selects the position of the external trigger. The Analyzer waits for external trigger: Before sampling, when the frequency of the stimulus port have been set. Before the frequency setup and subsequent measurement. The Description frequency change of the stimulus port begins when the external trigger arrives.
S2VNA and S4VNA SCPI Programming Manual TRIG:OUTP:FUNC <char> TRIGger:OUTPut:FUNCtion TRIGger:OUTPut:FUNCtion? Selects the trigger output function. The trigger output outputs various waveforms depending on the setting of the Output Trigger Description Function (see the operating manual). (command/query) <char> Choose from: BSET : Before frequency setup pulse BSAM : Before sampling pulse...
S2VNA and S4VNA SCPI Programming Manual TRIG:POIN TRIGger[:SEQuence]:POINt {OFF|ON|0|1} TRIGger[:SEQuence]:POINt? Turns ON/OFF the point trigger feature. When the point trigger is turned ON, the external trigger response Description is the single point. When the point trigger feature is turned OFF, the external trigger response is the entire sweep.
S2VNA and S4VNA SCPI Programming Manual TRIG:SING TRIGger[:SEQuence]:SINGle Generates a trigger signal and initiates a sweep under the following conditions. 10. Trigger source is set to the BUS (set by the command TRIG:SOUR BUS), otherwise an error occurs and the command is ignored.
S2VNA and S4VNA SCPI Programming Manual TRIG:SCOP <char> TRIGger[:SEQuence]:SCOPe TRIGger[:SEQuence]:SCOPe? Sets or reads out the trigger scope. The trigger scope determines the response on the trigger signal arrival: either starts a sweep of all waiting channels in turn or starts a sweep in the active channel Description only.
S2VNA and S4VNA SCPI Programming Manual TRIG:SOUR <char> TRIGger[:SEQuence]:SOURce TRIGger[:SEQuence]:SOURce? Selects the trigger source (see options below). If the the continuous trigger initiation mode is enabled with the command INIT:CONT ON, the INTernal choice leads to continuous sweep. The choice of another option switches the analyzer to the trigger waiting state from the corresponding source.
S2VNA and S4VNA SCPI Programming Manual TRIG:STAT? TRIGger[:SEQuence]:STATus? Reads out the the current state of the analyzer. Description (query only) HOLD : Hold MEAS : Measure (sweep in progress) Query Response WAIT : Waiting for trigger None Equivalent Softkeys TRIG:WAIT <char>...
S2VNA and S4VNA SCPI Programming Manual 5 Programming Tips This section gives recommendations for programming in certain specific situations. 5.1 Program Sweep Initiation and Waiting The program sweep initiation and waiting for its completion the most simple method can be implemented by using commands TRIG:SING and *OPC?. The command TRIG:SING gerates a trigger signal and starts sweeping under the following conditions: ...
S2VNA and S4VNA SCPI Programming Manual Example 2. Start sweeping in one channel and waits for its completion, then start sweeping in another channel and waits for its completion. The channel number must be set to 2. TRIG:SOUR BUS Selects the program trigger source INIT1:CONT OFF Puts channel 1 to the hold state INIT2:CONT OFF...
S2VNA and S4VNA SCPI Programming Manual Example 3. Starts sweep at the signal on the external trigger input. Programmatically waits for its completion. The continuous initiation mode must be turned OFF. TRIG:SOUR EXT Selects the external trigger source INIT:CONT OFF Puts channel 1 to the hold state <loop>: trigger waiting...
S2VNA and S4VNA SCPI Programming Manual 5.5 Receiving Data Arrays in Text Form By default the data from the analyzer is transmitted in a text form. The VISA library has built-in facilities for receiving an array of data from the analyzer. The example assumes that the size of the array is sufficient to receive a number of elements equal to twice the number of points.
Page 413
S2VNA and S4VNA SCPI Programming Manual double DataArray[1000]; ViUInt32 retCount; viPrintf(instr, "FORM:DATA REAL\n"); retCount = sizeof(DataArray) / sizeof(double); viQueryf(instr, "CALC:DATA:FDAT?\n", "%#Zb", &retCount, DataArray); // retCount now contains the actual number of elements read...
Appendix 1. IEE488.2 Status Reporting System Σ . . . Service Request Enable Register *SRE SRQ* Status Byte Register Service Request OPER MAV* QUES *STB? Generation* * Not available for TCP/IP Σ Socket protocol . . . Standard Event Status Enable Register *ESE Standard Event Status Register Command...
Page 415
Appendix 1. IEE488.2 Status Reporting System Σ . . . Questionable Status Enable Register STAT:QUES:ENAB Questionable Status Event Register STAT:QUES? Positive Transition Filter STAT:QUES:PTR Negative Transition Filter STAT:QUES:NTR Limit Ripple Questionable Status Condition Register Test Test FAIL STAT:QUES:COND? FAIL 1024...
Page 416
Appendix 1. IEE488.2 Status Reporting System Σ . . . Questionable Limit Status Enable Register STAT:QUES:LIM:ENAB Questionable Limit Status Event Register STAT:QUES:LIM? Positive Transition Filter STAT:QUES:LIM:PTR Negative Transition Filter STAT:QUES:LIM:NTR Questionable Limit Status Condition Chan 14 Chan 13 Chan 12 Chan 11 Chan 10 Chan 9...
Page 417
Appendix 1. IEE488.2 Status Reporting System Σ . . . Questionable Limit Channel 1 Status Enable Register STAT:QUES:LIM:CHAN1:ENAB Questionable Limit Channel 1 Status Event Register STAT:QUES:CHAN1:LIM? Positive Transition Filter STAT:QUES:LIM:CHAN1:PTR Negative Transition Filter STAT:QUES:LIM:CHAN1:NTR Questionable Limit Channel 1 Status Trace 14 Trace 13 Trace 12 Trace 11...
Page 418
Appendix 1. IEE488.2 Status Reporting System Σ . . . Questionable Ripple Limit Status Enable Register STAT:QUES:RLIM:ENAB Questionable Ripple Limit Status Event Register STAT:QUES:RLIM? Positive Transition Filter STAT:QUES:RLIM:PTR Negative Transition Filter STAT:QUES:RLIM:NTR Questionable Ripple Limit Status Chan 14 Chan 13 Chan 12 Chan 11 Chan 10...
Appendix 2. Error Codes "Command error" "Unmatched quote" "Unmatched bracket" "Invalid value in numeric list" "Data type error" "Numeric parameter overflow" "Wrong units in numeric data" "Parameter not allowed" "Missing parameter" "Command header error" "Header suffix out of range" "Input buffer is full" "Suffix eror"...
Page 421
"Init ignored" "Invalid limit data" "Invalid segment data" "Invalid standard type specifier" "Invalid conversion specifier" "Invalid gating shape specifier" "Invalid gating type specifier" "Parameter Error" "Invalid port index" "Data out of range" "No Calibration Measurement Data" "Illegal parameter value" "Cal Kit Definition Error" "Differ Forward and Reverse Thru"...
Page 422
"Analyzer not ready" "AutoCal Module not ready" "Invalid trigger scope specifier" "Invalid trigger polarity specifier" "Invalid trigger position specifier" "File not found" "Device–specific error" "Status reporting system error" "Query error" "Query error: no data" "Query truncated" "Query Interrupted"...
Page 423
Appendix 3. Programming Examples Example. Program Written in C The following program shows the control over the Analyzer using the C language with the VISA library. The Analyzer address is passed as parameter in the command line at the start of the program.
Page 424
status = viOpenDefaultRM(&defaultRM); (status < VI_SUCCESS) printf("Can't initialize VISA\n"); return –1; status = viOpen(defaultRM, argv[1], VI_NULL, VI_NULL, &instr); (status < VI_SUCCESS) printf("Can't open VISA address: %s\n", argv[1]); return –1; // Set the answer timeout viSetAttribute(instr, VI_ATTR_TMO_VALUE, 5000); // Enable the terminal character viSetAttribute(instr, VI_ATTR_TERMCHAR_EN, VI_TRUE);...
Page 425
printf("%20s %20s %20s\n", "Frequency", "Data1", "Data2"); for (int i = 0; i < NOP; i++) printf("%20f %20f %20f\n", Freq[i], Data[i*2], Data[i*2+1]); status = viClose(instr); status = viClose(defaultRM); return...
Page 426
Example 5. Program Written in LabView The following program shows the control over the Analyzer using the LabView language with the VISA library. Below see the block diagram of the program and front panel of the program with the program execution result. The front panel contains the entry field for the Analyzer name “VISA Resource Name”.
Need help?
Do you have a question about the S2 Series and is the answer not in the manual?
Questions and answers