GET_TECHNICAL_DATA_PC

This function is used to read out the technical data of the fan and motor. 

Method Call:

Result = GET_TECHNICAL_DATA_PC(InputString, OutputBuffer)

Input:

Position

Name

Description

Example Value

Required

Position

Name

Description

Example Value

Required

0

fan idno

key for related measurement of the fan

181054

Y

1

return format

return format Json

T = JSON

F = CSV

T

Y

2

buffer size

size of the output buffer

4000

Y

3

fan type

part number of the fan

K3G560PB22C1

N

Example Input String

181054;T;4000;K3G560PB22C1;

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:

Positon

Name

Description

Example Value

Datatype

Positon

Name

Description

Example Value

Datatype

0

nomvolRange

nominal voltage range [V]

 380-480

Text

1

inputPower

power consumption [kW]

3060

Integer

2

currentDraw

current draw [A]

4.4

Decimal

3

n

nominal data fan speed [1/min]

1470

Integer

4

fan type

part number of the fan

K3G560PB22C1

Text

5

outletArea

outlet area A2 [m²]

0.338926

Decimal

6

frequency

frequency [Hz]

50/60

Text

7

insulation

insulation class (IEC 60034-1)

F

Text

8

protection

degree of protection (IEC 60529)

IP55

Text

9

erp

erp class

ERP2015-EN17166

Text

10

motorProtection

motor protection, thermal winding protection

TOP

Text

11

humidityClass

humidity class

H1

Text

12

cosphi {DEPRECATED}

cosphi

0.9

Decimal

13

motorPole

motor pole

10

Integer

14

motorWiring

motor wiring

S = star

D = delta connection

D

Text

15

overall efficiency (ERP) [%]

 

67.9

Decimal

16

U

voltage [V]

400

Integer

17

diffuser

with diffuser

N = no

Y = yes

N

Text

18

guard grill

with guard grill

N = no

Y = yes

N

Text

19

inputPowerMax

max power consumption [kW]

3060

Integer

20

pfsMax

max static pressure increase [Pa]

810

Integer

21

efficiency grade N2015 actual value

 

73.3

Decimal

22

efficiency grade N2015 request value

 

62

Decimal

23

impellerDiam

average impeller fan diameter Ø [mm]

596.95

Decimal

24

outerImpellerDiam

outer impeller fan diameter Ø [mm]

643.6

Decimal

25

innerImpellerDiam

inner impeller fan diameter Ø [mm]

550.3

Decimal

26

outletWidth

outlet width impeller [mm]

174.6

Decimal

27

width

width of fan [mm]

800

Integer

28

height

height of fan [mm]

800

Integer

29

depth

depth of fan [mm]

570

Integer

30

nozzleDiameter

k-factor for RadiPac inlet nozzle

381

Integer

31

weight

weight of fan [kg]

61.0

Decimal

32

phase

count of electrical phases

3~

Text

33

tempAmbientMax

max ambient temperature [°C]

40

Integer

34

tempAmbientMin

min ambient temperature [°C]

-25

Integer

35

nomvol

Nominal voltage [V]

400

Integer

Example OutputBuffer

380-480;3060;4.4;1470;K3G560PB22C1;0.338926;50/60;F;IP55;ERP2015-EN17166;;H1;;10;D;67.9;400;N;N;3060;810;73.3;62;596.95;643.6;550.3;174.6;800;800;570;381;61.0;3~;40;-25;400;

JSON-Format

{ "IDNO_Meas":"181054", "Type":"K3G560PB22C1", "Nominal voltage range: [V]":"380-480", "Nominal voltage: [V]":"400", "Power input: [W]":"3060", "Current draw: [A]":"4.4", "nominal data fan speed [1\\\/min]":"1470", "Discharge area: [m^2]":"0.338926", "Frequency: [Hz]":"50\/60", "Phases":"3~", "Min. ambient temperature [Degree C]":"-25", "Max. ambient temperature [Degree C]":"40", "Insulation class":"F", "Protection class":"IP55", "ErP class":"ERP2015-EN17166", "Humidity class":"H1", "cos phi":"", "Motor pole":"10", "Motor wiring":"D", "Overall efficiency (ERP)[%]":"67.9", "test voltage [V]":"400", "with diffusor":"N", "with touch guard":"N", "Max. Power consumption Pe: [W]":"3060", "Efficiency grade N2015 actual value":"73.3", "Efficiency grade N2015 request value":"62", "Mean impeller diameter [mm]":"596.95", "Outer impeller diameter [mm]":"643.6", "Inner impeller diameter [mm]":"550.3", "Outlet width impeller [mm]":"174.6", "k-factor for RadiPac inlet nozzle":"381", "Width of the fan [mm]":"800", "Height of the fan [mm]":"800", "Depth of the fan [mm]":"570", "Fan weight (mass) in [kg]":"61 " }

Result: