75 new variable statistics final energy by carrierambient heat - #77
Draft
maxnutz wants to merge 3 commits into
Draft
75 new variable statistics final energy by carrierambient heat#77maxnutz wants to merge 3 commits into
maxnutz wants to merge 3 commits into
Conversation
7 tasks
Contributor
Reviewer's GuideAdds a new Final_Energy_by_Carrier__Ambient_Heat statistics function, supporting both annual aggregation and snapshot-level output; introduces a unit-remapping helper to align input/output energy flows; and wires the new statistic into tests and configuration mappings. Flow diagram for Final_Energy_by_Carrier__Ambient_Heat statistics computationflowchart TD
start[Call Final_Energy_by_Carrier__Ambient_Heat]
hp_out[n.statistics.energy_balance for heat pump heat output]
hp_in[n.statistics.energy_balance for heat pump electricity input]
remap_out[remap_unit_index on e_out]
remap_in[remap_unit_index on e_in]
sum_hp[Add e_out and e_in then groupby kwargs.groupby]
solar[n.statistics.supply for solar_thermal_carriers]
concat[Concat res_heat_pump and solar_thermal series]
ret[Return ambient heat series]
start --> hp_out
start --> hp_in
hp_out --> remap_out
hp_in --> remap_in
remap_out --> sum_hp
remap_in --> sum_hp
sum_hp --> solar
solar --> concat
concat --> ret
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
…arrierambient-heat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Short description of this pull request
Introduces new statistics function on Final Energy [by Carrier]|Ambient Heat
Current Value: 9819.48853926 TJ
Value is currently much too low compared to "Energie in Österreich 2025". (Factor 3-4)
Checklist
Before asking for review, please make shure, the following steps are completed (whenever possible):
Sourcery-Bot starts to review your pull request, whenever it is created. This may take some time. After having finished these steps, please request for review in the Pull Request.
Summary by Sourcery
Add support for computing final energy statistics for ambient heat, including heat pumps and solar thermal, and integrate it into the existing statistics and mapping framework.
New Features:
Enhancements:
Tests: