Ramp Parameters¶
CTSChamberRampParameters¶
- class CTSChamberRampParameters(ramp_active: bool, ramp_running: bool, ramp_rate_up: float, ramp_rate_down: float, ramp_target: float)[source]¶
Bases:
objectParameters 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: