-
Notifications
You must be signed in to change notification settings - Fork 20
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
Reconcile total site load #456
base: gridRE-dev
Are you sure you want to change the base?
Conversation
@adfarth just tracking a couple other notes here:
No fixes for these yet but I'll track and see if I can follow up with good fixes. One concern is the electrical load could be a weird |
@adfarth Ready for you to check! The steam turbine is left out of all of this for now but the other heating and cooling loads have been caught up. I added a result in |
@zolanaj would you mind adding a CHANGELOG entry for this? And perhaps updating the PR description with the same entry? |
# tech electric loads from thermal techs | ||
+ sum(m[:dvCoolingProduction][t, ts] / p.cooling_cop[t][ts] for t in setdiff(p.techs.cooling,p.techs.ghp), ts in p.time_steps) | ||
+ sum(m[:dvHeatingProduction][t, q, ts] / p.heating_cop[t][ts] for q in p.heating_loads, t in p.techs.electric_heater, ts in p.time_steps) | ||
+ sum(p.ghp_electric_consumption_kw[g,ts] * m[:binGHP][g] for g in p.ghp_options, ts in p.time_steps) |
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.
@zolanaj two questions on this:
- Did you intentionally choose
p.time_steps
instead ofp.time_steps_with_grid
? Honestly, so few people are using the single outage modeling that it probably doesn't matter much anymore, but just wanting to know if we should include a note about this choice - in the load balance constraints, we include
- p.s.cooling_load.loads_kw_thermal[ts] / p.cooling_cop["ExistingChiller"][ts]
You described this as "That subtraction of cooling load is due to our electric load being inclusive of the cooling load which is met by the electric chiller. The cooling production three lines up from what's highlighted allows for either the electric chiller meeting the load (i.e., no change in electricity consumption) or a full or partial replacement by ASHP, or an absorption chiller."
Should that be included here too?
uncomments code that tracks electrical load attributable to thermal technologies when calculating the expression
m[:AnnualEleckWh]
TODO note at end of add_re_tot_calcs(): ensure no double counting once AnnualEleckWh accounts for electric heating and cooling loads