You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Architecture.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Most of the object lifetime rules also applies to buses, with the caveat that bu
18
18
19
19
## Batches
20
20
21
-
Batches of DSS objects and buses generalize some aspects of the API to get or set values in bulk.
21
+
Batches of DSS objects and buses generalize some aspects of the API to get or set values in bulk. Check the [Batches example](#examples/Batches) for a walk-through.
Copy file name to clipboardExpand all lines: docs/changelog.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,15 @@ relevant. See [AltDSS/DSS C-API's repository](https://github.com/dss-extensions/
5
5
6
6
## 0.2.2
7
7
8
-
This release includes a lot more tests, reaching 100% coverage of the *Python* code considering both the public and private tests. The engine was updated to AltDSS/DSS C-API 0.14.3 to include a couple of new features and fixes found during the tests.
8
+
This release includes a lot more tests, reaching 100% coverage of the *Python* code of several important modules, considering both the public and private tests. The engine was updated to AltDSS/DSS C-API 0.14.3 to include a couple of new features and fixes found during the tests.
9
9
10
10
- SystemY: in `AltDSS.SystemY`, return the matrix as a SciPy sparse matrix directly.
11
11
- BusBatch: Add missing `Name` function (the bus names were already exposed in the individual objects and at circuit level in `AltDSS.BusNames`).
12
12
- Batch, creation function `.batch(...)`:
13
13
- Fix by list of indices (`...batch(idx=[0,1,10]`)
14
14
- Add some basic type checks
15
15
- Add support for selecting items by float property (`...batch(kW=0)` or `...batch(kV=[0.0, 1.0])`)
16
+
- Add support for filtering multiple properties (`...batch(Phases=2, kV=[0.0, 1.0])`), and filtering existing batches.
16
17
- CircuitElement/CircuitElementBatch: Complement doc strings; fix some type hints.
17
18
- CircuitElementBatch:
18
19
- Fix `MaxCurrent`. This will require the backend to be updated to v0.14.3.
0 commit comments