-
Notifications
You must be signed in to change notification settings - Fork 391
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
Add Space Component Loads Report and Fix Zone Component Loads when Enclosures Differ from Zones #10730
Open
mjwitte
wants to merge
35
commits into
develop
Choose a base branch
from
spaceCompLoads
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add Space Component Loads Report and Fix Zone Component Loads when Enclosures Differ from Zones #10730
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
a44e81e
Space IV.6 - component loads 1
mjwitte f46b541
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 1151757
Space IV.6 - component loads 2
mjwitte d7ca028
Space IV.6 - component loads 3 - consolidate seq arrays
mjwitte 6491fc6
Space IV.6 - component loads 4
mjwitte d9f4b5c
Space IV.6 - component loads 4 fix
mjwitte fa3a81a
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 17cd602
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte c12a40b
Space IV.6 - component loads ReportAirHeatBalance
mjwitte 75ccde6
Space IV.6 - component loads state reduction
mjwitte 0957051
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte ac222b0
Space IV.6 - simple airflow and AirRpt cleanup
mjwitte 9881656
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 00f67f0
Space IV.6 - unwind some 3D comp loads arrays
mjwitte a9a35c9
Space IV.6 - unwind some 3D comp loads arrays cleanup
mjwitte 634d933
Space IV.6 - fix ZoneRefrigerationDoorMixing diffs
mjwitte 5aa85e3
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 9d8ee71
Space IV.6 - unwind 3D comp loads arrays fix fenestration
mjwitte 77e436d
Clear debug code
mjwitte 075de46
Space IV.6 - component loads gather HVAC
mjwitte 70e9cc4
Delete stray Array3D includes
mjwitte 69432ed
Space IV.6 - unwind 3D comp loads arrays for surfaces
mjwitte cf45780
Revert errant VS reformat
mjwitte 227c141
Space IV.6 - component loads rename reorder
mjwitte 22c969c
Space IV.6 - fix delayed int gains for space and zone
mjwitte d77ac57
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 2f7cb4f
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 2af52b9
Space IV.6 - improve delayed surf gains for space
mjwitte 5c82432
Move a few InternalHeatGains variables out of state
mjwitte c6f4c5b
Move a few HeatBalanceSurfaceManager variables out of state
mjwitte 6f091eb
Space IV.6 - revert separate space and zone decay curves
mjwitte 023142d
Space IV.6 - fix delayed surf gains for space
mjwitte 24c7a50
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte ac27ef4
Merge remote-tracking branch 'remotes/origin/develop' into spaceCompL…
mjwitte 21c20f5
Space IV.6 - fix test for spaceAirRpt.allocate
mjwitte File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,7 @@ | |
// EnergyPlus Headers | ||
#include <EnergyPlus/Data/BaseData.hh> | ||
#include <EnergyPlus/EnergyPlus.hh> | ||
#include <EnergyPlus/ZoneTempPredictorCorrector.hh> | ||
|
||
namespace EnergyPlus { | ||
|
||
|
@@ -105,6 +106,19 @@ namespace HVACManager { | |
|
||
void ReportAirHeatBalance(EnergyPlusData &state); | ||
|
||
void reportAirHeatBal1(EnergyPlusData &state, | ||
DataHeatBalance::AirReportVars &szAirRpt, | ||
DataZoneEquipment::EquipConfiguration const &szEquipConfig, | ||
int const zoneNum, | ||
int const spaceNum = 0); | ||
|
||
void reportAirHeatBal2(EnergyPlusData &state, | ||
DataHeatBalance::AirReportVars &szAirRpt, | ||
DataZoneEquipment::EquipConfiguration const &szEquipConfig, | ||
ZoneTempPredictorCorrector::ZoneSpaceHeatBalanceData const &szHeatBal, | ||
int const zoneNum, | ||
int const spaceNum = 0); | ||
|
||
void SetHeatToReturnAirFlag(EnergyPlusData &state); | ||
|
||
void UpdateZoneInletConvergenceLog(EnergyPlusData &state); | ||
|
@@ -128,7 +142,6 @@ struct HVACManagerData : BaseGlobalStruct | |
int RepIterAir = 0; | ||
bool SimHVACIterSetup = false; | ||
bool TriggerGetAFN = true; | ||
bool ReportAirHeatBalanceFirstTimeFlag = true; | ||
bool MyOneTimeFlag = true; | ||
bool PrintedWarmup = false; | ||
bool MyEnvrnFlag = true; | ||
|
@@ -140,8 +153,6 @@ struct HVACManagerData : BaseGlobalStruct | |
int ErrCount = 0; // Number of times that the maximum iterations was exceeded | ||
int MaxErrCount = 0; | ||
std::string ErrEnvironmentName; | ||
Array1D<Real64> MixSenLoad; // Mixing sensible loss or gain | ||
Array1D<Real64> MixLatLoad; // Mixing latent loss or gain | ||
Comment on lines
-143
to
-144
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved to |
||
|
||
void init_state([[maybe_unused]] EnergyPlusData &state) override | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed several stray includes that were no longer being used.