Buildings.Occupants.Office.Blinds
Package with models to simulate blinds behaviors in office buildings
Information
This package contains models to simulate blinds behaviors in office buildings.
Extends from Modelica.Icons.VariantsPackage (Icon for package containing variants).
Package Content
Name | Description |
---|---|
Haldi2008BlindsTIn | A model to predict occupants' blinds behavior with indoor temperature |
Haldi2008BlindsTOut | A model to predict occupants' blinds behavior with outdoor temperature |
Inkarojrit2008BlindsSolarIntensity | A model to predict occupants' blinds behavior with solar intensity (and self-reported brightness sensitivity) |
Newsham1994BlindsSolarIntensity | A model to predict occupants' blinds behavior with solar intensity |
Zhang2012BlindsSolarAltitude | A model to predict occupants' blinds behavior with solar altitude |
Zhang2012BlindsSolarIntensity | A model to predict occupants' blinds behavior with solar intensity |
Validation | Package with examples to validate models in the Blinds package |
Buildings.Occupants.Office.Blinds.Haldi2008BlindsTIn
A model to predict occupants' blinds behavior with indoor temperature
Information
Model predicting the state of the blinds with the indoor temperature.
Dynamics
When the space is unoccupied, the blinds are always down. When the
space is occupied, the lower TIn
is, the higher
the chance that the blind is up.
References
The model is documented in the paper "Haldi, F. and Robinson, D., 2008. On the behaviour and adaptation of office occupants. Building and environment, 43(12), pp.2163-2177."
The model parameters are regressed from the field study in eight Swiss office buildings in 2006.
Extends from Modelica.Blocks.Icons.DiscreteBlock (Graphical layout of discrete block component icon).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | A | 0.425 | Slope of indoor temperature [1/K] |
Real | B | -11.37 | Intercept [1] |
Integer | seed | 20 | Seed for the random number generator |
Time | samplePeriod | 120 | Sample period [s] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | TIn | Indoor air temperature [K] |
input BooleanInput | occ | Indoor occupancy, true for occupied |
output RealOutput | blindState | State of blinds, 1 being blinds down [1] |
Modelica definition
Buildings.Occupants.Office.Blinds.Haldi2008BlindsTOut
A model to predict occupants' blinds behavior with outdoor temperature
Information
Model predicting the state of the blinds with the outdoor temperature.
Dynamics
When the space is unoccupied, the blinds are always down. When the
space is occupied, the lower TOut
, the higher
the chance that the blind is up.
References
The model is documented in the paper "Haldi, F. and Robinson, D., 2008. On the behaviour and adaptation of office occupants. Building and environment, 43(12), pp.2163-2177."
The model parameters are regressed from the field study in eight Swiss office buildings in 2006.
Extends from Modelica.Blocks.Icons.DiscreteBlock (Graphical layout of discrete block component icon).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | A | 0.139 | Slope of outdoor temperature [1/K] |
Real | B | -3.54 | Intercept [1] |
Integer | seed | 20 | Seed for the random number generator |
Time | samplePeriod | 120 | Sample period [s] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | TOut | Outdoor air temperature [K] |
input BooleanInput | occ | Indoor occupancy, true for occupied |
output RealOutput | blindState | State of blinds, 1 being blinds down [1] |
Modelica definition
Buildings.Occupants.Office.Blinds.Inkarojrit2008BlindsSolarIntensity
A model to predict occupants' blinds behavior with solar intensity (and self-reported brightness sensitivity)
Information
Model predicting the state of the blinds with the solar intensity at the window and occupancy.
Dynamics
When the space is unoccupied, the blinds are always down. When the space is occupied, the lower the solar intensity, the higher the chance that the blind is up.
References
The model is documented in the paper "Inkarojrit, V., 2008. Monitoring and modelling of manually-controlled Venetian blinds in private offices: a pilot study. Journal of Building Performance Simulation, 1(2), pp.75-89."
The model parameters are regressed from the field study in California in 2008 from 113 naturally ventilated buildings.
Extends from Modelica.Blocks.Icons.DiscreteBlock (Graphical layout of discrete block component icon).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | A1 | 3.22 | Slope of solar intensity at window |
Real | A2 | 1.22 | Slope of Occupants' brightness sensitivity |
Real | B | -8.94 | Intercept |
Integer | seed | 10 | Seed for the random number generator |
Time | samplePeriod | 120 | Sample period [s] |
Advanced | |||
Real | LSen | 4 | Self-reported sensitivity to brightness, seven-point scale, 1 for least sensitive, 7 for most sensitive |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | H | Solar intensity [W/m2] |
input BooleanInput | occ | Indoor occupancy, true for occupied |
output RealOutput | blindState | State of blinds, 1 being blinds down [1] |
Modelica definition
Buildings.Occupants.Office.Blinds.Newsham1994BlindsSolarIntensity
A model to predict occupants' blinds behavior with solar intensity
Information
Model predicting the state of the blinds with the solar intensity at the window and occupancy.
Dynamics
When the space is unoccupied, the blinds are always down. When the space is occupied, if the solar intensity is above the threshold, the blinds are up.
References
The model is documented in the paper "Newsham, G.R., 1994. Manual control of window blinds and electric lighting: implications for comfort and energy consumption. Indoor Environment, 3, pp.135-144."
The solar intensity threshold was first identified by a field study in an office building in Japan, and was utilized by Newsham for a simulation study in an office building in Toronto.
Extends from Modelica.Blocks.Icons.DiscreteBlock (Graphical layout of discrete block component icon).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | HSet | 233 | Threshold for moving blinds up or down |
Time | samplePeriod | 120 | Sample period [s] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | H | Solar intensity at the room-side of the window [W/m2] |
input BooleanInput | occ | Indoor occupancy, true for occupied |
output RealOutput | blindState | State of blinds, 1 being blinds down [1] |
Modelica definition
Buildings.Occupants.Office.Blinds.Zhang2012BlindsSolarAltitude
A model to predict occupants' blinds behavior with solar altitude
Information
Model predicting the state of the blinds with the solar altitude and occupancy.
Dynamics
When the space is unoccupied, the blinds are always down. When the space is occupied, the lower the solar altitude is, the higher the chance that the blind state will be changed, either being turned on or turned off.
References
The model is documented in the paper "Zhang, Y. and Barrett, P., 2012. Factors influencing occupants’ blind-control behaviour in a naturally ventilated office building. Building and Environment, 54, pp.137-147."
The model parameters are regressed from the field study in an office building in Sheffield, England.
Extends from Modelica.Blocks.Icons.DiscreteBlock (Graphical layout of discrete block component icon).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | AUp | 1.089 | Slope of solar altitude for blinds up |
Real | ADown | 1.031 | Slope of solar altitude for blinds down |
Real | BUp | -3.446 | Intercept for blinds up |
Real | BDown | -3.424 | Intercept for blinds down |
Integer | seed | 10 | Seed for the random number generator |
Time | samplePeriod | 120 | Sample period [s] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | solarAltitude | Solar Altitude [rad] |
input BooleanInput | occ | Indoor occupancy, true for occupied |
output RealOutput | blindState | State of blinds, 1 being up, 0 being down [1] |
Modelica definition
Buildings.Occupants.Office.Blinds.Zhang2012BlindsSolarIntensity
A model to predict occupants' blinds behavior with solar intensity
Information
Model predicting the state of the blinds with the solar intensity at the window and occupancy.
Dynamics
When the space is unoccupied, the blinds are always down. When the space is occupied, the lower the solar intensity, the higher the chance that the blind is up.
References
The model is documented in the paper "Zhang, Y. and Barrett, P., 2012. Factors influencing occupants’ blind-control behaviour in a naturally ventilated office building. Building and Environment, 54, pp.137-147."
The model parameters are regressed from the field study in an office building in Sheffield, England.
Extends from Modelica.Blocks.Icons.DiscreteBlock (Graphical layout of discrete block component icon).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | AUp | 0.003 | Slope of solar intensity for blinds up |
Real | ADown | 0.002 | Slope of solar intensity for blinds down |
Real | BUp | -3.33 | Intercept for blinds up |
Real | BDown | -3.17 | Intercept for blinds down |
Integer | seed | 10 | Seed for the random number generator |
Time | samplePeriod | 120 | Sample period [s] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | H | Solar intensity [W/m2] |
input BooleanInput | occ | Indoor occupancy, true for occupied |
output RealOutput | blindState | State of blinds, 1 being blinds down [1] |