Loading...
Searching...
No Matches
AisDataPoints.h
1#ifndef SQUIDSTATLIBRARY_AISDATAPOINTS_H
2#define SQUIDSTATLIBRARY_AISDATAPOINTS_H
3
4#include <qstring.h>
5
11struct AisDCData {
12
16 double timestamp;
17
22
27
31 double current;
32
37};
38
44struct AisACData {
45
49 double timestamp;
50
54 double frequency;
55
60
65
70
74 double phaseAngle;
75
80
86
91
95 double DCCurrent;
96
101
106};
107
114
118 QString stepName;
119
124
129
130
134 int cycle;
135};
136
137#endif //SQUIDSTATLIBRARY_AISDATAPOINTS_H
A structure containing AC data collected from the instrument.
Definition AisDataPoints.h:44
double realImpedance
the real part of the complex impedance.
Definition AisDataPoints.h:64
double timestamp
the time at which the AC data arrived.
Definition AisDataPoints.h:49
double DCCurrent
the DC electric current value in Amps
Definition AisDataPoints.h:95
double numberOfCycles
the number of cycles specific to the reported frequency.
Definition AisDataPoints.h:85
double imagImpedance
the imaginary part of the complex impedance.
Definition AisDataPoints.h:69
double totalHarmonicDistortion
the percentage of the total harmonic distortion in the AC signal.
Definition AisDataPoints.h:79
double voltageAmplitude
the amplitude of the AC voltage.
Definition AisDataPoints.h:105
double absoluteImpedance
the magnitude of the complex impedance.
Definition AisDataPoints.h:59
double currentAmplitude
the amplitude of the AC current.
Definition AisDataPoints.h:100
double frequency
the applied frequency in Hz.
Definition AisDataPoints.h:54
double workingElectrodeDCVoltage
the DC working electrode voltage in volts.
Definition AisDataPoints.h:90
double phaseAngle
the phase angle between the real and the imaginary parts of the impedance.
Definition AisDataPoints.h:74
A structure containing DC data collected from the instrument.
Definition AisDataPoints.h:11
double counterElectrodeVoltage
the measured counter electrode voltage in volts.
Definition AisDataPoints.h:26
double current
the measured electric current value in Amps
Definition AisDataPoints.h:31
double workingElectrodeVoltage
the measured working electrode voltage in volts.
Definition AisDataPoints.h:21
double timestamp
the time at which the DC data arrived.
Definition AisDataPoints.h:16
double temperature
the measured temperature in Celsius.
Definition AisDataPoints.h:36
A structure containing some information regarding the running element.
Definition AisDataPoints.h:113
QString stepName
This is the name of the current element running.
Definition AisDataPoints.h:118
int stepNumber
this number is the order of the element within the custom experiment.
Definition AisDataPoints.h:123
int substepNumber
this number is the order of the step within the element.
Definition AisDataPoints.h:128
int cycle
this number is cycle within the element.
Definition AisDataPoints.h:134