connectorOutlet

Connector for fluid outlet

Information

This is a connector for a fluid outlet. The connector produces as an output the following quantities:

  • The mass flow rate m_flow.
  • The pressure p, unless use_p_in=false.
  • The temperature of the inflowing fluid forward.T, e.g., the temperature of the fluid that streams out of the component if m_flow > 0.
  • The mass fraction of the inflowing fluid forward.Xi, unless Medium.nXi=0.
  • The trace substances of the inflowing fluid forward.C, unless Medium.nC=0.

If allowFlowReversal = true, the connector requires as input the following quantities.

  • The temperature of the outflowing fluid backward.T, e.g., if m_flow ≤ 0.
  • The mass fraction of the outflowing fluid backward.Xi, unless Medium.nXi=0.
  • The trace substances of the outflowing fluid backward.C, unless Medium.nC=0.

If allowFlowReversal = false, then these inputs are not present and hence not required to be provided.

Parameters

TypeNameDefaultDescription
Booleanuse_p_intrue= true to use pressure connector, false to remove it
Assumptions
BooleanallowFlowReversaltrue= true to allow flow reversal, false restricts to design direction (inlet -> outlet)

Connectors

TypeNameDefaultDescription
Buildings.Fluid.FMI.Interfaces.PressureOutputpThermodynamic pressure in the connection point
Buildings.Fluid.FMI.Interfaces.FluidPropertiesbackwardInflowing properties
Buildings.Fluid.FMI.Interfaces.FluidPropertiesforwardOutflowing properties

Components

TypeNameDefaultDescription
Medium.MassFlowRatem_flowMass flow rate from the connection point into the component

Contents

NameDescription
MediumMedium in the component

Revisions

  • January 18, 2019, by Jianjun Hu:
    Limited the media choice. See #1050.
  • April 29, 2015, by Michael Wetter:
    Redesigned to conditionally remove the pressure connector if use_p_in=false.
  • April 15, 2015 by Michael Wetter:
    Changed connector variable to be temperature instead of specific enthalpy.
  • November 8, 2014 by Michael Wetter:
    First implementation.