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

Fix #6050 - Return Fan:VariableVolume Fan Power Minimum Flow Fraction should not impose air loop flow #8401

Merged
merged 3 commits into from
Dec 11, 2020
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion src/EnergyPlus/Fans.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,10 @@ namespace Fans {

// Init the Node Control variables
Node(OutNode).MassFlowRateMax = Fan(FanNum).MaxAirMassFlowRate;
Node(OutNode).MassFlowRateMin = Fan(FanNum).MinAirMassFlowRate;
// According to the IO Ref guide:
// "Note that this field is only used to calculate the fan power.
// This field does not enforce the system air flow rate during simulation"
// Node(OutNode).MassFlowRateMin = Fan(FanNum).MinAirMassFlowRate;
Comment on lines +1108 to +1111
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix is here.


// Initialize all report variables to a known state at beginning of simulation
Fan(FanNum).FanPower = 0.0;
Expand Down
Loading