<< Click to Display Table of Contents >> Navigation: Explain™ Control Language > Library Routines > Curve classes > class PWR_AE > Pwr_Ae.StopAtAE() |
Enable or disable the Pwr_Ae termination limits.
There are six limiting conditions upon which an AE curve may prematurely terminate:
VMin |
V < Limit |
The VMin criterion limits a negative voltage swing. |
VMax |
V > Limit |
The VMax criterion is used to limit a positive voltage swing. |
ADVMin |
Abs(dV/dt) < Limit |
The ADVMin criterion is used to run a sample until it shows stable behavior. |
ADVMax |
Abs(dV/dt) > Limit |
The ADVMax criterion limits the rate of change in voltage. |
DVMin |
dV/dt < Limit |
The DVMin and DVMax conditions are signed versions of the ADVMin and ADVMax criteria. |
DVMax |
dV/dt > Limit |
Pwr_Ae.StopAtAE(channel#, VMin, VMax, ADVMin, ADVMax, DVMin, DVMax)
channel# |
INDEX |
|
NIL |
All AE channels. |
|
VMin |
REAL |
Lower limit on AE channel voltage measurement. |
NIL |
Disable the voltage lower limit. |
|
VMax |
REAL |
Upper limit on AE channel voltage measurement. |
NIL |
Disable voltage upper limit. |
|
ADVMin |
REAL |
Lower limit on AE channel Abs(dV/dt). |
NIL |
Disable Abs(dV/dt) lower limit. |
|
ADVMax |
REAL |
Upper limit on AE channel Abs(dV/dt). |
NIL |
Disable voltage upper Abs(dV/dt). |
|
DVMin |
REAL |
Lower limit on AE channel dV/dt. |
NIL |
Disable dV/dt lower limit. |
|
DVMax |
REAL |
Upper limit on AE channel dV/dt. |
NIL |
Disable dV/dt upper limit. |