-
Notifications
You must be signed in to change notification settings - Fork 21
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
Feature/gsye 810 #1818
base: master
Are you sure you want to change the base?
Feature/gsye 810 #1818
Conversation
…rts of the heat pumps because they are not needed
…to only have one source of truth
@@ -28,59 +28,59 @@ def setup_method(self): | |||
self._datetime = datetime(2023, 1, 1, 0, 0) | |||
|
|||
def test_increase_tanks_temp_from_heat_energy(self): | |||
self._tanks.increase_tanks_temp_from_heat_energy(1, self._datetime) | |||
self._tanks.increase_tanks_temp_from_heat_energy(5000, self._datetime) |
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.
@spyrostz You need 4186 J to heat up one liter of water by 1 degree. Hence, in our cases where we talk about hundrets of liters we should change to use kJ as unit for the heat demand profile in order to not have too large numbers, for the input as well as for the output. What do you think?
If you agree, I will add a ticket for this.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1818 +/- ##
==========================================
+ Coverage 69.55% 69.65% +0.10%
==========================================
Files 148 150 +2
Lines 14181 14245 +64
Branches 2656 2666 +10
==========================================
+ Hits 9863 9922 +59
- Misses 3793 3794 +1
- Partials 525 529 +4 |
Reason for the proposed changes
Please describe what we want to achieve and why.
Proposed changes
INTEGRATION_TESTS_BRANCH=master
GSY_FRAMEWORK_BRANCH=feature/GSYE-810