Skip to content

Commit dbb273c

Browse files
Merge branch 'dev' into sp/#957-spi-em
2 parents 2caffb4 + 8423502 commit dbb273c

File tree

7 files changed

+29
-12
lines changed

7 files changed

+29
-12
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,9 @@ docs/readthedocs/_build
242242
**/*.synctex.gz
243243
**/*.synctex(busy)
244244

245-
docs/javadoc
245+
### Metals ###
246+
.metals/
247+
.bloop/
248+
project/**/metals.sbt
249+
250+
docs/javadoc

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Fixed Couchbase integration tests that randomly failed [#755](https://github.com/ie3-institute/PowerSystemDataModel/issues/755)
1616
- Fixed hyperlink in line documentation [#965](https://github.com/ie3-institute/PowerSystemDataModel/issues/965)
1717
- Fixed some tests no failing when they should [#958](https://github.com/ie3-institute/PowerSystemDataModel/issues/958)
18+
- Fixed thermal-house-documentation [#873](https://github.com/ie3-institute/PowerSystemDataModel/issues/873)
19+
- Fixed ElectricVehicle Documentation [#875](https://github.com/ie3-institute/PowerSystemDataModel/issues/875)
20+
- Fixed Equal behavior of `ConnectorResult` [#1001](https://github.com/ie3-institute/PowerSystemDataModel/issues/1001)
1821

1922
### Changed
2023
- Changing from comparing strings to comparing uuids in `EntitySource.findFirstEntityByUuid` [#829](https://github.com/ie3-institute/PowerSystemDataModel/issues/829)

docs/readthedocs/models/input/participant/ev.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Model of an electric vehicle, that is occasionally connected to the grid via an
2020
2121
* - uuid
2222
- --
23-
-
23+
-
2424
2525
* - id
2626
- --
@@ -67,27 +67,31 @@ Model of an electric vehicle, that is occasionally connected to the grid via an
6767
6868
* - uuid
6969
- --
70-
-
70+
-
7171
7272
* - id
7373
- --
7474
- Human readable identifier
7575
7676
* - operator
7777
- --
78-
-
78+
-
7979
8080
* - operationTime
8181
- --
8282
- Timely restriction of operation
8383
8484
* - node
8585
- --
86-
-
86+
-
87+
88+
* - qCharacteristics
89+
- --
90+
- :ref:`Reactive power characteristic<participant-general-q-characteristic>` to follow
8791
8892
* - type
8993
- --
90-
-
94+
-
9195
9296
* - em
9397
- --

docs/readthedocs/models/input/participant/thermalhouse.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,19 @@ This reflects a simple shoe box with transmission losses
1919
2020
* - uuid
2121
- --
22-
-
22+
-
2323
2424
* - id
2525
- --
2626
- Human readable identifier
27+
28+
* - bus
29+
- --
30+
- Thermal bus, the model is connected to
2731
2832
* - operator
2933
- --
30-
-
34+
-
3135
3236
* - operationTime
3337
- --

docs/readthedocs/models/result/participant/ev.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ Result of an electric vehicle, that is occasionally connected to the grid via an
3030
3131
* - p
3232
- MW
33-
-
33+
-
3434
3535
* - q
3636
- MVAr
37-
-
37+
-
3838
3939
* - soc
4040
- %
41-
-
41+
-
4242
4343
```
4444

docs/readthedocs/models/result/participant/thermalhouse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This reflects a simple shoe box with transmission losses
3535
3636
* - indoorTemperature
3737
- °C
38-
-
38+
-
3939
4040
```
4141

src/main/java/edu/ie3/datamodel/models/result/connector/ConnectorResult.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ public void setiBAng(ComparableQuantity<Angle> iBAng) {
115115
public boolean equals(Object o) {
116116
if (this == o) return true;
117117
if (o == null || getClass() != o.getClass()) return false;
118+
if (!super.equals(o)) return false;
118119
ConnectorResult that = (ConnectorResult) o;
119120
return iAMag.equals(that.iAMag)
120121
&& iAAng.equals(that.iAAng)

0 commit comments

Comments
 (0)