Buildings.Obsolete.Controls.OBC.CDL.Types

Package with type definitions

Information

This package contains type definitions.

Extends from Modelica.Icons.Package (Icon for standard packages).

Package Content

Name Description
Buildings.Obsolete.Controls.OBC.CDL.Types.Day Day Enumeration for the day types
Buildings.Obsolete.Controls.OBC.CDL.Types.Reset Reset Options for integrator reset

Types and constants

  type Day = enumeration(
      WorkingDay
    "Working day, such as Monday through Friday",
      NonWorkingDay
    "Non-working day, such as week-ends, but not holidays",
      Holiday
    "Holiday")
    "Enumeration for the day types";
  type Reset = enumeration(
      Disabled
             "Disabled",
      Parameter
              "Use parameter value",
      Input
          "Use input signal") "Options for integrator reset";

Buildings.Obsolete.Controls.OBC.CDL.Types.Day

Enumeration for the day types

Information

Enumeration for the type of days. The possible values are:

  1. WorkingDay
  2. NonWorkingDay
  3. Holiday

Modelica definition

type Day = enumeration( WorkingDay "Working day, such as Monday through Friday", NonWorkingDay "Non-working day, such as week-ends, but not holidays", Holiday "Holiday") "Enumeration for the day types";

Buildings.Obsolete.Controls.OBC.CDL.Types.Reset

Options for integrator reset

Information

Enumeration to define the choice of integrator reset. Possible values are:

Enumeration Description
Disabled Use this setting to disable the integrator reset.
Parameter Use this setting to use reset the integrator to the value of the parameter.
Input Use this setting to reset the integrator to the value obtained from the input signal.

Modelica definition

type Reset = enumeration( Disabled "Disabled", Parameter "Use parameter value", Input "Use input signal") "Options for integrator reset";