Balance Point
This route is used to calculate the thermal balance point for the given conditions.
Route:
POST https://hvacmath.com/api/v1/balancePoint/thermal
JSON Input Example:
capacityThe heat pump capacity.
designTemperatureThe winter outdoor design temperature.
heatLossThe winter heat loss of the building.
{
"capacity" : {
"at17" : 15100,
"at47" : 24600
},
"designTemperature" : 5,
"heatLoss" : 49667
}
JSON Output Example:
{
"balancePoint" : 38.5
}
Validation Errors
The following is an example of errors if the inputs are not appropriate.
Thermal Balance Point Request Errors: heatLoss: Heat loss should be greater than 0. capacity.at47: Capacity at 47° should be greater than 0. capacity.at17: Capacity at 47° should be greater than 0.