Predefined Controllers

Basic Controller

The basic controller is the base controller class that should be subclassed when implementing custom controllers.

class pandapower.control.basic_controller.Controller(net, in_service=True, order=0, level=0, index=None, recycle=False, drop_same_existing_ctrl=False, initial_powerflow=True, overwrite=False, **kwargs)

Base-Class of all controllable elements within a network.

add_controller_to_net(self, in_service, order, level, index, recycle, drop_same_existing_ctrl, overwrite, **kwargs)

adds the controller to net[‘controller’] dataframe.

INPUT:

in_service (bool) - in service status

order (int) - order

index (int) - index

recycle (bool) - if controller needs a new bbm (ppc, Ybus…) or if it can be used with prestored values. This is mostly needed for time series calculations

control_step(self)

If the is_converged method returns false, the control_step will be called. In other words: if the controller did not converge yet, this method should implement actions that promote convergence e.g. adapting actuating variables and writing them back to the data structure.

finalize_control(self)

Some controller require extended finalization. This method is being called at the end of a loadflow. It is a separate method from restore_init_state because it is possible that control finalization does not only restore the init state but also something in addition to that, that would require the results in net

finalize_step(self)

Note

This method is ONLY being called during time-series simulation!

After each time step, this method is being called to clean things up or similar. The OutputWriter is a class specifically designed to store results of the loadflow. If the ControlHandler.output_writer got an instance of this class, it will be called before the finalize step.

initialize_control(self)

Some controller require extended initialization in respect to the current state of the net (or their view of it). This method is being called after an initial loadflow but BEFORE any control strategies are being applied.

This method may be interesting if you are aiming for a global controller or if it has to be aware of its initial state.

is_converged(self)

This method calculated whether or not the controller converged. This is where any target values are being calculated and compared to the actual measurements. Returns convergence of the controller.

repair_control(self)

Some controllers can cause net to not converge. In this case, they can implement a method to try and catch the load flow error by altering some values in net, for example load scaling. This method is being called in the except block in run_control. Either implement this in a controller that is likely to cause the error, or define a special “load flow police” controller for your use case

restore_init_state(self)

Some controllers manipulate values in net and then restore them back to initial values, e.g. DistributedSlack. This method should be used for such a purpose because it is executed in the except block of run_control to make sure that the net condition is restored even if load flow calculation doesn’t converge

set_active(self, in_service)

Sets the controller in or out of service

set_recycle(self)

Checks the recyclability of this controller and changes the recyclability of the control handler if necessary. With this a faster time series calculation can be achieved since not everything must be recalculated.

Beware: Setting recycle wrong can mess up your results. Set it to False in init if in doubt!

time_step(self, time)

It is the first call in each time step, thus suited for things like reading profiles or prepare the controller for the next control step.

Note

This method is ONLY being called during time-series simulation!

ConstControl

This controller is made for the use with the time series module to read data from a DataSource and write it to the net.

class pandapower.control.controller.const_control.ConstControl(net, element, variable, element_index, profile_name=None, data_source=None, scale_factor=1.0, in_service=True, recycle=True, order=0, level=0, drop_same_existing_ctrl=False, set_q_from_cosphi=False, matching_params=None, initial_powerflow=False, **kwargs)

Class representing a generic time series controller for a specified element and variable Control strategy: “No Control” -> just updates timeseries

INPUT:

net (attrdict) - The net in which the controller resides

element - element table (‘sgen’, ‘load’ etc.)

variable - variable (‘p_mw’, ‘q_mvar’, ‘vm_pu’, ‘tap_pos’ etc.)

element_index (int[]) - IDs of the controlled elements

data_source (obj) - The data source that provides profile data

profile_name (str[]) - The profile names of the elements in the data source

OPTIONAL:

scale_factor (real, 1.0) - Scaling factor for time series input values

in_service (bool, True) - Indicates if the controller is currently in_service

recycle (bool, True) - Re-use of internal-data in a time series loop.

drop_same_existing_ctrl (bool, False) - Indicates if already existing controllers of the same type and with the same matching parameters (e.g. at same element) should be dropped

Note

If multiple elements are represented with one controller, the data source must have integer columns. At the moment, only the DFData format is tested for the multiple const control.

control_step(self)

Write to pandapower net by calling write_to_net()

initialize_control(self)

At the beginning of each run_control call reset applied-flag

is_converged(self)

Actual implementation of the convergence criteria: If controller is applied, it can stop

set_recycle(self)

Checks the recyclability of this controller and changes the recyclability of the control handler if necessary. With this a faster time series calculation can be achieved since not everything must be recalculated.

Beware: Setting recycle wrong can mess up your results. Set it to False in init if in doubt!

time_step(self, time)

Get the values of the element from data source

write_to_net(self)

Writes to self.element at index self.element_index in the column self.variable the data from self.values

TrafoController

The following controllers to control tap changers are predefined within the pandapower control module.

Continuous Tap Control

class pandapower.control.controller.trafo.ContinuousTapControl.ContinuousTapControl(net, tid, vm_set_pu, tol=0.001, side='lv', trafotype='2W', in_service=True, check_tap_bounds=True, level=0, order=0, drop_same_existing_ctrl=False, **kwargs)

Trafo Controller with local tap changer voltage control.

INPUT:

net (attrdict) - Pandapower struct

tid (int) - ID of the trafo that is controlled

vm_set_pu (float) - Maximum OLTC target voltage at bus in pu

OPTIONAL:

tol (float, 0.001) - Voltage tolerance band at bus in percent (default: 1% = 0.01pu)

side (string, “lv”) - Side of the transformer where the voltage is controlled

trafo_type (float, “2W”) - Trafo type (“2W” or “3W”)

in_service (bool, True) - Indicates if the controller is currently in_service

check_tap_bounds (bool, True) - In case of true the tap_bounds will be considered

drop_same_existing_ctrl (bool, False) - Indicates if already existing controllers of the same type and with the same matching parameters (e.g. at same element) should be dropped

control_step(self)

Implements one step of the ContinuousTapControl

is_converged(self)

The ContinuousTapControl is converged, when the difference of the voltage between control steps is smaller than the Tolerance (tol).


Discrete Tap Control

class pandapower.control.controller.trafo.DiscreteTapControl.DiscreteTapControl(net, tid, vm_lower_pu, vm_upper_pu, side='lv', trafotype='2W', tol=0.001, in_service=True, order=0, drop_same_existing_ctrl=False, **kwargs)

Trafo Controller with local tap changer voltage control.

INPUT:

net (attrdict) - Pandapower struct

tid (int) - ID of the trafo that is controlled

vm_lower_pu (float) - Lower voltage limit in pu

vm_upper_pu (float) - Upper voltage limit in pu

OPTIONAL:

side (string, “lv”) - Side of the transformer where the voltage is controlled (hv or lv)

trafotype (float, “2W”) - Trafo type (“2W” or “3W”)

tol (float, 0.001) - Voltage tolerance band at bus in Percent (default: 1% = 0.01pu)

in_service (bool, True) - Indicates if the controller is currently in_service

drop_same_existing_ctrl (bool, False) - Indicates if already existing controllers of the same type and with the same matching parameters (e.g. at same element) should be dropped

control_step(self)

Implements one step of the Discrete controller, always stepping only one tap position up or down

is_converged(self)

Checks if the voltage is within the desired voltage band, then returns True