Required KW


This route is used to calculate the required kilowatts for the given conditions.

Route:

POST https://hvacmath.com/api/v1/requiredKW

JSON Input Example:

  • capacityAtDesign
    The system capacity at the design temperature.
  • heatLoss
    The houses heat loss/load at the outdoor design temperature.
  • {
      "capacityAtDesign" : 23123,
      "heatLoss" : 49667
    }

    JSON Output Example:

    {
      "requiredKW" : 7.78
    }

    Validation Errors

    The following is an example of errors if the inputs are not appropriate.

    Required KW Request Errors:
    heatLoss: Heat loss should be greater than 0.