-
Notifications
You must be signed in to change notification settings - Fork 4
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
Heat exchange models #183
Heat exchange models #183
Changes from 17 commits
99efbed
8618861
508b544
6e78b76
4681954
7a6b418
ad7efa0
539ef53
638a51e
ccdc7d2
098874d
9bb19c7
2fa7021
3611502
92d5edf
19ae202
63b453a
e7bb180
592b89e
e2d006f
b8e569c
9348872
5043494
0dcc923
7553fdd
4f64c7a
533ec62
4de5ef1
c5e0c99
e3f4a7c
2e25a71
4a3e3f9
31cec6c
ad4f931
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
verbosity silent | ||
numNodes 1 #number of nodes | ||
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. Change to 12? 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. done |
||
setpoint 125 F | ||
volume 54.4 gal | ||
UA 10.35 kJperHrC | ||
depressTemp false | ||
mixOnDraw true | ||
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. This should be false, the draw doesn't go into the tank at all, and it shouldn't cause any mixing of the water. 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. done |
||
hasHeatExchanger true | ||
heatExchangerEffectiveness 0.9 | ||
|
||
#a test comment | ||
numHeatSources 1 | ||
|
||
heatsource 0 isVIP false | ||
heatsource 0 isOn false | ||
heatsource 0 type compressor | ||
heatsource 0 condensity 1 | ||
|
||
#we have input power and COP equations at for ambient temperatures | ||
heatsource 0 nTemps 4 | ||
heatsource 0 T1 5 F | ||
heatsource 0 T2 34 F | ||
heatsource 0 T3 67 F | ||
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 inPowT1quad 0.0 | ||
heatsource 0 copT1const -0.13839 | ||
heatsource 0 copT1lin 0.012319 | ||
heatsource 0 copT1quad 0.0 | ||
|
||
# 34F Coefficients | ||
heatsource 0 inPowT2const -1558 | ||
heatsource 0 inPowT2lin 42.40 | ||
heatsource 0 inPowT2quad 0.0 | ||
heatsource 0 copT2const -0.19375 | ||
heatsource 0 copT2lin 0.017247 | ||
heatsource 0 copT2quad 0.0 | ||
|
||
# 67F Coefficients | ||
heatsource 0 inPowT3const -1713 | ||
heatsource 0 inPowT3lin 46.60 | ||
heatsource 0 inPowT3quad 0.0 | ||
heatsource 0 copT3const -0.28156 | ||
heatsource 0 copT3lin 0.025064 | ||
heatsource 0 copT3quad 0.0 | ||
|
||
# 95F Coefficients | ||
heatsource 0 inPowT4const -1844 | ||
heatsource 0 inPowT4lin 50.17 | ||
heatsource 0 inPowT4quad 0.0 | ||
heatsource 0 copT4const -0.47273 | ||
heatsource 0 copT4lin 0.042082 | ||
heatsource 0 copT4quad 0.0 | ||
|
||
|
||
heatsource 0 minT -25 F | ||
heatsource 0 maxT 125 F | ||
heatsource 0 hysteresis 1 F | ||
heatsource 0 coilConfig wrapped | ||
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. Should probably be "submerged" based on conversations with Ben. What impact will this have on the simulation? 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. Wrapped and submerged use different heat distributions. Simulation results are slightly altered. |
||
|
||
#Turns on when average tank temperature is 111F or colder | ||
heatsource 0 onlogic nodes 1 absolute < 111 F | ||
|
||
#BL not sure how to specify standby turn on. Trying this for now | ||
#Intent is to get it to turn on at 111F which is 14F below 125F | ||
heatsource 0 onlogic standby 14 F |
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.
This shouldn't be changing on this branch, and will likely cause conflicts when master is merged in.