For a detailed substation model a TopologicalNode is a set of
connectivity nodes that, in the current network state, are connected
together through any type of closed switches, including jumpers.
Topological nodes changes as the current network state changes (i.e.,
switches, breakers, etc. change state). For a planning model switch
statuses are not used to form TopologicalNodes. Instead they are manually
created or deleted in a model builder tool. TopologialNodes maintained
this way are also called 'busses'.
|
|
__init__(self,
ConnectivityNodes=None,
BaseVoltage=None,
Terminal=None,
*args,
**kw_args)
Initialises a new 'TopologicalNode' instance. |
|
|
|
|
| addConnectivityNodes(self,
*ConnectivityNodes) |
|
|
|
|
| addTerminal(self,
*Terminal) |
|
|
|
|
getBaseVoltage(self)
The base voltage of the topologocial node. |
|
|
|
|
getConnectivityNodes(self)
Several ConnectivityNode(s) may combine together to form a single
TopologicalNode, depending on the current state of the network. |
|
|
|
|
getTerminal(self)
The terminals associated with the topological node. |
|
|
|
|
| removeConnectivityNodes(self,
*ConnectivityNodes) |
|
|
|
|
| removeTerminal(self,
*Terminal) |
|
|
|
|
| setBaseVoltage(self,
value) |
|
|
|
|
| setConnectivityNodes(self,
value) |
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|