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/src/background/releasenotes.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# [Release Notes](@id ReleaseNotes)
2
2
3
+
4
+
---
5
+
6
+
## Version 0.5.1
7
+
8
+
Release Date: July 12, 2025
9
+
10
+
#### Added
11
+
* Introduced the `optimal` keyword in the function [`powerSystem`](@ref powerSystem) to skip importing data related to optimal power flow analyses, see [Partial Load for Faster Import](@ref PartialLoadFasterImportManual).
12
+
13
+
#### Other
14
+
* Removed unused parameters from the `PowerSystem` type.
Copy file name to clipboardExpand all lines: docs/src/manual/powerSystemModel.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,15 @@ system = powerSystem("C:/hdf5/case14.h5")
67
67
68
68
---
69
69
70
+
##### [Partial Load for Faster Import](@id PartialLoadFasterImportManual)
71
+
A significant portion of data in input files may relate to optimal power flow analysis. If AC or DC optimal power flow is not needed, users can skip importing this additional data by setting the `optimal` keyword to `false`. For example:
72
+
```julia
73
+
system =powerSystem("C:/matpower/case14.m"; optimal =false)
74
+
```
75
+
This reduces memory usage and speeds up data loading, which is especially useful for large-scale systems.
76
+
77
+
---
78
+
70
79
##### Model from Scratch
71
80
Alternatively, the model can be built from scratch using built-in functions, for example:
0 commit comments