Derating
This route is used to calculate the elevation deratings for the given conditions.
Route:
POST https://hvacmath.com/api/v1/derating
JSON Input Example:
elevationThe project elevation.
systemTypeThe system type to calculate the deratings for.
{
"elevation" : 5000,
"systemType" : {
"airToAir" : {
"climate" : "mildWinterOrLatentLoad",
"compressor" : "variableSpeed",
"type" : "heatPump"
}
}
}
JSON Output Example:
{
"airToAir" : {
"heating" : 0.92,
"sensible" : 0.85,
"total" : 0.96
}
}