PWR.Run()

Type: INSTANCE FUNCTION

Purpose: Run the curve.

When Pwr.Run() is executed, the acquired data are displayed in a real-time curve. There are three buttons active during Pwr.Run():

Abort button

  • Terminates the entire experiment.

Pause/Continue button

 Skip button

  • Skips to the next phase of the experiment, either to the end of the curve or to the next region of the signal generator’s operation.

The active run can be halted in several ways:

1) when the signal generator is finished,

2) if the operator hits a Skip button, or

3) if one of the stopping criteria is met. The stopping criteria can be enabled or disabled using the Pwr.StopAt functions.

Usage:

Result = Pwr.Run ()

Result

  • INDEX
  • NO_STOP
    • Normal termination or Skip/F2 button pressed
  • STOP_V_UNDER
    • E<Emin
  • STOP_V_OVER
    • E>Emax
  • STOP_V_STABLE
    • Abs(dVdt) < dVdTmin
  • STOP_V_RUNAWAY
    • Abs(dVdt) > dVdTmax
  • STOP_V_DECREASING dVdt
    • < dVdTmax
  • STOP_V_INCREASING
    • dVdT > dVdTmax
  • STOP_I_UNDER
    • I<Imin
  • STOP_I_OVER
    • I>Imax
  • STOP_I_STABLE
    • Abs(dIdT) < dIdTmin
  • STOP_I_RUNAWAY
    • Abs(dIdT) > dIdTmax
  • STOP_I_DECREASING
    • dIdT < dIdTmin
  • STOP_I_INCREASING
    • dIdT > dIdTmax
  • STOP_A_UNDER
    • A<Amin
  • STOP_A_OVER
    • A>Amax
  • STOP_A_STABLE
    • Abs(dAdT) < dAdTmin
  • STOP_A_RUNAWAY
    • Abs(dAdT) > dAdTmax
  • STOP_A_DECREASING
    • dAdT < dAdTmin
  • STOP_A_INCREASING
    • dAdT > dAdTmax
  • STOP_Q_UNDER
    • Q < Qmin
  • STOP_Q_OVER
    • Q > Qmax
  • STOP_Q_STABLE
    • Abs(dQdT) < dQdTmin
  • STOP_Q_RUNAWAY
    • Abs(dQdT) > dQdTmax
  • STOP_Q_DECREASING
    • dQdT < dQdTmin
  • STOP_Q_INCREASING
    • dQdT > dQdTmax
  • STOP_P_UNDER
    • P < Pmin
  • STOP_P_OVER
    • P > Pmax
  • STOP_P_STABLE
    • Abs(dPdT) < dPdTmin
  • STOP_P_RUNAWAY
    • Abs(dPdT) > dPdTmax
  • STOP_P_DECREASING
    • dPdT < dPdTmin
  • STOP_P_INCREASING
    • dPdT > dPdTmax
  • STOP_E_UNDER
    • E < Emin
  • STOP_E_OVER
    • E > Emax
  • STOP_E_STABLE
    • Abs(dEdT) < dEdTmin
  • STOP_E_RUNAWAY
  • Abs(dEdT) > dEdTmax
  • STOP_E_DECREASING
    • dEdT < dEdTmin
  • STOP_E_INCREASING
    • dEdT > dEdTmax
  • STOP_T_UNDER
    • Temp < TempMin
  • STOP_T_OVER
    • Temp > TempMax
  • STOP_T_STABLE
    • Abs(dTempDT) < dTempdTempMin
  • STOP_T_RUNAWAY
    • Abs(dTempDT) > dTempdTempMax
  • STOP_T_DECREASING
    • dTempDT < dTempdTempMin
  • STOP_T_INCREASING
    • dTempDT > dTempdTempMax

Related Topics Link IconRelated Topics