SCPI.CALCulate(Ch).FSIMulator.BALun.PARameter.TNAMe.STATe(Name)

Object type

Property (Read-Write)

Syntax

SCPI.CALCulate(Ch).FSIMulator.BALun.PARameter.TNAMe.STATe(Name) = Status

Status = SCPI.CALCulate(Ch).FSIMulator.BALun.PARameter.TNAMe.STATe(Name)

Description

This command turns ON/OFF the balance-unbalance conversion function when the fixture simulator function is ON, for the selected trace of the selected channel (Ch). The trace can be selected by the trace name once its defined earlier with SCPI.CALCulate(Ch).PARameter(Tr).TNAMe.DATA command.

Variable

Parameter

Name

Description

Trace Name

Data type

Character string type (String)

 

Parameter

Status

Description

ON/OFF of the balance-unbalance conversion function

Data type

Boolean type (Boolean)

Range

Select from the following.

  • True or ON: Turns ON the balance-unbalance conversion function.

  • False or OFF: Turns OFF the balance-unbalance conversion function.

Preset value

False or OFF

Examples

Dim BalMode As Boolean
SCPI.CALCulate(1).PARameter(1).TNAMe.DATA = "duptrace"

SCPI.CALCulate(1).FSIMulator.BALun.PARameter.TNAMe.STATe("duptrace") = True
BalMode = SCPI.CALCulate(1).FSIMulator.BALun.PARameter.TNAMe.STATe("duptrace")

Related objects

SCPI.CALCulate(Ch).FSIMulator.STATe

Equivalent key

Analysis > Fixture Simulator > BalUn

Equivalent SCPI command

Syntax

:CALCulate{[1]-160}:FSIMulator:BALun:PARameter:TNAMe:STATe <string>, {ON|OFF|1|0}

:CALCulate{[1]-160}:FSIMulator:BALun:PARameter:TNAMe:STATe? <string>

Query response

{1|0}<newline><^END>

Example of use

10 OUTPUT 717;":CALC1:PAR1:TNAM:DATA ""DUPTRACE"""

20 OUTPUT 717;":CALC1:FSIM:BAL:PAR:TNAM:STAT ""DUPTRACE"",ON"
30 OUTPUT 717;":CALC1:FSIM:BAL:PAR1:STAT? ""DUPTRACE"""
40 ENTER 717;A