Skip to content

Commit

Permalink
Merge branch 'df/#1176-heat-pump-targetTemp' into df/#1146-thermalGri…
Browse files Browse the repository at this point in the history
…dIT-with-EM

# Conflicts:
#	CHANGELOG.md
#	docs/readthedocs/models/thermal_house_model.md
#	src/main/scala/edu/ie3/simona/model/participant/HpModel.scala
#	src/main/scala/edu/ie3/simona/model/thermal/ThermalGrid.scala
#	src/main/scala/edu/ie3/simona/model/thermal/ThermalHouse.scala
  • Loading branch information
danielfeismann committed Feb 16, 2025
2 parents fdb48e0 + 86e6d23 commit 4b7912f
Show file tree
Hide file tree
Showing 4 changed files with 145 additions and 88 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Checking the number of slack nodes [#1122](https://github.com/ie3-institute/simona/issues/1122)
- Enhance exception message in case of InvalidGridException [#1124](https://github.com/ie3-institute/simona/issues/1124)
- Integration test for thermal grids without Em [#1145](https://github.com/ie3-institute/simona/issues/1145)
- Integration test for thermal grids with Em [#1146](https://github.com/ie3-institute/simona/issues/1146)
- Change thermal house behaviour to heat till targetTemperature [#1176](https://github.com/ie3-institute/simona/issues/1176)
- - Integration test for thermal grids with Em [#1146](https://github.com/ie3-institute/simona/issues/1146)

### Changed
- Adapted to changed data source in PSDM [#435](https://github.com/ie3-institute/simona/issues/435)
Expand Down
3 changes: 3 additions & 0 deletions src/main/scala/edu/ie3/simona/model/thermal/ThermalGrid.scala
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ final case class ThermalGrid(
* Ambient temperature valid up until (not including) the current tick
* @param isRunning
* determines whether the heat pump is running or not
* @param useUpperTempBoundaryForFlexibility
* determines whether the upper temperature boundary of the house will be
* applied or not
* @param qDot
* Infeed to the grid from thermal generation (e.g. heat pump) or thermal
* storages
Expand Down
4 changes: 2 additions & 2 deletions src/test/scala/edu/ie3/simona/agent/em/EmAgentIT.scala
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,8 @@ class EmAgentIT

weatherService.expectMessage(
RegisterForWeatherMessage(
hpInputModel.getNode.getGeoPosition.getY,
hpInputModel.getNode.getGeoPosition.getX,
adaptedHpInputModel.getNode.getGeoPosition.getY,
adaptedHpInputModel.getNode.getGeoPosition.getX,
)
)

Expand Down
Loading

0 comments on commit 4b7912f

Please sign in to comment.