ChronoA.SprintPoint()

Type: INSTANCE FUNCTION

Purpose: Used in output of data from a CHRONOA object.

A data point from the object is printed to an ASCII string. This string can in turn be printed to the active output file.

The format of the data string is:

PointNumber <tab> T <tab> Vf <tab> Vu <tab> Im <tab> Sig <tab> Ach <tab> Over

You can use this function along with the Printl() function to output point i to the output file as follows:

Printl(“t”,ChronoA.SprintPoint(i))

Usage:
Result = ChronoA.SprintPoint(PointNumber)

Result – STRING – The output string

PointNumber

  • INDEX
  • The point to be printed. PointNumber is zero-based. If the requested point has not been taken, a parameter error is issued.

T

  • REAL
  • Elapsed time from starting from ChronoA.Run.

Vf

  • REAL
  • Applied E vs Eref.

Im

  • REAL
  • Measured cell current.

Vu

  • REAL
  • Uncompensated voltage.

Sig

  • REAL
  • Signal sent to Control Amplifier.

Ach

  • REAL
  • Aux Channel voltage.

Over

  • STRING
  • Hexadecimal number representing overload status
Related Topics