diff --git a/dev/.documenter-siteinfo.json b/dev/.documenter-siteinfo.json
index 5c2bbf20..5fd998be 100644
--- a/dev/.documenter-siteinfo.json
+++ b/dev/.documenter-siteinfo.json
@@ -1 +1 @@
-{"documenter":{"julia_version":"1.11.1","generation_timestamp":"2024-11-08T12:26:59","documenter_version":"1.7.0"}}
\ No newline at end of file
+{"documenter":{"julia_version":"1.11.1","generation_timestamp":"2024-11-08T12:44:08","documenter_version":"1.7.0"}}
\ No newline at end of file
diff --git a/dev/api/analysis/index.html b/dev/api/analysis/index.html
index 7e905419..706beaa3 100644
--- a/dev/api/analysis/index.html
+++ b/dev/api/analysis/index.html
@@ -10,7 +10,7 @@
end
solve!(system, analysis)
end
-power!(system, analysis)sourceJuliaGrid.injectionPower — Method
The function returns the active and reactive power injections associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
Example
system = powerSystem("case14.h5")
+power!(system, analysis)
The function returns the active and reactive power injections associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -21,7 +21,7 @@
end
solve!(system, analysis)
end
-active, reactive = injectionPower(system, analysis; label = 1)
The function returns the active and reactive power injections from the generators associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
The function returns the active and reactive power injections from the generators associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -32,7 +32,7 @@
end
solve!(system, analysis)
end
-active, reactive = supplyPower(system, analysis; label = 1)
The function returns the active and reactive power values of the shunt element associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
The function returns the active and reactive power values of the shunt element associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -43,7 +43,7 @@
end
solve!(system, analysis)
end
-active, reactive = shuntPower(system, analysis; label = 9)
The function returns the active and reactive power flows at the from-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
The function returns the active and reactive power flows at the from-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -54,7 +54,7 @@
end
solve!(system, analysis)
end
-active, reactive = fromPower(system, analysis; label = 2)
The function returns the active and reactive power flows at the to-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
The function returns the active and reactive power flows at the to-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -65,7 +65,7 @@
end
solve!(system, analysis)
end
-active, reactive = toPower(system, analysis; label = 2)
The function returns the active and reactive power losses across the series impedance of a specific branch within the AC framework. The label keyword argument should correspond to an existing branch label.
The function returns the active and reactive power losses across the series impedance of a specific branch within the AC framework. The label keyword argument should correspond to an existing branch label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -76,7 +76,7 @@
end
solve!(system, analysis)
end
-active, reactive = seriesPower(system, analysis; label = 2)
The function returns the active and reactive power values associated with the charging admittances of a specific branch in the AC framework. The label keyword argument must correspond to an existing branch label.
The function returns the active and reactive power values associated with the charging admittances of a specific branch in the AC framework. The label keyword argument must correspond to an existing branch label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -87,7 +87,7 @@
end
solve!(system, analysis)
end
-active, reactive = chargingPower(system, analysis; label = 2)
The function returns the active and reactive powers associated with a specific generator in the AC framework. The label keyword argument must match an existing generator label.
The function returns the active and reactive powers associated with a specific generator in the AC framework. The label keyword argument must match an existing generator label.
Example
system = powerSystem("case14.h5")
acModel!(system)
analysis = newtonRaphson(system)
@@ -98,69 +98,69 @@
end
solve!(system, analysis)
end
-active, reactive = generatorPower(system, analysis; label = 1)
The function returns the current injection in the polar coordinate system associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
The function returns the current injection in the polar coordinate system associated with a specific bus in the AC framework. The label keyword argument must match an existing bus label.
Example
using Ipopt
system = powerSystem("case14.h5")
acModel!(system)
analysis = acOptimalPowerFlow(system, Ipopt.Optimizer)
solve!(system, analysis)
-magnitude, angle = injectionCurrent(system, analysis; label = 1)
The function returns the current in the polar coordinate system at the from-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
Example
using Ipopt
+magnitude, angle = injectionCurrent(system, analysis; label = 1)
The function returns the current in the polar coordinate system at the from-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
Example
using Ipopt
system = powerSystem("case14.h5")
acModel!(system)
analysis = acOptimalPowerFlow(system, Ipopt.Optimizer)
solve!(system, analysis)
-magnitude, angle = fromCurrent(system, analysis; label = 2)
The function returns the current in the polar coordinate system at the to-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
Example
using Ipopt
+magnitude, angle = fromCurrent(system, analysis; label = 2)
The function returns the current in the polar coordinate system at the to-bus end associated with a specific branch in the AC framework. The label keyword argument must match an existing branch label.
Example
using Ipopt
system = powerSystem("case14.h5")
acModel!(system)
analysis = acOptimalPowerFlow(system, Ipopt.Optimizer)
solve!(system, analysis)
-magnitude, angle = toCurrent(system, analysis; label = 2)
The function returns the current in the polar coordinate system through series impedance associated with a specific branch in the direction from the from-bus end to the to-bus end of the branch within the AC framework. The label keyword argument must match an existing branch label.
Example
using Ipopt
+magnitude, angle = toCurrent(system, analysis; label = 2)
The function returns the current in the polar coordinate system through series impedance associated with a specific branch in the direction from the from-bus end to the to-bus end of the branch within the AC framework. The label keyword argument must match an existing branch label.
Example
using Ipopt
system = powerSystem("case14.h5")
acModel!(system)
analysis = acOptimalPowerFlow(system, Ipopt.Optimizer)
solve!(system, analysis)
-magnitude, angle = seriesCurrent(system, analysis; label = 2)
The function returns the active power injection associated with a specific bus in the DC framework. The label keyword argument must match an existing bus label.
Example
system = powerSystem("case14.h5")
+power!(system, analysis)
The function returns the active power injection associated with a specific bus in the DC framework. The label keyword argument must match an existing bus label.
The function returns the active power injection from the generators associated with a specific bus in the DC framework. The label keyword argument must match an existing bus label.
Example
system = powerSystem("case14.h5")
+injection = injectionPower(system, analysis; label = 2)
The function returns the active power injection from the generators associated with a specific bus in the DC framework. The label keyword argument must match an existing bus label.
The function returns the active power flow at the from-bus end associated with a specific branch in the DC framework. The label keyword argument must match an existing branch label.
Example
system = powerSystem("case14.h5")
+supply = supplyPower(system, analysis; label = 2)
The function returns the active power flow at the from-bus end associated with a specific branch in the DC framework. The label keyword argument must match an existing branch label.
The function returns the active power flow at the to-bus end associated with a specific branch in the DC framework. The label keyword argument must match an existing branch label.
Example
system = powerSystem("case14.h5")
+from = fromPower(system, analysis; label = 2)
The function returns the active power flow at the to-bus end associated with a specific branch in the DC framework. The label keyword argument must match an existing branch label.
This function returns the output active power associated with a specific generator in the DC framework. The label keyword argument must match an existing generator label.
Example
system = powerSystem("case14.h5")
+to = toPower(system, analysis; label = 2)
This function returns the output active power associated with a specific generator in the DC framework. The label keyword argument must match an existing generator label.