]> sigrok.org Git - libsigrok.git/commitdiff
Add measured quantities for LCR meters.
authorJanne Huttunen <redacted>
Sat, 11 Oct 2014 12:47:28 +0000 (15:47 +0300)
committerUwe Hermann <redacted>
Sun, 12 Oct 2014 21:18:02 +0000 (23:18 +0200)
Add parallel and serial model inductance, capacitance and resistance
for LCR meter measurements. Add also secondary quantities many LCR
meters calculate, namely dissipation factor, quality factor and phase
angle.

include/libsigrok/libsigrok.h

index a34796f299d112e60a4859c470aaef3490244d98..924ec91219963280e9bd55373f0c497c5ba72572 100644 (file)
@@ -201,6 +201,24 @@ enum sr_mq {
        SR_MQ_WIND_SPEED,
        /** Pressure */
        SR_MQ_PRESSURE,
+       /** Parallel inductance (LCR meter model). */
+       SR_MQ_PARALLEL_INDUCTANCE,
+       /** Parallel capacitance (LCR meter model). */
+       SR_MQ_PARALLEL_CAPACITANCE,
+       /** Parallel resistance (LCR meter model). */
+       SR_MQ_PARALLEL_RESISTANCE,
+       /** Serial inductance (LCR meter model). */
+       SR_MQ_SERIAL_INDUCTANCE,
+       /** Serial capacitance (LCR meter model). */
+       SR_MQ_SERIAL_CAPACITANCE,
+       /** Serial resistance (LCR meter model). */
+       SR_MQ_SERIAL_RESISTANCE,
+       /** Dissipation factor. */
+       SR_MQ_DISSIPATION_FACTOR,
+       /** Quality factor. */
+       SR_MQ_QUALITY_FACTOR,
+       /** Phase angle. */
+       SR_MQ_PHASE_ANGLE,
 };
 
 /** Unit of measured quantity, sr_datafeed_analog.unit. */