Skip to content

Commit

Permalink
cleanup some IDE warnings, comments cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchute committed Aug 13, 2020
1 parent 5f2fdbd commit 0e1b009
Show file tree
Hide file tree
Showing 6 changed files with 91 additions and 311 deletions.
4 changes: 2 additions & 2 deletions design/FY2018/NFP-Table-Refactor.md
Original file line number Diff line number Diff line change
Expand Up @@ -683,9 +683,9 @@ Select 1000 GridPoints in the defined region. Interpolate and time.

Of the structures and methods/functions existing in EnergyPlus, only two will be used for the refactor:

1. `PerfCurve`: The global array (of `PerfomanceCurveData`) of "curve" data.
1. `PerfCurve`: The global array (of `PerformanceCurveData`) of "curve" data.

- The `PerfomanceCurveData` will be modified to point to new RectangularGridInterpolator class object.
- The `PerformanceCurveData` will be modified to point to new RectangularGridInterpolator class object.

2. `CurveValue`: The global method to evaluate "curves".

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/AirflowNetworkBalanceManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6076,7 +6076,7 @@ namespace AirflowNetworkBalanceManager {
Btwxt::setMessageCallback(CurveManager::BtwxtMessageCallback, &contextString);

int CurveNum = CurveManager::PerfCurve.size() + 1;
CurveManager::PerfCurve.push_back(CurveManager::PerfomanceCurveData());
CurveManager::PerfCurve.push_back(CurveManager::PerformanceCurveData());

CurveManager::PerfCurve(CurveNum).Name = name;
CurveManager::PerfCurve(CurveNum).ObjectType = "Table:Lookup";
Expand Down
Loading

0 comments on commit 0e1b009

Please sign in to comment.