Buildings.Fluid.HeatExchangers.CoolingTowers.BaseClasses.Characteristics
Functions for fan characteristics
Information
This package implements the performance curve for the fans, and a record for performance data that can be used with the performance curve.
Package Content
Name | Description |
---|---|
normalizedPower | Normalized flow vs. normalized power characteristics for fan |
fan | Record for fan power consumption |
Buildings.Fluid.HeatExchangers.CoolingTowers.BaseClasses.Characteristics.normalizedPower
Normalized flow vs. normalized power characteristics for fan
Information
This function computes the fan normalized power consumption for a given normalized volume flow rate and performance data. The fan normalized power consumption is
rP = s(rV, d),
where rP; is the normalized fan power consumption, rV is the normalized volume flow rate, and d are performance data for fan or pump efficiency.
Implementation
The function s(·, ·) is a cubic hermite spline. If the data d define a monotone decreasing sequence, then s(·, d) is a monotone decreasing function.
Extends from Modelica.Icons.Function (Icon for functions).
Inputs
Type | Name | Default | Description |
---|---|---|---|
fan | per | Fan relative power consumption | |
Real | r_V | Volumetric flow rate divided by nominal flow rate [1] | |
Real | d[:] | Derivatives at support points for spline interpolation |
Outputs
Type | Name | Description |
---|---|---|
Efficiency | r_P | Normalized power consumption [1] |
Modelica definition
Buildings.Fluid.HeatExchangers.CoolingTowers.BaseClasses.Characteristics.fan
Record for fan power consumption
Information
Data record for performance data that describe normalized volume flow rate versus
normalized fan power consumption.
The normalized volume flow rate r_V
must be increasing, i.e.,
r_V[i] < r_V[i+1]
.
Both vectors, r_V
and r_P
must have the same size.
Extends from Modelica.Icons.Record (Icon for records).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | r_V[:] | Volumetric flow rate divided by nominal flow rate at user-selected operating points [1] | |
Real | r_P[size(r_V, 1)] | Fan relative power consumption at these flow rates such that r_P = 1 for r_V=1 |