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

Constrain performance curves and add 80-gallon LG model #220

Merged
merged 16 commits into from
Dec 11, 2024
Prev Previous commit
Next Next commit
Format.
spahrenk committed Dec 11, 2024
commit 53c8a7b3b2de892e10bb9b210362b0dd3d88375f
6 changes: 3 additions & 3 deletions src/HPWHpresets.cc
Original file line number Diff line number Diff line change
@@ -4543,19 +4543,19 @@ void HPWH::initPreset(MODELS presetNum)
double cop95_0 = cop95_op - dcop_dTs * (Ts_op - 0.);

compressor->perfMap.push_back({
50, // Temperature (F)
50, // Temperature (F)
{Pin50_0, dPin_dTs, 0.}, // Input Power Coefficients (W)
{cop50_0, dcop_dTs, 0.} // COP Coefficients
});

compressor->perfMap.push_back({
67.5, // Temperature (F)
67.5, // Temperature (F)
{Pin67_0, dPin_dTs, 0.}, // Input Power Coefficients (W)
{cop67_0, dcop_dTs, 0.} // COP Coefficients
});

compressor->perfMap.push_back({
95, // Temperature (F)
95, // Temperature (F)
{Pin95_0, dPin_dTs, 0.}, // Input Power Coefficients (W)
{cop95_0, dcop_dTs, 0.} // COP Coefficients
});