TStatisticsQuery

The TStatisticsQuery data structure stores the results of a call to C_QueryLinkedStatistics.

typedef struct {

double StdDev;

double Mean;

double TimeOfMax;

double ValueAtMax;

double LinkedValueAtMax;

double TimeOfMin;

double ValueAtMin;

double LinkedValueAtMin;

} TStatisticsQuery;

Members

StdDev

The standard deviation of the main variable (as specified by the VarID parameter in C_QueryLinkedStatistics).

Mean

The mean of the main variable.

TimeOfMax

The simulation time at which the main variable achieves its maximum.

ValueAtMax

The maximum value of the main variable.

LinkedValueAtMax

The value of the linked variable (as specified by the LinkedVarID parameter in C_QueryLinkedStatistics) at TimeOfMax.

TimeOfMin

The simulation time at which the main variable achieves its minimum.

ValueAtMin

The minimum value of the main variable.

LinkedValueAtMin

The value of the linked variable at TimeOfMin.

See also

C_QueryLinkedStatistics.