Functions for fan characteristics
This package implements performance curves for fans and pumps, and records for parameter that can be used with these performance curves.
See the User's Guide for information about these performance curves.
Name | Description |
---|---|
efficiency | Flow vs. efficiency characteristics for fan or pump |
efficiencyParameters | Record for efficiency parameters |
Flow vs. efficiency characteristics for fan or pump
This function computes the fan efficiency for given normalized volume flow rate and performance data. The efficiency is
η = s(rV, d),
where η is the efficiency, rV is the normalized volume flow rate, and d are performance data for fan or pump efficiency.
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).
Type | Name | Default | Description |
---|---|---|---|
efficiencyParameters | per | Efficiency performance data | |
Real | r_V | Volumetric flow rate divided by nominal flow rate [1] | |
Real | d[:] | Derivatives at support points for spline interpolation |
Type | Name | Description |
---|---|---|
Efficiency | eta | Efficiency [1] |
Record for efficiency parameters
Data record for performance data that describe volume flow rate versus
efficiency.
The volume flow rate r_V
must be increasing, i.e.,
r_V[i] < r_V[i+1]
.
Both vectors, r_V
and eta
must have the same size.
Extends from Modelica.Icons.Record (Icon for records).
Type | Name | Default | Description |
---|---|---|---|
Real | r_V[:] | Volumetric flow rate divided by nominal flow rate at user-selected operating points [1] | |
Efficiency | eta[size(r_V, 1)] | Fan efficiency at these flow rates [1] |