Skip to content

Commit

Permalink
Remove special chars.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Ahrenkiel authored and Phil Ahrenkiel committed Feb 12, 2024
1 parent 795439a commit c1d5950
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions test/testMeasureMetrics.cc
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,6 @@ int main(int argc, char* argv[])
csvOptions);
}

const std::string sDeg = "\370";

HPWH::FirstHourRating firstHourRating;
if (hpwh.findFirstHourRating(firstHourRating, standardTestOptions))
{
Expand Down Expand Up @@ -213,16 +211,16 @@ int main(int argc, char* argv[])
std::cout << "\t\tRecovery Efficiency: " << standardTestSummary.recoveryEfficiency
<< "\n";

std::cout << "\t\tStandby Loss Coefficient (kJ/h" << sDeg
<< "C): " << standardTestSummary.standbyLossCoefficient_kJperhC << "\n";
std::cout << "\t\tStandby Loss Coefficient (kJ/h degC): "
<< standardTestSummary.standbyLossCoefficient_kJperhC << "\n";

std::cout << "\t\tUEF: " << standardTestSummary.UEF << "\n";

std::cout << "\t\tAverage Inlet Temperature (" << sDeg
<< "C): " << standardTestSummary.avgInletT_C << "\n";
std::cout << "\t\tAverage Inlet Temperature (degC): " << standardTestSummary.avgInletT_C
<< "\n";

std::cout << "\t\tAverage Outlet Temperature (" << sDeg
<< "C): " << standardTestSummary.avgOutletT_C << "\n";
std::cout << "\t\tAverage Outlet Temperature (degC): "
<< standardTestSummary.avgOutletT_C << "\n";

std::cout << "\t\tTotal Volume Drawn (L): " << standardTestSummary.removedVolume_L
<< "\n";
Expand Down

0 comments on commit c1d5950

Please sign in to comment.