HVAC
A collection of elements heating and cooling systems
Example .spl
HVAC {
type: "ElectricHeater",
name: "Bedrooms heater",
target_space: "Bedroom",
}
Example .json
{
"type": "ElectricHeater",
"name": "Bedrooms heater",
"target_space": "Bedroom"
}
Supported Types
-
IdealHeaterCooler: An ideal heating/cooling device. Heats and Cools with an efficiency of 1, and nothing effects its COP or efficiency
-
ElectricHeater: An electric heater, it can only heat.
API Access
// by name
let my_hvac = hvac(string);
// by index
let my_hvac = hvac(int);