1 # Copyright (C) 2010-2011 Richard Lincoln
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to
5 # deal in the Software without restriction, including without limitation the
6 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7 # sell copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 from CIM14
.CPSM
.Topology
.Core
.IdentifiedObject
import IdentifiedObject
23 class Terminal(IdentifiedObject
):
24 """An electrical connection point to a piece of conducting equipment. Terminals are connected at physical connection points called 'connectivity nodes'.
27 def __init__(self
, connected
=False, TopologicalNode
=None, *args
, **kw_args
):
28 """Initialises a new 'Terminal' instance.
30 @param connected: The connected status is related to a bus-branch model and the TopologicalNode-Terminal relation. True implies the Terminal is connected to the related TopologicalNode and false implies it is not. In a bus-branch model the connected status is used to tell if equipment is disconnected without having to change the connectivity described by the TopologicalNode-Terminal relation. A valid case is that ConductingEquipment can be connected in one end and open in the other. In particular for an ACLineSegment where the charging can be significant this is a relevant case.
31 @param TopologicalNode: The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.
33 #: The connected status is related to a bus-branch model and the TopologicalNode-Terminal relation. True implies the Terminal is connected to the related TopologicalNode and false implies it is not. In a bus-branch model the connected status is used to tell if equipment is disconnected without having to change the connectivity described by the TopologicalNode-Terminal relation. A valid case is that ConductingEquipment can be connected in one end and open in the other. In particular for an ACLineSegment where the charging can be significant this is a relevant case.
34 self
.connected
= connected
36 self
._TopologicalNode
= None
37 self
.TopologicalNode
= TopologicalNode
39 super(Terminal
, self
).__init
__(*args
, **kw_args
)
41 _attrs
= ["connected"]
42 _attr_types
= {"connected": bool}
43 _defaults
= {"connected": False}
45 _refs
= ["TopologicalNode"]
48 def getTopologicalNode(self
):
49 """The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connedtivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would proably not be used.
51 return self
._TopologicalNode
53 def setTopologicalNode(self
, value
):
54 if self
._TopologicalNode
is not None:
55 filtered
= [x
for x
in self
.TopologicalNode
.Terminal
if x
!= self
]
56 self
._TopologicalNode
._Terminal
= filtered
58 self
._TopologicalNode
= value
59 if self
._TopologicalNode
is not None:
60 if self
not in self
._TopologicalNode
._Terminal
:
61 self
._TopologicalNode
._Terminal
.append(self
)
63 TopologicalNode
= property(getTopologicalNode
, setTopologicalNode
)