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

Change cop coefficients for model AquaThermAire #192

Merged
merged 6 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/HPWHpresets.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4516,27 +4516,27 @@ int HPWH::HPWHinit_presets(MODELS presetNum)
compressor.perfMap.reserve(4);

compressor.perfMap.push_back({
5, // Temperature (T_F)
{-1423, 38.70, 0.}, // Input Power Coefficients (inputPower_coeffs)
{-0.13839, 0.012319, 0.} // COP Coefficients (COP_coeffs)
5, // Temperature (T_F)
{-1356, 39.80, 0.}, // Input Power Coefficients (inputPower_coeffs)
{2.003, -0.003637, 0.} // COP Coefficients (COP_coeffs)
});

compressor.perfMap.push_back({
34, // Temperature (T_F)
{-1558, 42.40, 0.}, // Input Power Coefficients (inputPower_coeffs)
{-0.19375, 0.017247, 0.} // COP Coefficients (COP_coeffs)
34, // Temperature (T_F)
{-1485, 43.60, 0.}, // Input Power Coefficients (inputPower_coeffs)
{2.805, -0.005092, 0.} // COP Coefficients (COP_coeffs)
});

compressor.perfMap.push_back({
67, // Temperature (T_F)
{-1713, 46.60, 0.}, // Input Power Coefficients (inputPower_coeffs)
{-0.28156, 0.025064, 0.} // COP Coefficients (COP_coeffs)
67, // Temperature (T_F)
{-1632, 47.93, 0.}, // Input Power Coefficients (inputPower_coeffs)
{4.076, -0.007400, 0.} // COP Coefficients (COP_coeffs)
});

compressor.perfMap.push_back({
95, // Temperature (T_F)
{-1844, 50.17, 0.}, // Input Power Coefficients (inputPower_coeffs)
{-0.47273, 0.042082, 0.} // COP Coefficients (COP_coeffs)
95, // Temperature (T_F)
{-1757, 51.60, 0.}, // Input Power Coefficients (inputPower_coeffs)
{6.843, -0.012424, 0.} // COP Coefficients (COP_coeffs)
});

compressor.minT = F_TO_C(-25);
Expand Down
32 changes: 16 additions & 16 deletions test/AquaThermAire.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,35 +27,35 @@ heatsource 0 T4 95 F
#quadratic terms for this product are zero. It's remarkably linear.

# 5F Coefficients
heatsource 0 inPowT1const -1423
heatsource 0 inPowT1lin 38.70
heatsource 0 inPowT1const -1356
heatsource 0 inPowT1lin 39.80
heatsource 0 inPowT1quad 0.0
heatsource 0 copT1const -0.13839
heatsource 0 copT1lin 0.012319
heatsource 0 copT1const 2.003
heatsource 0 copT1lin -0.003637
heatsource 0 copT1quad 0.0

# 34F Coefficients
heatsource 0 inPowT2const -1558
heatsource 0 inPowT2lin 42.40
heatsource 0 inPowT2const -1485
heatsource 0 inPowT2lin 43.60
heatsource 0 inPowT2quad 0.0
heatsource 0 copT2const -0.19375
heatsource 0 copT2lin 0.017247
heatsource 0 copT2const 2.805
heatsource 0 copT2lin -0.005092
heatsource 0 copT2quad 0.0

# 67F Coefficients
heatsource 0 inPowT3const -1713
heatsource 0 inPowT3lin 46.60
heatsource 0 inPowT3const -1632
heatsource 0 inPowT3lin 47.93
heatsource 0 inPowT3quad 0.0
heatsource 0 copT3const -0.28156
heatsource 0 copT3lin 0.025064
heatsource 0 copT3const 4.076
heatsource 0 copT3lin -0.007400
heatsource 0 copT3quad 0.0

# 95F Coefficients
heatsource 0 inPowT4const -1844
heatsource 0 inPowT4lin 50.17
heatsource 0 inPowT4const -1757
heatsource 0 inPowT4lin 51.60
heatsource 0 inPowT4quad 0.0
heatsource 0 copT4const -0.47273
heatsource 0 copT4lin 0.042082
heatsource 0 copT4const 6.843
heatsource 0 copT4lin -0.012424
heatsource 0 copT4quad 0.0


Expand Down