Ramp Parameters

CTSChamberRampParameters

class CTSChamberRampParameters(ramp_active: bool, ramp_running: bool, ramp_rate_up: float, ramp_rate_down: float, ramp_target: float)[source]

Bases: object

Parameters of a ramp operation in a CTS chamber.

Configuration and status information for temperature and humidity ramp operations.

Example Usage:

# Configure a new temperature ramp
chamber.ramp_to_temperature(
    target=50.0,
    rate_up=2.0,
    rate_down=1.5
)

# Get current ramp parameters
temp_ramp = chamber.get_temperature_ramp_information()

print(f"Temperature ramp active: {temp_ramp.ramp_active}")
print(f"Target temperature: {temp_ramp.ramp_target}°C")
print(f"Ramp up rate: {temp_ramp.ramp_rate_up} K/min")
Parameters:
ramp_active: bool

Ramp management is active

ramp_rate_down: float

Rate of decrease in K/min

ramp_rate_up: float

Rate of increase in K/min

ramp_running: bool

Ramp management is currently running. Reasons not to run are pauses or errors.

ramp_target: float

Target temperature for the ramp in degrees Celsius for temperature and in % for humidity