Buildings.Fluid.Sensors.UsersGuide

User's Guide

Information

This package contains models of sensors. There are models with one and with two fluid ports.

Selection and parameterization of sensor models

When selecting a sensor model, a distinction needs to be made whether the measured quantity depends on the direction of the flow or not, and whether the sensor output signal is the product of the mass flow rate and a medium property.

Output signals that depend on the flow direction and are not multiplied by the mass flow rate are temperature, relative humidity, water vapor concentration X, trace substances C and density. For such quantities, sensors with two fluid ports need to be used. An exception is if the quantity is measured directly in a fluid volume, which is the case for models from the package Buildings.Fluid.MixingVolumes. Therefore, to measure for example the outlet temperature of a heat exchanger, the configuration labelled correct use in the figure below should be used, and not the configuration labelled not recommended. For an explanation, see Modelica.Fluid.Examples.Explanatory.MeasuringTemperature.

Correct use image
Not recommended image

Except for the mass flow rate sensor, all sensors with two ports can be configured as dynamic sensors or as steady-state sensor. The list below advices on how to configure sensors.

The table below summarizes the recommendations for the use of sensors.

Measured quantity One port sensor Two port sensor
steady-state (tau=0) dynamic (tau > 0)
temperature
relative humidity
mass fraction
trace substances
specific enthalpy
specific entropy
use only if connected to a volume avoid recommended
volume flow rate
enthalpy flow rate
entropy flow rate
- recommended recommended
pressure recommended recommended recommended

Sensor Dynamics

Dynamic response to fluid flowing through the sensor

If a sensor is configured as a dynamic sensor by setting tau > 0, then the measured quantity, say the temperature T, is computed as

τ   dT ⁄ dt = |ṁ| ⁄ ṁ0   (θ-T),

where τ is a user-defined time constant of the sensor (a suggested value is around 10 seconds, which is the default setting for the components), dT ⁄ dt is the time derivative of the sensor output signal, |ṁ| is the absolute value of the mass flow rate, 0 is the user-specified nominal value of the mass flow rate and θ is the temperature of the medium inside the sensor. An equivalent physical model of such a sensor would be a perfectly mixed volume with a sensor that outputs the temperature of this volume. In this situation, the size of the volume would be V=τ   ṁ0 ⁄ ρ, where ρ is the density of the fluid.

Dynamic response to ambient temperature

For the sensor Buildings.Fluid.Sensors.TemperatureTwoPort, by setting transferHeat = true, heat transfer to a fixed ambient can be approximated. The heat transfer is computed as

τHeaTra   dT ⁄ dt = (TAmb-T),

where τHeaTra is a fixed time constant and TAmb is a fixed ambient temperature. Setting transferHeat = true is useful if the sensor output T is used to switch the mass flow rate on again. If transferHeat = false, then the sensor output T remains constant if the mass flow rate is zero and hence a fan or pump controller that uses this signal may never switch the device on again. If the sensor output T is not used to switch on the mass flow rate, then in general one can use transferHeat=false.

Note that since in practice the heat transfer is due to a combination of ambient temperature and upstream or downstream fluid temperature, for example by two-way buoyancy-driven flow inside the duct or pipe, the model uses as an approximation a fixed ambient temperature. Since the sensor is not affecting the temperature of the medium, this approximation of the heat transfer does not add or remove heat from the fluid.

Combined dynamic response

For the sensor Buildings.Fluid.Sensors.TemperatureTwoPort, if both dynamic effects are enabled, then the output T is computed as

dT ⁄ dt = |ṁ| ⁄ ṁ0   (θ-T) ⁄ τ + (TAmb-T) ⁄ τHeaTra.

Implementation

The above equation is implemented in such a way that it is differentiable in the mass flow rate.

Note that the implementation of the dynamic sensors does not use the model Buildings.Fluid.MixingVolumes. The reason is that depending on the selected medium model, the mixing volume may introduce states for the pressure, species concentration, trace substance, specific enthalpy and specific entropy. Not all states are typically needed to model the dynamics of a sensor. Moreover, in many building system applications, the sensor dynamics is not of concern, but is rather used here to avoid numerical problems that steady-state models of sensors cause when flow rates are very close to zero.

Extends from Modelica.Icons.Information (Icon for general information packages).