Loading...
Searching...
No Matches
AisDataPoints.h
1#ifndef SQUIDSTATLIBRARY_AISDATAPOINTS_H
2#define SQUIDSTATLIBRARY_AISDATAPOINTS_H
3
4#include <qstring.h>
5
15 double absolute;
16
20 double net;
21};
22
60
66struct AisACData {
67
71 double timestamp;
72
76 double frequency;
77
82
87
92
96 double phaseAngle;
97
102
108
113
117 double DCCurrent;
118
123
128};
129
136
140 QString stepName;
141
146
151
152
156 int cycle;
157};
158
159#endif //SQUIDSTATLIBRARY_AISDATAPOINTS_H
A structure containing AC data collected from the instrument.
Definition AisDataPoints.h:66
double realImpedance
the real part of the complex impedance.
Definition AisDataPoints.h:86
double timestamp
the time at which the AC data arrived.
Definition AisDataPoints.h:71
double DCCurrent
the DC electric current value in Amps
Definition AisDataPoints.h:117
double numberOfCycles
the number of cycles specific to the reported frequency.
Definition AisDataPoints.h:107
double imagImpedance
the imaginary part of the complex impedance.
Definition AisDataPoints.h:91
double totalHarmonicDistortion
the percentage of the total harmonic distortion in the AC signal.
Definition AisDataPoints.h:101
double voltageAmplitude
the amplitude of the AC voltage.
Definition AisDataPoints.h:127
double absoluteImpedance
the magnitude of the complex impedance.
Definition AisDataPoints.h:81
double currentAmplitude
the amplitude of the AC current.
Definition AisDataPoints.h:122
double frequency
the applied frequency in Hz.
Definition AisDataPoints.h:76
double workingElectrodeDCVoltage
the DC working electrode voltage in volts.
Definition AisDataPoints.h:112
double phaseAngle
the phase angle between the real and the imaginary parts of the impedance.
Definition AisDataPoints.h:96
A structure containing DC cumulative capacity data collected from the instrument.
Definition AisDataPoints.h:11
double absolute
absolute cumulative capacity over the entire experiment.
Definition AisDataPoints.h:15
double net
net cumulative capacity over the entire experiment.
Definition AisDataPoints.h:20
A structure containing DC data collected from the instrument.
Definition AisDataPoints.h:28
double counterElectrodeVoltage
the measured counter electrode voltage in volts.
Definition AisDataPoints.h:43
double current
the measured electric current value in Amps
Definition AisDataPoints.h:48
AisCumulativeCapacityData cumulativeCapacity
the cumulative capacity data
Definition AisDataPoints.h:58
double workingElectrodeVoltage
the measured working electrode voltage in volts.
Definition AisDataPoints.h:38
double timestamp
the time at which the DC data arrived.
Definition AisDataPoints.h:33
double temperature
the measured temperature in Celsius.
Definition AisDataPoints.h:53
A structure containing some information regarding the running element.
Definition AisDataPoints.h:135
QString stepName
This is the name of the current element running.
Definition AisDataPoints.h:140
int stepNumber
this number is the order of the element within the custom experiment.
Definition AisDataPoints.h:145
int substepNumber
this number is the order of the step within the element.
Definition AisDataPoints.h:150
int cycle
this number is cycle within the element.
Definition AisDataPoints.h:156