SEARCH_PRODUCTS

This function determines suitable products for a specified operating point.

Method Call:

Result = SEARCH_PRODUCTS(InputString, OutputBuffer)

Input:

Position

Name

Description

Example Value

Required

Position

Name

Description

Example Value

Required

0

air volume

air volume [m³/h]

8000

Y

1

pressure difference

Pressure difference (static) [Pa]

1000

Y

2

tolerance pos

tolerance search window positive [%]

25,00

Y

3

air density

density of the air [kg/m³]

1,15

4

width

width installation space [mm]

900

N

5

height

height installation space [mm]

900

6

tolerance neg {DEPRECATED}

tolerance search window negative [%]

0,00

7

fan type

part number of the fan

R3G400AY8701

8

calculation method

calculation method 

rlt = calculation installation losses with rlt method

ebmpapst = calculation installation losses with ebmpapst method

rlt

9

speed reserve

speed reserve [%]

5

 N

10

return format

return format Json

T = JSON

F = CSV

T

 Y

11

size of the buffer

size of the output buffer

20000

 N

12

intake finger guard

calculation method for the loss of air power

F = no guard grill

T = with guard grill

F

 N

Example InputString

1900;600;25,00;1,2;780;570;0,000;;ebmpapst;;T;20000;F;

Output:

The DLL returns the results in the variable "OutputBuffer":

CSV-Format

You will get back a list as a string, where the data is separated by a semicolon.

The list will be structured as follows:

Position

Name

Description

Example Value

DataType

Position

Name

Description

Example Value

DataType

0

fan idno

key for related measurement of the fan

176737

String

1

fan type

part number of the fan

K3G280PR03H5

String

2

n

fan speed [1/min]

2529,04

Decimal

3

Pe

input power [W]

459,42

Decimal

4

Etae

overall efficiency [%]

64,69

Decimal

5

pd

dynamic pressure (outlet) [Pa]

34,93

Decimal

6

impellerDiam

average impeller fan diameter Ø [mm]

282,5

Decimal

7

ErrorCode

Result / ErrorCodes

0

Integer

 

8

fan idno

key for related measurement of the fan

184478

String

9

fan type

part number of the fan

K3G800PC1271

String

10

n

fan speed [1/min]

760,68

Decimal

11

Pe

input power [W]

1408,99

Decimal

12

Etae

overall efficiency [%]

19,73

Decimal

13

pd

dynamic pressure (outlet) [Pa]

0,43

Decimal

14

impellerDiam

average impeller fan diameter Ø [mm]

828,55

Decimal

15

ErrorCode

Result / ErrorCodes

-5

Integer

 

16

fan idno

key for related measurement of the fan

174661

String

 

Example OutputBuffer

126873;R3G400AY8701;2009;1510;64,9;33,41;455.0;0;134533;K3G400AY8702;2009;1510;64,9;33,41;455.0;0;248979;R3G310PH5801;3406;1730;61,7;100,6;347.9;0;248980;K3G310PH5802;3406;1730;61,7;100,6;347.9;0;

JSON-Format

The JSON will be structured as follows:

{ "126873 R3G400AY8701":{ "IdNo":"126873", "Type":"R3G400AY8701", "n [1\\\/min]":"2009", "Pe [W]":"1510", "eta_e [%]":"64,9", "pd[Pa] ":"33,41", "impeller diam. [mm] ":"455.0", "ErrorCode":"0" }, "134533 K3G400AY8702":{ "IdNo":"134533", "Type":"K3G400AY8702", "n [1\\\/min]":"2009", "Pe [W]":"1510", "eta_e [%]":"64,9", "pd[Pa] ":"33,41", "impeller diam. [mm] ":"455.0", "ErrorCode":"0" }, "248979 R3G310PH5801":{ "IdNo":"248979", "Type":"R3G310PH5801", "n [1\\\/min]":"3406", "Pe [W]":"1730", "eta_e [%]":"61,7", "pd[Pa] ":"100,6", "impeller diam. [mm] ":"347.9", "ErrorCode":"0" }, "248980 K3G310PH5802":{ "IdNo":"248980", "Type":"K3G310PH5802", "n [1\\\/min]":"3406", "Pe [W]":"1730", "eta_e [%]":"61,7", "pd[Pa] ":"100,6", "impeller diam. [mm] ":"347.9", "ErrorCode":"0" } }

Result: