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

Object type

Property (Read-Write)

Syntax

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

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

Description

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

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

Variable

Parameter

Ports

Description

Indicates 2-element array data (port number).

The index of the array starts from 0.

Data type

Variant type (Variant)

Range

1 to 2

Preset value

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

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 = "bal"
SCPI.CALCulate(1).FSIMulator.BALun.TOPology.BALanced.PPORts = Array(1,4)
BbalPort = SCPI.CALCulate(1).FSIMulator.BALun.TOPology.BALanced.PPORts

 

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

Related objects

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

Equivalent key

Analysis > Fixture Simulator > Topology > Port1(bal)

Equivalent SCPI command

Syntax

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

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

Query response

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

Example of use

10 OUTPUT 717;":CALC1:FSIM:BAL:TOP:BAL 1,4"
20 OUTPUT 717;":CALC1:FSIM:BAL:TOP:BAL?"
30 ENTER 717;A,B