LBL logo

Buildings.Controls.Discrete.Examples

Collection of models that illustrate model use and test models

Information

This package contains examples for the use of models that can be found in Buildings.Controls.Discrete.

Extends from Modelica.Icons.ExamplesPackage (Icon for packages containing runnable examples).

Package Content

NameDescription
Buildings.Controls.Discrete.Examples.BooleanDelay BooleanDelay Example model for boolean delay


Buildings.Controls.Discrete.Examples.BooleanDelay Buildings.Controls.Discrete.Examples.BooleanDelay

Example model for boolean delay

Buildings.Controls.Discrete.Examples.BooleanDelay

Information

Example that demonstrates the use of the boolean delay block. The output signal of the block is delayed by one sampling interval to produce a response as shown in the figure below in which the sampling interval is 0.1 second, as indicated by the markers.

Extends from Modelica.Icons.Example (Icon for runnable examples).

Modelica definition

model BooleanDelay "Example model for boolean delay"
  extends Modelica.Icons.Example;
  Buildings.Controls.Discrete.BooleanDelay del(samplePeriod=0.1);
  Modelica.Blocks.Sources.BooleanPulse booleanPulse(period=0.25);
equation 
  connect(booleanPulse.y, del.u);
end BooleanDelay;

Automatically generated Wed Feb 29 16:52:03 2012.