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:

  • capacity
    The heat pump capacity.
  • designTemperature
    The winter outdoor design temperature.
  • heatLoss
    The 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.