Write / Read
About Source Power Cal

MaximumIterationsPerPoint Property


Description

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

Sets the maximum number of readings to take at each data point for iterating the source power. Power readings will continue to made, and source power adjusted, until a reading is within the IterationsTolerance value or this 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.MaximumIterationsPerPoint = value

Variable

(Type) - Description

pwrCal

(object) -  A SourcePowerCalibrator (object)

value

(Long) –  Maximum number of readings. Choose any number between 1 and 100.

Return Type

Long Integer

Default

5

Examples

Set powerCalibrator = pna.SourcePowerCalibrator
powerCalibrator.MaximumIterationsPerPoint = 5 'Write
MaxReads = powerCalibrator.MaximumIterationsPerPoint 'Read

C++ Syntax

HRESULT get_MaximumIterationsPerPoint( long *pVal);

HRESULT put_MaximumIterationsPerPoint( long newVal);

Interface

ISourcePowerCalibrator3