SCPI.CALCulate(Ch).SELected.CONVersion.FUNCtion

Object type

Property (Read-Write)

Syntax

All Revision

SCPI.CALCulate(Ch).SELected.CONVersion.FUNCtion = Param

Param = SCPI.CALCulate(Ch).SELected.CONVersion.FUNCtion

 

In revision A.9.60 and above, the following syntax is also supported:

SCPI.CALCulate(Ch).TRACe(Tr).CONVersion.FUNCtion = Param

Param = SCPI.CALCulate(Ch).TRACe(Tr).CONVersion.FUNCtion

Description

This command sets/gets the parameter after conversion using the parameter conversion function, for the active trace of selected channel (Ch).

 

In revision A.9.60 and above, you can select the trace and set/get the parameter after conversion using the parameter conversion function for the trace just by executing the above TRACe(Tr) command. You do not need to execute SCPI.CALCulate(Ch).PARameter(Tr).SELect.

Variable

Parameter

Param

Description

The parameter after conversion

Data type

Character string type (String)

Range

Select from the following:

  • "ZREFlection": Specifies the equivalent impedance in reflection measurement.

  • "ZTRansmit": Specifies the equivalent impedance(series) in transmission measurement.

  • "YREFlection": Specifies the equivalent admittance in reflection measurement.

  • "YTRansmit": Specifies the equivalent admittance(series) in transmission measurement.

  • "INVersion": Specifies the inverse S-parameter.

  • "ZTSHunt": Specifies the equivalent impedance(shunt) in transmission measurement.

  • "YTSHunt": Specifies the equivalent admittance(shunt) in transmission measurement.

  • "CONJugation": Specifies the conjugate.

Preset value

"ZREFlection"

Examples

Dim Func As String
SCPI.CALCulate(1).PARameter(1).SELect
SCPI.CALCulate(1).SELected.CONVersion.FUNCtion = "ztr"
Func = SCPI.CALCulate(1).SELected.CONVersion.FUNCtion

Related objects

SCPI.CALCulate(Ch).SELected.CONVersion.STATe

SCPI.CALCulate(Ch).PARameter(Tr).SELect

SCPI.SENSe(Ch).CORRection.EXTension.AUTO.DCOFfset

Equivalent key

Analysis > Conversion > Z:Reflection|Z:Transmission|Y:Reflection|Y:Transmission|1/S| Z:Trans-Shunt|Y:Trans-Shunt|Conjugation

Equivalent SCPI command

Syntax

All revision:

:CALCulate{[1]-160}[:SELected]:CONVersion:FUNCtion {ZREFlection| ZTRansmit|YREFlection|YTRansmit|INVersion|ZTSHunt|YTSHunt|CONJugation}

:CALCulate{[1]-160}[:SELected]:CONVersion:FUNCtion?

 

In revision A.9.60 and above, the following syntax is also supported:

:CALCulate{[1]-160}:TRACe{[1]-16}:CONVersion:FUNCtion {ZREFlection| ZTRansmit|YREFlection|YTRansmit|INVersion|ZTSHunt|YTSHunt|CONJugation}

:CALCulate{[1]-160}:TRACe{[1]-16}:CONVersion:FUNCtion?

Query response

{ZREF|ZTR|YREF|YTR|INV|ZTSH|YTSH|CONJ}<newline><^END>

Example of use

10 OUTPUT 717;":CALC1:CONV:FUNC ZTR"
20 OUTPUT 717;":CALC1:CONV:FUNC?"
30 ENTER 717;A$