-
Notifications
You must be signed in to change notification settings - Fork 475
Remove fmt - Part 2: Remove {R}, Files A-D
#11588
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
Open
mitchute
wants to merge
5
commits into
develop
Choose a base branch
from
remove-fmt-part-2
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
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1d3b779
first pass at removing {R} string formatting for files A-D
mitchute 90012ae
adjust component sizing information output
mitchute 529077a
normalize all 'm3/s/W' values to use '{:G}' formatting
mitchute e4cfbaa
uppercase exponents
mitchute 1f0bd7e
touch up DFS file diffs
mitchute 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -313,7 +313,11 @@ void BaseSizer::reportSizerOutput(EnergyPlusData &state, | |
|
|
||
| static constexpr std::string_view Format_990( | ||
| "! <Component Sizing Information>, Component Type, Component Name, Input Field Description, Value\n"); | ||
| static constexpr std::string_view Format_991(" Component Sizing Information, {}, {}, {}, {:.5R}\n"); | ||
| static constexpr std::string_view Format_991(" Component Sizing Information, {}, {}, {}, {:.5f}\n"); | ||
| static constexpr std::string_view Format_991_HumRat(" Component Sizing Information, {}, {}, {}, {:.3E}\n"); | ||
| auto const sizingFormat = [](std::string_view description) { | ||
| return description.find("Humidity Ratio") != std::string_view::npos ? Format_991_HumRat : Format_991; | ||
| }; | ||
|
Comment on lines
+316
to
+320
Collaborator
Author
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. 1ZoneDataCenterCRAC_wApproachTemp_ClassH1/eplusout.eio.diff - Component Sizing Information, Fan:VariableVolume, EC PLUG FAN 1, Design Electric Power Consumption [W], 5901.42857
+ Component Sizing Information, Fan:VariableVolume, EC PLUG FAN 1, Design Electric Power Consumption [W], 5901.43CoolingTowerWithDBDeltaTempOp/eplusout.eio.diff - Component Sizing Information, Coil:Cooling:Water, MAIN COOLING COIL 1, Design Size Design Inlet Air Temperature [C], 26.94481
- Component Sizing Information, Coil:Cooling:Water, MAIN COOLING COIL 1, Design Size Design Inlet Air Humidity Ratio [kgWater/kgDryAir], 1.15091E-002
- Component Sizing Information, Coil:Cooling:Water, MAIN COOLING COIL 1, Design Size Design Coil Load [W], 38693.32884
+ Component Sizing Information, Coil:Cooling:Water, MAIN COOLING COIL 1, Design Size Design Inlet Air Temperature [C], 26.9448
+ Component Sizing Information, Coil:Cooling:Water, MAIN COOLING COIL 1, Design Size Design Inlet Air Humidity Ratio [kgWater/kgDryAir], 1.151E-02
+ Component Sizing Information, Coil:Cooling:Water, MAIN COOLING COIL 1, Design Size Design Coil Load [W], 38693.3 |
||
|
|
||
| // to do, make this a parameter. Unfortunately this function is used in MANY | ||
| // places so it involves touching most of E+ | ||
|
|
@@ -322,12 +326,12 @@ void BaseSizer::reportSizerOutput(EnergyPlusData &state, | |
| state.dataEnvrn->oneTimeCompRptHeaderFlag = false; | ||
| } | ||
|
|
||
| print(state.files.eio, Format_991, CompType, CompName, VarDesc, VarValue); | ||
| print(state.files.eio, sizingFormat(VarDesc), CompType, CompName, VarDesc, VarValue); | ||
| // add to tabular output reports | ||
| OutputReportPredefined::AddCompSizeTableEntry(state, CompType, CompName, VarDesc, VarValue); | ||
|
|
||
| if (present(UsrDesc) && present(UsrValue)) { | ||
| print(state.files.eio, Format_991, CompType, CompName, UsrDesc(), UsrValue()); | ||
| print(state.files.eio, sizingFormat(UsrDesc()), CompType, CompName, UsrDesc(), UsrValue()); | ||
| OutputReportPredefined::AddCompSizeTableEntry(state, CompType, CompName, UsrDesc(), UsrValue); | ||
| } else if (present(UsrDesc) || present(UsrValue)) { | ||
| ShowFatalError(state, "ReportSizingOutput: (Developer Error) - called with user-specified description or value but not both."); | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.
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.
I am assuming this change is the reason for this type of diff. Maybe use E here?
File: UnitarySystem_ZoneVSWSHP_wDOAS