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

Fixes for ZoneHVAC:HybridUnitaryHVAC #7827

Merged
merged 71 commits into from
Mar 14, 2020

Conversation

matthew-larson
Copy link
Contributor

@matthew-larson matthew-larson commented Mar 2, 2020

Pull request overview

Pull Request Author

Add to this list or remove from it as applicable. This is a simple templated set of guidelines.

  • Title of PR should be user-synopsis style (clearly understandable in a standalone changelog context)
  • Label the PR with at least one of: Defect, Refactoring, NewFeature, Performance, and/or DoNoPublish
  • Pull requests that impact EnergyPlus code must also include unit tests to cover enhancement or defect repair
  • Author should provide a "walkthrough" of relevant code changes using a GitHub code review comment process
  • If any diffs are expected, author must demonstrate they are justified using plots and descriptions
  • If changes fix a defect, the fix should be demonstrated in plots and descriptions

Reviewer

This will not be exhaustively relevant to every PR.

  • Perform a Code Review on GitHub
  • If branch is behind develop, merge develop and build locally to check for side effects of the merge
  • If defect, verify by running develop branch and reproducing defect, then running PR and reproducing fix
  • If feature, test running new feature, try creative ways to break it
  • CI status: all green or justified
  • Check that performance is not impacted (CI Linux results include performance check)
  • Run Unit Test(s) locally
  • Check any new function arguments for performance impacts
  • Verify IDF naming conventions and styles, memos and notes and defaults
  • If new idf included, locally check the err file and other outputs

matthew-larson and others added 30 commits August 22, 2019 14:32
…eHVACEnergyRecoveryVentilator-not-always-met-by-AirLoop-systems' into unitary_fix
…he minimum ventilation required. Modified unit test for this case.
matthew-larson and others added 23 commits March 5, 2020 13:19
Copy link
Member

@Myoldmopar Myoldmopar left a comment

Choose a reason for hiding this comment

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

I'm not going to slog through every defect this fixes. It looks like this is going to make some great improvements in the hybrid unitary system, and CI is very happy, only showing diffs in the one expected file.

\note If this field is blank, Mode 25 does not consume a third fuel.
A250, \field Mode 25 System Water Use Lookup Table Name
\type object-list
\object-list MultivariateFunctions
\note Enter the name of the System Water Use Lookup Table for Mode 25.
\note Units for lookup table values should be in kg/s.
Copy link
Member

Choose a reason for hiding this comment

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

The number of lookup table fields here is quite ridiculous. But adding these notes are a good addition that doesn't affect functionality at all, and can only help people get the right inputs in there.

@@ -1425,16 +1423,16 @@ namespace HybridEvapCoolingModel {
return -1;
} // because it should be fractional, this should only really be possible if its called from a unit test

Real64 Wosa = PsyWFnTdbRhPb(StepIns.Tosa, StepIns.RHosa, 101325);
Real64 Wra = PsyWFnTdbRhPb(StepIns.Tra, StepIns.RHra, 101325);
Real64 Wosa = PsyWFnTdbRhPb(StepIns.Tosa, StepIns.RHosa, OutBaroPress);
Copy link
Member

Choose a reason for hiding this comment

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

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment