Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MassFlowSource_T and MassFlowSource_h only work if there are at least one port #4461

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modelica/Fluid/Sources.mo
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ with exception of boundary pressure, do not have an effect.
model MassFlowSource_T
"Ideal flow source that produces a prescribed mass flow with prescribed temperature, mass fraction and trace substances"
import Modelica.Media.Interfaces.Choices.IndependentVariables;
extends Sources.BaseClasses.PartialFlowSource;
extends Sources.BaseClasses.PartialFlowSource(nPorts(min=1));
parameter Boolean use_m_flow_in = false
"Get the mass flow rate from the input connector"
annotation(Evaluate=true, HideResult=true, choices(checkBox=true));
Expand Down Expand Up @@ -562,7 +562,7 @@ with exception of boundary flow rate, do not have an effect.
model MassFlowSource_h
"Ideal flow source that produces a prescribed mass flow with prescribed specific enthalpy, mass fraction and trace substances"
import Modelica.Media.Interfaces.Choices.IndependentVariables;
extends Sources.BaseClasses.PartialFlowSource;
extends Sources.BaseClasses.PartialFlowSource(nPorts(min=1));
parameter Boolean use_m_flow_in = false
"Get the mass flow rate from the input connector"
annotation(Evaluate=true, HideResult=true, choices(checkBox=true));
Expand Down