Load DC
Note
DC Loads, as their AC counterparts, should always have a positive p_mw value, since all power values are given in the consumer system. If you want to model constant generation, use a source_dc instead of a negative load.
See also
Create Function
- pandapower.create_load_dc(net, bus_dc, p_dc_mw, scaling=1.0, type=None, index=None, name=None, in_service=True, controllable=False, **kwargs)
Creates a dc voltage source in a dc grid with an adjustable set point :param **net**: :type **net**: pandapowerNet :param **bus_dc**: :type **bus_dc**: int :param **p_dc_mw**: :type **p_dc_mw**: float
- Parameters:
**name** (str, None)
**index** (int, None)
**in_service** (bool, True)
**scaling** (float, default 1.)
**type** (str)
**controllable** (boolean, default NaN)
net (pandapowerNet)
bus_dc (int | integer)
p_dc_mw (float)
scaling (float)
type (str | None)
index (int | integer | None)
name (str | None)
in_service (bool)
controllable (bool)
- Returns:
index (int) - The unique ID of the created svc
Input Parameters
net.load_dc
Parameter |
Datatype |
Value Range |
Explanation |
name |
string |
name of the load |
|
bus_dc* |
integer |
index of connected bus |
|
p_dc_mw* |
float |
\(\geq 0\) |
active power of the load [MW] |
scaling * |
float |
\(\geq 0\) |
scaling factor for active and reactive power |
in_service* |
boolean |
True / False |
specifies if the load is in service. |
type* |
String |
A string describing the type. |
|
controllable** |
bool |
States if load is controllable or not, load will not be used as a flexibilty if it is not controllable |
*necessary for executing a power flow calculation.
Note
The type is provided as additional information for usage in controller or other applications based on pandapower. It is not considered in the power flow! Together with source_dc one could build a pure multi terminal DC systen. But currently such pure system will not run. A small AC system is still needed, but no connection between both systems is needed.
Electric Model
Loads are modelled as P-buses in the power flow calculation:
What part of the load is considered constant with constant power: The load power values are then defines as:
Result Parameters
net.res_load_dc
Parameter |
Datatype |
Explanation |
p_mw |
float |
resulting active power demand after scaling and after considering voltage dependence [MW] |
The power values in the net.res_load_dc table are equivalent to \(P_{load}\).