Chamber States

CTSState

class CTSState(running: bool, error: bool, paused: bool, humidity_on: bool, dew_point_above_seven: bool, dew_point_below_seven: bool, deep_dehumidity_on: bool, reg_suply_air: bool, error_number: CTSStateError)[source]

Bases: object

Represents the state of the CTS Environmental Chamber.

Represents the current state of the CTS environmental chamber, including operational status information, humidity control status, and errors.

Parameters:
deep_dehumidity_on: bool

Whether the deep dehumidification is currently on.

dew_point_above_seven: bool

Whether the dew point is above 7°C.

dew_point_below_seven: bool

Whether the dew point is below 7°C.

error: bool

Whether there is an error in the chamber.

error_number: CTSStateError

The error number if there is an error, otherwise None.

humidity_on: bool

Whether the humidity control is currently on.

paused: bool

Whether the chamber is currently paused.

reg_suply_air: bool

Whether the supply air regulation is currently on.

running: bool

Whether the chamber is currently running.

CTSStateError

class CTSStateError(*values)[source]

Bases: Enum

Enumeration of possible error states that can occur in the CTS chamber.

ERR_ADD_WATER = 1

Add water to the chamber.

ERR_BOILING_PRESSURE_SENSOR_03B60 = 61

Boiling pressure sensor 03-B60

ERR_BOILING_PRESSURE_SENSOR_C_03B43 = 94

Boiling pressure sensor C 03-B43

ERR_BOILING_PRESSURE_SENSOR_PC_03B53 = 95

Boiling pressure sensor PC 03-B53

ERR_CIRCUIT_BREAKER_POWER_SUPPLY_00Q1 = 98

Circuit breaker power supply 00-Q1

ERR_COMPRESSED_GAS_TEMP_C_03B10 = 76

Compr.gas temperature C 03-B10

ERR_CONDENSER_PRESSURE_SENSOR_C_03B41 = 62

Condenser pressure sensor C 03-B41

ERR_COOLING_NEG_PRESSURE_03B43 = 79

Cooling negative pressure 03-B43

ERR_COOLING_OVERPRESSURE_03B40 = 55

Cooling overpressure 03-B40

ERR_DE_SLUDGE = 6

De-sludge the water bath.

ERR_FLOAT_WATER_BATH_07B80 = 91

Float water bath 07-B80

ERR_FLOAT_WATER_SUPPLY_07B81 = 66

Float water supply 07-B81

ERR_HUMIDITY_SENSOR_08B2 = 58

Humidity sensor 08-B2

ERR_LACK_OF_WATER_HUMIDITY_07B80 = 59

Lack of water humidity 07-B80

ERR_LOWER_HUMIDITY_TOLERANNCE_BAND = 5
ERR_LOWER_TEMP_TOLERANNCE_BAND = 3

Lower temperature tolerance band exceeded.

ERR_MAX_HUMIDITY_08B2 = 57

Max. humidity 08-B2

ERR_MAX_TEST_SPECIMEN_PROTECTION_09A1 = 53

Max test specimen protection 09-A1

ERR_MIN_HUMIDITY_08B2 = 56

Min. humidity 08-B2

ERR_NO_ERROR = 0

No error.

ERR_PRECOOLING_CIRCUIT = 99

Pre-cooling circuit

ERR_PRECOOLING_NEG_PRESSURE_03B53 = 78

Pre-cooling negative pressure 03-B53

ERR_PRECOOLING_OVERPRESSURE_03B50 = 54

Pre-cooling overpressure 03-B50

ERR_PT100_COMPRESSED_GAS_C_03B10 = 72

Pt100 compressed gas C 03-B10

ERR_PT100_EXHAUST_AIR_08B11 = 63

Pt100 exhaust air 08-B1.1

ERR_PT100_MOVEABLE_08B15 = 67

Pt100 moveable 08-B15

ERR_PT100_SUCTION_GAS_C_03B13 = 71

Pt100 suction gas C 03-B13

ERR_PT100_SUCTION_GAS_PC_03B19 = 70

Pt100 suction gas PC 03-B19

ERR_PT100_SUCTION_STEAM_C_03B12 = 92

Pt100 suction steam C 03-B12

ERR_PT100_SUCTION_STEAM_PC_03B18 = 93

Pt100 suction steam PC 03-B18

ERR_PT100_SUPPLY_AIR_08B12 = 64

Pt100 supply air 08-B1.2

ERR_PT100_WATER_BATH_07B4 = 65

Pt100 water bath 07-B4

ERR_SUCTION_COOL_REFR_CYCLE_03B43 = 83

Suct.cool.refrig.cycle 03-B43

ERR_SUCTION_GAS_TEMP_C_03B13 = 75

Suction gas temperature C 03-B13

ERR_SUCTION_GAS_TEMP_PC_03B19 = 74

Suction gas temperature PC 03-B19

ERR_SUCTION_PRECOOL_REFR_CYCLE_03B53 = 82

SuctPre-coolRefrCycle 03-B53

ERR_TEMP_LIMITER_TEST_SPACE_01F11 = 51

Temp. limiter 1 test space 01-F1.1

ERR_TEMP_LIMIT_MAX_08B1 = 50

Max. temperature limit 08-B1

ERR_TEMP_LIMIT_MIN_08B1 = 49

Min. temperature limit 08-B1

ERR_THERMAL_CONTACT_CONDENSER_FAN_03F51 = 60

Therm. cont. condenser fan 03-F5.1

ERR_THERMAL_CONTACT_TEST_SPACE_FAN_02F21 = 52

Thermal contact test space fan 02-F2.1

ERR_UPPER_HUMIDITY_TOLERANNCE_BAND = 4

Upper humidity tolerance band exceeded.

ERR_UPPER_TEMP_TOLERANNCE_BAND = 2

Upper temperature tolerance band exceeded.

classmethod from_value(value: int) CTSStateError[source]

Returns the CTSStateError corresponding to the given value.

Parameters:

value (int)

Return type:

CTSStateError