Added muZ series impedance reference as measurementtype
Building, testing and releasing LASP if it has a tag / Build-Test-Ubuntu (push) Has been cancelled Details
Building, testing and releasing LASP if it has a tag / Release-Ubuntu (push) Has been cancelled Details

This commit is contained in:
Anne de Jong 2024-01-15 16:41:29 +01:00
parent fd8366c362
commit 46bef007ca
1 changed files with 4 additions and 0 deletions

View File

@ -91,6 +91,9 @@ class MeasurementType(Enum):
# Measurement serves as impedance tube calibration (long tube case)
muZCalLong = 1 << 3
# Series impedance reference
muZSeriesImpedanceRef = 1 << 4
def __str__(self):
match self:
case MeasurementType.NotSpecific: return '-'
@ -98,6 +101,7 @@ class MeasurementType(Enum):
case MeasurementType.CALGeneral: return 'General calibration'
case MeasurementType.muZCalShort: return 'ASCEE μZ short 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")