Keysight Pathwave 89600 VSA .NET API
Impedance Property
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Analog Class : Impedance Property


Glossary Item Box

Gets or sets the impedance for the input connection.

Syntax

Visual Basic (Declaration) 
Public MustOverride Property Impedance As Double
C# 
public abstract double Impedance {get; set;}
C++/CLI 
public:
abstract property double Impedance {
   double get();
   void set (    double value);
}

Property Value

The impedance of the input channel. The default is 50 ohms unless the hardware is not capable of that. Setting the value causes the value to be set on all channels. Getting the value returns the value from the first channel.

Remarks

The ValidValues<T>("Impedance") method can be used to retrieve a list of valid impedances for the current hardware. When that method is used on this object it will return the valid values of impedance for the first channel.

For multi-channel hardware, Impedance can be set independently for each channel or all channels can be set to the same value. To set the Impedance for an individual channel, use the Impedance property on the appropriate channel. Individual channel settings are available via the Channels collection. To set the Impedance for all channels to the same value, set the value of this property. It will take care of iterating through all the channels and setting the same value for them.

When queried, this property always returns the value for the first channel. For multi-channel hardware, the Impedance for an individual channel can be retrieved via the Impedance property on the appropriate channel. Individual channel settings are available via the Channels collection.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also