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
@@ -58,12 +57,13 @@ For a detailed list of all possible parameters refer to the specification docume
58
57
59
58
The PowerModels network data dictionary differs from the Matpower format in the following ways,
60
59
61
-
* All PowerModels components have an `index` parameter, which can be used to uniquely identify that network element.
62
-
* All network parameters are in per-unit and angles are in radians.
63
-
* All non-transformer branches are given nominal transformer values (i.e. a tap of 1.0 and a shift of 0).
64
-
* When present, the `gencost` data is incorporated into the `gen` data, the column names remain the same.
65
-
* Only quadratic active power generation cost functions are supported at this time.
66
-
* Some additional derived values are added to branches, such as line admittance values (see `src/core/data.jl` for details).
60
+
- All PowerModels components have an `index` parameter, which can be used to uniquely identify that network element.
61
+
- All network parameters are in per-unit and angles are in radians.
62
+
- All non-transformer branches are given nominal transformer values (i.e. a tap of 1.0 and a shift of 0).
63
+
- When present, the `gencost` data is incorporated into the `gen` data, the column names remain the same.
64
+
- Only quadratic active power generation cost functions are supported at this time.
65
+
- Some additional derived values are added to branches, such as line admittance values (see `update_derived_values` in `src/core/data.jl` for details).
66
+
- Special treatment is given to the optional `ne_branch` matrix to support the TNEP problem.
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ For the current development version, "checkout" this package with,
37
37
38
38
`Pkg.checkout("PowerModels")`
39
39
40
-
At least one solver is required for running PowerModels. The open-source solver Ipopt is recommended, as it is extremely fast, and can be used to solve a wide variety of the problems and network formulations provided in PowerModels. The Ipopt solver can be installed via tha package manager with,
40
+
At least one solver is required for running PowerModels. The open-source solver Ipopt is recommended, as it is extremely fast, and can be used to solve a wide variety of the problems and network formulations provided in PowerModels. The Ipopt solver can be installed via the package manager with,
41
41
42
42
`Pkg.add("Ipopt")`
43
43
@@ -73,7 +73,7 @@ Extending PowerModels with new problems and formulations will be covered in a an
73
73
74
74
### Modifying Network Data
75
75
76
-
The follow example demonstrates how to modify the network data in Julia.
76
+
The follow example demonstrates how to perform multiple PowerModels solves while modify the network data in Julia,
0 commit comments