Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Remove snapshot repository [#1538](https://github.com/ie3-institute/PowerSystemDataModel/issues/1538)
- Refactored the handling of power profiles [#1514](https://github.com/ie3-institute/PowerSystemDataModel/issues/1514)
- Updated `gradle` dependency shadowJar to work with Gradle 9 [#1545](https://github.com/ie3-institute/PowerSystemDataModel/issues/1545)
- Removed `ThermalUnits` (duplication to `ThermalGrids`) [#874](https://github.com/ie3-institute/PowerSystemDataModel/issues/874)

## [8.1.0] - 2025-07-25

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/** Thermal storage with cylindrical shape */
public class CylindricalStorageInput extends AbstractStorageInput {
/**
* @param uuid Unique identifier of a cylindrical storage
* @param uuid Unique identifier of a certain cylindrical storage
* @param id Identifier of the thermal unit
* @param operator operator of the asset
* @param operationTime operation time of the asset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class DomesticHotWaterStorageInput extends AbstractStorageInput {
/**
* Constructor for DomesticHotWaterStorageInput
*
* @param uuid Unique identifier of a domestic hot water storage
* @param uuid Unique identifier of a certain domestic hot water storage
* @param id Identifier of the thermal unit
* @param operator operator of the asset
* @param operationTime operation time of the asset
Expand Down Expand Up @@ -57,7 +57,7 @@ public DomesticHotWaterStorageInput(
/**
* Alternative constructor for DomesticHotWaterStorageInput
*
* @param uuid Unique identifier of a domestic hot water storage
* @param uuid Unique identifier of domestic hot water storage
* @param id Identifier of the thermal unit
* @param bus Thermal bus, a thermal unit is connected to
* @param storageVolumeLvl Available storage volume
Expand Down

This file was deleted.