User`s guide

5- 22 Agilent EasyEXPERT Users Guide Vol. 1, Edition 1
Built-in Programming Tool
Script Program Statements
LOOP Beginning of the LOOP/END LOOP block. LOOP and END LOOP are added to the
program list as a pair. The statements repeatedly performed during looping should
be defined between the statements.
The EXIT LOOP statement is available to exit from the loop. After looping, the next
line of END LOOP is performed.
Example 1 Test definition name: Vth_gmMax
Local Variables Definition
BLOCK
!***** Integration Time Setting *****
IF IntegTime="SHORT"
IntegMode = "MANUAL"
AdcFactor = 8
ELSE IF IntegTime="MEDIUM"
IntegMode = "PLC"
AdcFactor = 1
ELSE IF IntegTime="LONG"
IntegMode = "PLC"
AdcFactor = 16
END IF
!***** I-V Sweep *****
Vth_gmmax
!***** Analysis *****
Auto Analysis
END BLOCK
Line 1: Defines local variables.
Line 2: Beginning of program. Program ends by the END BLOCK statement.
Line 3: Comment line. The COMMENT statement is used.
Lines 4 to 13: Changes the integration time setting by the variable IntegTime value.
Line 14: Comment line. The COMMENT statement is used.
Line 15: Executes Vth_gmmax of the Application Test component to perform Id-Vg
measurement.
Line 16: Comment line. The COMMENT statement is used.
Line 17: Executes Auto Analysis of the Analysis component.