CalculateAll

Do you want to calculate the heat recovey? This method calculates the heat recovery.

This methods calculates heat recovery.

POST https://exsell.primeware.com.tr/api/v1/calculateAll

Headers

Name
Type
Description

XApiKey*

string

Your API key.

Request Body

Name
Type
Description

airFlowUnits*

enum

summerInputs*

AirInputs

sinterInputs*

AirInputs

isSummer

bool

If this property is null, it will be calculated for each option

modelSerie*

enum

profitType

enum

If this property is null, it will be calculated for each option

coverType

enum

If this property is null, it will be calculated for each option

depth*

float

isDensityConst*

bool

class AirInputs
{
    public float AirFlowEx { get; set; }
    public float TempEx { get; set; }
    public float RhEx { get; set; }
    public float AirFlowSup { get; set; }
    public float TempSup { get; set; }
    public float RhSup { get; set; }
    public float Altitude { get; set; }
    public float PressureDifference { get; set; }
}
enum ModelSerie
{
    All = 0,
    ModelH = 1,
    ModelM = 2,
    ModelL = 3,
    ModelD = 4
}
enum airFlowUnits
{
    M3 = 0,
    KG = 1
}
enum profitType
{
    S = 0,
    G = 1
}
enum coverType
{
    Standart = 0,
    Right = 1
}

Last updated