Buildings.Fluid.HydronicConfigurations.Types

Package with type definitions

Information

This package contains type definitions.

Extends from Modelica.Icons.TypesPackage (Icon for packages containing type definitions).

Package Content

Name Description
Buildings.Fluid.HydronicConfigurations.Types.Control Control Enumeration to specify the type of valve controls
Buildings.Fluid.HydronicConfigurations.Types.ControlVariable ControlVariable Enumeration to specify the controlled variable
Buildings.Fluid.HydronicConfigurations.Types.Pump Pump Enumeration to specify the type of pump
Buildings.Fluid.HydronicConfigurations.Types.PumpModel PumpModel Enumeration to specify the type of pump model
Buildings.Fluid.HydronicConfigurations.Types.Valve Valve Enumeration to specify the type of control valve
Buildings.Fluid.HydronicConfigurations.Types.ValveCharacteristic ValveCharacteristic Enumeration to specify the control valve characteristic

Types and constants

  type Control = enumeration(
      ChangeOver
    "Change-over",
      Cooling
    "Cooling",
      Heating
    "Heating",
      None
    "No built-in controls")
    "Enumeration to specify the type of valve controls";
  type ControlVariable = enumeration(
      ReturnTemperature
    "Consumer circuit return temperature",
      SupplyTemperature
    "Consumer circuit supply temperature")
    "Enumeration to specify the controlled variable";
  type Pump = enumeration(
      None
      "No pump",
      NoVariableInput
      "Constant input signal",
      VariableInput
      "Variable input signal")
    "Enumeration to specify the type of pump";
  type PumpModel = enumeration(
      Head
      "Pump with ideally controlled head as input",
      MassFlowRate
      "Pump with ideally controlled mass flow rate as input",
      Speed
      "Pump with ideally controlled normalized speed as input")
    "Enumeration to specify the type of pump model";
  type Valve = enumeration(
      None
    "No valve",
      ThreeWay
    "Three-way valve",
      TwoWay
    "Two-way valve")
    "Enumeration to specify the type of control valve";
  type ValveCharacteristic = enumeration(
      EqualPercentage
      "Equal percentage - Equal percentage and linear for three-way valves",
      Linear
      "Linear",
      PressureIndependent
      "Pressure independent (mass flow rate only dependent of input signal)",
      Table
      "Table-specified")
    "Enumeration to specify the control valve characteristic";