SCPI.CALCulate(Ch).FSIMulator.BALun.TOPology.BBALanced.PPORts

Object type

Property (Read-Write)

Syntax

SCPI.CALCulate(Ch).FSIMulator.BALun.TOPology.BBALanced.PPORts = Ports

Ports = SCPI.CALCulate(Ch).FSIMulator.BALun.TOPology.BBALanced.PPORts

Description

This command assigns each port when the balance device type is "balance-balance", for the selected channel (Ch).

To set the balance device type to "balance-balance," specify BBAL with the SCPI.CALCulate(Ch).FSIMulator.BALun.DEVice object.

Variable

Parameter

Ports

Description

Indicates 4-element array data (port number).

The index of the array starts from 0.

Data type

Variant type (Variant)

Range

1 to 4

Preset value

Ports(0):1 / Ports(1):2 / Ports(2):3 / Ports(3):4

Resolution

1

Note

If the specified variable is out of the allowable setup range, an error occurs when executed. If you specify the same port number to 2 or more port numbers, an error occurs when executed.

Examples

Dim BbalPort As Variant
SCPI.CALCulate(1).FSIMulator.BALun.DEVice = "bbal"
SCPI.CALCulate(1).FSIMulator.BALun.TOPology.BBALanced.PPORts = Array(3,4,1,2)
BbalPort = SCPI.CALCulate(1).FSIMulator.BALun.TOPology.BBALanced.PPORts

 

Dim BbalPort(3) As Variant
Dim Ref As Variant
BbalPort(0) = 3
BbalPort(1) = 4
BbalPort(2) = 1
BbalPort(3) = 2
SCPI.CALCulate(1).FSIMulator.BALun.DEVice = "bbal"
SCPI.CALCulate(1).FSIMulator.BALun.TOPology.BBALanced.PPORts = BbalPort
Ref = SCPI.CALCulate(1).FSIMulator.BALun.TOPology.BBALanced.PPORts

Related objects

SCPI.CALCulate(Ch).FSIMulator.BALun.DEVice

Equivalent key

Analysis > Fixture Simulator > Topology > Port1(bal)

Analysis > Fixture Simulator > Topology > Port2(bal)

Equivalent SCPI command

Syntax

:CALCulate{[1]-160}:FSIMulator:BALun:TOPology:BBALanced
[:PPORts] <numeric 1>, <numeric 2>,<numeric 3>,<numeric 4>

:CALCulate{[1]-160}:FSIMulator:BALun:TOPology:BBALanced
[:PPORts]?

Query response

{numeric 1},{numeric 2},{numeric 3},{numeric 4}<newline><^END>

Example of use

10 OUTPUT 717;":CALC1:FSIM:BAL:TOP:BBAL 1,2,3,4"
20 OUTPUT 717;":CALC1:FSIM:BAL:TOP:BBAL?"
30 ENTER 717;A,B,C,D