Write / Read
About Source Power Cal

IterationsTolerance Property


Description

This command, along with MaximumIterationsPerPoint Property deal with ADUSTMENTS made to the source power.

Sets the maximum desired deviation from the sum of the test port power and the offset value.  Power readings will continue to be made, and source power adjusted, until a reading is within this tolerance value or the max number of readings has been met. The last value to be read is the valid reading for that data point.

The following two commands allow for settling of power READINGS.

ReadingsPerPoint Property

ReadingsTolerance Property

VB Syntax

pwrCal.IterationsTolerance = value

Variable

(Type) - Description

pwrCal

(object) -  A SourcePowerCalibrator (object)

value

(Double) –  Tolerance value in dBm. Choose any number between 0 and 5

Return Type

Double

Default

.05 dB

Examples

Set powerCalibrator = pna.SourcePowerCalibrator
powerCalibrator.IterationsTolerance = .1 'Write
ReadTol = powerCalibrator.IterationsTolerance 'Read

C++ Syntax

HRESULT get_IterationsTolerance( double *pVal);

HRESULT put_IterationsTolerance( double newVal);

Interface

ISourcePowerCalibrator3