Skip to content

Commit 97620df

Browse files
Notes fixed
1 parent d5bbbcb commit 97620df

File tree

2 files changed

+29
-23
lines changed

2 files changed

+29
-23
lines changed

CHANGELOG.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
- Fixed Couchbase integration tests that randomly failed [#755](https://github.com/ie3-institute/PowerSystemDataModel/issues/755)
2222
- Fixed hyperlink in line documentation [#965](https://github.com/ie3-institute/PowerSystemDataModel/issues/965)
2323
- Fixed some tests no failing when they should [#958](https://github.com/ie3-institute/PowerSystemDataModel/issues/958)
24+
- Fixed thermal-house-documentation [#873](https://github.com/ie3-institute/PowerSystemDataModel/issues/873)
25+
- Fixed ElectricVehicle Documentation [#875](https://github.com/ie3-institute/PowerSystemDataModel/issues/875)
26+
- Fixed Equal behavior of `ConnectorResult` [#1001](https://github.com/ie3-institute/PowerSystemDataModel/issues/1001)
27+
- Fixed test for invalid input data in `CsvGraphicSource` [#1022](https://github.com/ie3-institute/PowerSystemDataModel/issues/1022)
2428

2529
### Changed
2630
- Changing from comparing strings to comparing uuids in `EntitySource.findFirstEntityByUuid` [#829](https://github.com/ie3-institute/PowerSystemDataModel/issues/829)
2731
- Adding JavaDoc to `EntitySource.safeMapGet` [#828](https://github.com/ie3-institute/PowerSystemDataModel/issues/828)
2832
- Abstracting some methods in `ValidationUtils` [#852](https://github.com/ie3-institute/PowerSystemDataModel/issues/852)
29-
- `EmInput` should not be connected to the grid [#955](https://github.com/ie3-institute/PowerSystemDataModel/issues/955)
30-
- Enhancing the error message for coordinate sources with invalid column names [#670](https://github.com/ie3-institute/PowerSystemDataModel/issues/670)
33+
- Changes to Energy Management inputs:
34+
- `EmInput` should not be connected to the grid [#955](https://github.com/ie3-institute/PowerSystemDataModel/issues/955)
35+
- System participants now reference the em entity [#957](https://github.com/ie3-institute/PowerSystemDataModel/issues/957)
36+
- Enhancing the error message for coordinate sources with invalid column names [#670](https://github.com/ie3-institute/PowerSystemDataModel/issues/670)
3137
- Allowing for additional unused columns in sources [#839](https://github.com/ie3-institute/PowerSystemDataModel/issues/839)
3238
- Improving column name validation to only run once per source [#849](https://github.com/ie3-institute/PowerSystemDataModel/issues/849)
3339
- Refactored and abstracted `EntitySource`s and `EntityData` creation [#969](https://github.com/ie3-institute/PowerSystemDataModel/issues/969)
3440
- Updated contributing.md [#737](https://github.com/ie3-institute/PowerSystemDataModel/issues/737)
41+
- Don't throw exceptions for not yet implemented validations [#879](https://github.com/ie3-institute/PowerSystemDataModel/issues/879)
42+
- `CsvDataSource` throws exceptions on error [#954](https://github.com/ie3-institute/PowerSystemDataModel/issues/954)
43+
- Removing `uuid` as required column from input and result time series [#826](https://github.com/ie3-institute/PowerSystemDataModel/issues/826)
44+
- Removing the support for the old csv format that was marked `deprecated` back in version `1.1.0` [#795](https://github.com/ie3-institute/PowerSystemDataModel/issues/795)
45+
- BREAKING: Updating PowerSystemUtils dependency to 2.2 [#1006](https://github.com/ie3-institute/PowerSystemDataModel/issues/1006)
3546

3647
## [4.1.0] - 2023-11-02
3748

@@ -54,7 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5465

5566
### Fixed
5667
- Fixed wrong rated power unit hint [#804](https://github.com/ie3-institute/PowerSystemDataModel/issues/804)
57-
- Fixed wrong hash code generation of ConnectorResult [#817](https://github.com/ie3-institute/PowerSystemDataModel/issues/817)
68+
- Fixed wrong hash code generation of ConnectorResult [#817](https://github.com/ie3-institute/PowerSystemDataModel/issues/817)
5869
- Fixed wrong path for timeSeriesMapping [#886](https://github.com/ie3-institute/PowerSystemDataModel/issues/886)
5970

6071
### Changed
@@ -117,7 +128,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
117128
- BREAKING: PvInput Model parameter name height changed to elevationAngle [#393](https://github.com/ie3-institute/PowerSystemDataModel/issues/393) :warning:
118129
- BREAKING: Transformer's no load susceptance needs to be zero or negative to pass model validation [#378](https://github.com/ie3-institute/PowerSystemDataModel/issues/378)
119130
- All input data sets for version < 3.0.0 need to be altered!
120-
- Deprecating (as part of [#513](https://github.com/ie3-institute/PowerSystemDataModel/issues/513)):
131+
- Deprecating (as part of [#513](https://github.com/ie3-institute/PowerSystemDataModel/issues/513)):
121132
- `edu.ie3.datamodel.io.csv.timeseries.ColumnScheme`
122133
- `edu.ie3.datamodel.io.csv.FileNameMetaInformation`
123134
- `edu.ie3.datamodel.io.csv.timeseries.IndividualTimeSeriesMetaInformation`
@@ -207,10 +218,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
207218

208219
### Removed
209220
- BREAKING: Removed deprecated code parts
210-
- Intermingled builder pattern and constructors in `SubGridGate`
211-
- `TarballUtils` that have been transferred to `FileIOUtils` in [_PowerSystemUtils_](https://github.com/ie3-institute/PowerSystemUtils)
212-
- `FileNamingStrategy` that has been transferred to `EntityPersistenceNamingStrategy`
213-
- `EvCharacteristicInput` and `TimeSeriesContainer` that shouldn't be used anymore
221+
- Intermingled builder pattern and constructors in `SubGridGate`
222+
- `TarballUtils` that have been transferred to `FileIOUtils` in [_PowerSystemUtils_](https://github.com/ie3-institute/PowerSystemUtils)
223+
- `FileNamingStrategy` that has been transferred to `EntityPersistenceNamingStrategy`
224+
- `EvCharacteristicInput` and `TimeSeriesContainer` that shouldn't be used anymore
214225

215226
### Fixed
216227
- InfluxDbConnector now keeps session instead of creating a new one each call
@@ -245,7 +256,7 @@ most of the commonly known power flow calculations
245256

246257
### Changed
247258
- Disabled concurrent writing in `CsvFileSink.persistJointGrid()` as this caused concurrency issues
248-
- Modifications in `LineInput` and `GraphicInput` constructors to make `LineStrings` with two exactly equal
259+
- Modifications in `LineInput` and `GraphicInput` constructors to make `LineStrings` with two exactly equal
249260
coordinates or multiple exactly equal coordinates possible
250261
- Extended functionality of `GridAndGeoUtils`
251262
- `CsvFileConnector` is now set up to process either UniqueEntities or only by file name
@@ -266,4 +277,4 @@ coordinates or multiple exactly equal coordinates possible
266277
[2.1.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.0.1...2.1.0
267278
[2.0.1]: https://github.com/ie3-institute/powersystemdatamodel/compare/2.0.0...2.0.1
268279
[2.0.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/1.1.0...2.0.0
269-
[1.1.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/6a49bc514be8859ebd29a3595cd58cd000498f1e...1.1.0
280+
[1.1.0]: https://github.com/ie3-institute/powersystemdatamodel/compare/6a49bc514be8859ebd29a3595cd58cd000498f1e...1.1.0

docs/readthedocs/io/csvfiles.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You may extend / alter the naming with pre- or suffix by calling `new EntityPers
2727
```{eval-rst}
2828
.. list-table::
2929
:widths: auto
30-
:header-rows: 0
30+
:header-rows: 1
3131
3232
* - Model
3333
- File Name
@@ -67,7 +67,7 @@ You may extend / alter the naming with pre- or suffix by calling `new EntityPers
6767
* - load
6868
- *prefix_* load_input *_suffix*
6969
* - photovoltaic power plant
70-
- *prefix_* pc_input *_suffix*
70+
- *prefix_* pv_input *_suffix*
7171
* - electrical energy storage
7272
- | *prefix_* storage_input *_suffix*
7373
| *prefix_* storage_type_input *_suffix*
@@ -86,7 +86,7 @@ You may extend / alter the naming with pre- or suffix by calling `new EntityPers
8686
```{eval-rst}
8787
.. list-table::
8888
:widths: 50 50
89-
:header-rows: 0
89+
:header-rows: 1
9090
9191
* - Model
9292
- File Name
@@ -106,14 +106,9 @@ For example, you have an IndividualTimeSeries CSV file for energy prices, then y
106106
for columnScheme `its_c_2fcb3e53-b94a-4b96-bea4-c469e499f1a1.csv`.
107107
The CSV file must then have the appropriate format for the key `c` :
108108

109-
```{eval-rst}
110-
.. list-table::
111-
:widths: auto
112-
:header-rows: 0
113-
114-
* - ``time,price``
115-
* - 2020-01-01T00:00:00Z;100.0
116-
109+
```
110+
time,price
111+
2020-01-01T00:00:00Z,100.0
117112
```
118113

119114
The CSV file requires a unique identification number.
@@ -125,7 +120,7 @@ The following keys are supported until now:
125120
```{eval-rst}
126121
.. list-table::
127122
:widths: auto
128-
:header-rows: 0
123+
:header-rows: 1
129124
130125
* - Key
131126
- Information and supported head line
@@ -158,7 +153,7 @@ The following keys are supported until now:
158153
```{eval-rst}
159154
.. list-table::
160155
:widths: auto
161-
:header-rows: 0
156+
:header-rows: 1
162157
163158
* - Model
164159
- File Name

0 commit comments

Comments
 (0)