Added muZ series impedance reference as measurementtype
This commit is contained in:
parent
fd8366c362
commit
46bef007ca
@ -91,6 +91,9 @@ class MeasurementType(Enum):
|
|||||||
# Measurement serves as impedance tube calibration (long tube case)
|
# Measurement serves as impedance tube calibration (long tube case)
|
||||||
muZCalLong = 1 << 3
|
muZCalLong = 1 << 3
|
||||||
|
|
||||||
|
# Series impedance reference
|
||||||
|
muZSeriesImpedanceRef = 1 << 4
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
match self:
|
match self:
|
||||||
case MeasurementType.NotSpecific: return '-'
|
case MeasurementType.NotSpecific: return '-'
|
||||||
@ -98,6 +101,7 @@ class MeasurementType(Enum):
|
|||||||
case MeasurementType.CALGeneral: return 'General calibration'
|
case MeasurementType.CALGeneral: return 'General calibration'
|
||||||
case MeasurementType.muZCalShort: return 'ASCEE μZ short length calibration'
|
case MeasurementType.muZCalShort: return 'ASCEE μZ short length calibration'
|
||||||
case MeasurementType.muZCalLong: return 'ASCEE μZ long length calibration'
|
case MeasurementType.muZCalLong: return 'ASCEE μZ long length calibration'
|
||||||
|
case MeasurementType.muZSeriesImpedanceRef: return 'ASCEE μZ series impedance empty reference'
|
||||||
case _: raise ValueError("Not a MeasurementType")
|
case _: raise ValueError("Not a MeasurementType")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user