ChronoP.Thresh()

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Library Routines > Curve classes > class CHRONOP >

ChronoP.Thresh()

Description

Set up threshold conditions which must be met before ChronoP.StopAt() tests are performed.

 

When any of the threshold tests is met, the StopAt criteria are evaluated for the rest of the scan. There are six threshold tests that you can perform:

 

IMin

I < I_MinThresh

IMax

I > I_MaxThresh

EMin

E < E_MinThresh

EMax

E > E_MaxThresh

TMin

T < T_MinThresh

TMax

T > T_MaxThresh

 

Threshold tests allow you to tune the StopAt tests more carefully. For example, you can avoid a premature experiment termination caused by an initial transient.

 

In general, you only enable one of the threshold tests. The others are turned off by a NIL argument in the function call.

 

Gamry tip bulb

Any threshold test starts all StopAt tests. Also, when StopAt testing is enabled, it is never disabled, even if the Threshold test that enabled it is no longer valid.

 

Type

INSTANCE FUNCTION

 

Usage

ChronoP.Thresh(IMin,IMax, EMin, EMax, TMin, TMax)

 

IMin

REAL

Enable StopAt if I < IMin.

NIL

Disable this test.

IMax

REAL

Enable StopAt if I > IMax.

NIL

Disable this test.

EMin

REAL

Enable StopAt if E < EMin.

NIL

Disable this test.

EMax

REAL

Enable StopAt if E > EMax.

NIL

Disable this test.

TMin

REAL

Enable StopAt if T < TMin.

NIL

Disable this test.

TMax

REAL

Enable StopAt if T > TMax.

NIL

Disable this test.