Sizing Limits


This route is used to calculate the acceptable sizing limits for the given conditions.

Route:

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

JSON Input Example:

  • houseLoad
    The house load at the outdoor design conditions.
  • systemType
    The system type to calculate the sizing limits for.
  • {
      "houseLoad" : {
        "cooling" : {
          "sensible" : 13894,
          "total" : 17872
        },
        "heating" : 49667
      },
      "systemType" : {
        "airToAir" : {
          "climate" : "mildWinterOrLatentLoad",
          "compressor" : "variableSpeed",
          "type" : "heatPump"
        }
      }
    }

    JSON Output Example:

    {
      "oversizing" : {
        "cooling" : {
          "latent" : 150,
          "total" : 130
        }
      },
      "undersizing" : {
        "cooling" : {
          "latent" : 90,
          "sensible" : 90,
          "total" : 90
        }
      }
    }

    Validation Errors

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

    Failed to fetch validations