plot_topology#

relsad.visualization.plotting.plot_topology(buses: list, lines: list, ict_nodes: Optional[list] = None, ict_lines: Optional[list] = None, bus_text: bool = True, line_text: bool = False, circuitbreaker_text: bool = False, disconnector_text: bool = False, intelligent_switch_text: bool = False, sensor_text: bool = False, text_dx: tuple = (0, - 0.1), **kwargs)[source]#

Plots the system topology

Parameters
  • buses (list) – List with Bus elements in the system

  • lines (list) – List with Line elements in the system

  • bus_text (bool) – Flag determining if bus name will be plotted

  • line_text (bool) – Flag determining if line name will be plotted

  • circuitbreaker_text (bool) – Flag determining if circuitbreaker name will be plotted

  • disconnector_text (bool) – Flag determining if disconnector name will be plotted

  • intelligent_switch_text (bool) – Flag determining if intelligent switch name will be plotted

  • sensor_text (bool) – Flag determining if sensor name will be plotted

  • **kwargs (dict) – Plotting keyword arguments.

Returns

  • fig (figure) – Figure of the system topology

  • None