Fixing website and API documentation links
[PyCIM.git] / CIM14 / IEC61970 / Core / __init__.py
blob5aea218795f9033525bb63868f84efae5d05edec
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
19 # IN THE SOFTWARE.
21 """Contains the core PowerSystemResource and ConductingEquipment entities shared by all applications plus common collections of those entities. Not all applications require all the Core entities. This package does not depend on any other package except the Domain package, but most of the other packages have associations and generalizations that depend on it.
22 """
24 from CIM14.IEC61970.Core.IdentifiedObject import IdentifiedObject
25 from CIM14.IEC61970.Core.PowerSystemResource import PowerSystemResource
26 from CIM14.IEC61970.Core.Equipment import Equipment
27 from CIM14.IEC61970.Core.ConductingEquipment import ConductingEquipment
28 from CIM14.IEC61970.Core.Curve import Curve
29 from CIM14.IEC61970.Core.BasicIntervalSchedule import BasicIntervalSchedule
30 from CIM14.IEC61970.Core.IrregularIntervalSchedule import IrregularIntervalSchedule
31 from CIM14.IEC61970.Core.RegularIntervalSchedule import RegularIntervalSchedule
32 from CIM14.IEC61970.Core.ConnectivityNodeContainer import ConnectivityNodeContainer
33 from CIM14.IEC61970.Core.EquipmentContainer import EquipmentContainer
34 from CIM14.IEC61970.Core.CurveData import CurveData
35 from CIM14.IEC61970.Core.Bay import Bay
36 from CIM14.IEC61970.Core.PSRType import PSRType
37 from CIM14.IEC61970.Core.GeographicalRegion import GeographicalRegion
38 from CIM14.IEC61970.Core.Terminal import Terminal
39 from CIM14.IEC61970.Core.OperatingParticipant import OperatingParticipant
40 from CIM14.IEC61970.Core.VoltageLevel import VoltageLevel
41 from CIM14.IEC61970.Core.ConnectivityNode import ConnectivityNode
42 from CIM14.IEC61970.Core.BasePower import BasePower
43 from CIM14.IEC61970.Core.Unit import Unit
44 from CIM14.IEC61970.Core.BaseVoltage import BaseVoltage
45 from CIM14.IEC61970.Core.SubGeographicalRegion import SubGeographicalRegion
46 from CIM14.IEC61970.Core.PsrList import PsrList
47 from CIM14.IEC61970.Core.Substation import Substation
48 from CIM14.IEC61970.Core.ReportingGroup import ReportingGroup
49 from CIM14.IEC61970.Core.ReportingSuperGroup import ReportingSuperGroup
50 from CIM14.IEC61970.Core.RegularTimePoint import RegularTimePoint
51 from CIM14.IEC61970.Core.IrregularTimePoint import IrregularTimePoint
52 from CIM14.IEC61970.Core.OperatingShare import OperatingShare
54 nsURI = "http://iec.ch/TC57/2009/CIM-schema-cim14#Core"
55 nsPrefix = "cimCore"
58 class PhaseCode(str):
59 """Enumeration of phase identifiers.
60 Values are: A, AC, AN, ABCN, B, C, BN, CN, splitSecondary12N, ABC, splitSecondary2N, N, ABN, BC, BCN, AB, splitSecondary1N, ACN
61 """
62 pass
64 class BreakerConfiguration(str):
65 """Switching arrangement for Bay.
66 Values are: breakerAndAHalf, singleBreaker, noBreaker, doubleBreaker
67 """
68 pass
70 class CompanyType(str):
71 """Type of company.
72 Values are: municipal, pool, isPrivate
73 """
74 pass
76 class CurveStyle(str):
77 """Style or shape of curve.
78 Values are: rampYValue, straightLineYValues, formula, constantYValue
79 """
80 pass
82 class BusbarConfiguration(str):
83 """Busbar layout for Bay.
84 Values are: mainWithTransfer, ringBus, singleBus, doubleBus
85 """
86 pass