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
.Equipment
.Core
.IdentifiedObject
import IdentifiedObject
23 class OperationalLimitSet(IdentifiedObject
):
24 """A set of limits associated with equipmnet. Sets of limits might apply to a specific temperature, or season for example. A set of limits may contain may different severities of limit levels that would apply to the same equipment. The set may contain limits of different types such as apparent power and current limits or high and low voltage limits that are logically applied together as a set.
27 def __init__(self
, Terminal
=None, Equipment
=None, OperationalLimitValue
=None, *args
, **kw_args
):
28 """Initialises a new 'OperationalLimitSet' instance.
30 @param Terminal: The terminal specifically associated to this operational limit set. If no terminal is associated, all terminals of the equipment are implied.
31 @param Equipment: The equpment to which the limit set applies.
32 @param OperationalLimitValue: Values of equipment limits.
35 self
.Terminal
= Terminal
37 self
._Equipment
= None
38 self
.Equipment
= Equipment
40 self
._OperationalLimitValue
= []
41 self
.OperationalLimitValue
= [] if OperationalLimitValue
is None else OperationalLimitValue
43 super(OperationalLimitSet
, self
).__init
__(*args
, **kw_args
)
49 _refs
= ["Terminal", "Equipment", "OperationalLimitValue"]
50 _many_refs
= ["OperationalLimitValue"]
52 def getTerminal(self
):
53 """The terminal specifically associated to this operational limit set. If no terminal is associated, all terminals of the equipment are implied.
57 def setTerminal(self
, value
):
58 if self
._Terminal
is not None:
59 filtered
= [x
for x
in self
.Terminal
.OperationalLimitSet
if x
!= self
]
60 self
._Terminal
._OperationalLimitSet
= filtered
62 self
._Terminal
= value
63 if self
._Terminal
is not None:
64 if self
not in self
._Terminal
._OperationalLimitSet
:
65 self
._Terminal
._OperationalLimitSet
.append(self
)
67 Terminal
= property(getTerminal
, setTerminal
)
69 def getEquipment(self
):
70 """The equpment to which the limit set applies.
72 return self
._Equipment
74 def setEquipment(self
, value
):
75 if self
._Equipment
is not None:
76 filtered
= [x
for x
in self
.Equipment
.OperationalLimitSet
if x
!= self
]
77 self
._Equipment
._OperationalLimitSet
= filtered
79 self
._Equipment
= value
80 if self
._Equipment
is not None:
81 if self
not in self
._Equipment
._OperationalLimitSet
:
82 self
._Equipment
._OperationalLimitSet
.append(self
)
84 Equipment
= property(getEquipment
, setEquipment
)
86 def getOperationalLimitValue(self
):
87 """Values of equipment limits.
89 return self
._OperationalLimitValue
91 def setOperationalLimitValue(self
, value
):
92 for x
in self
._OperationalLimitValue
:
93 x
.OperationalLimitSet
= None
95 y
._OperationalLimitSet
= self
96 self
._OperationalLimitValue
= value
98 OperationalLimitValue
= property(getOperationalLimitValue
, setOperationalLimitValue
)
100 def addOperationalLimitValue(self
, *OperationalLimitValue
):
101 for obj
in OperationalLimitValue
:
102 obj
.OperationalLimitSet
= self
104 def removeOperationalLimitValue(self
, *OperationalLimitValue
):
105 for obj
in OperationalLimitValue
:
106 obj
.OperationalLimitSet
= None