Update README.rst
[PyCIM.git] / CIM14 / ENTSOE / Equipment / Wires / __init__.py
blob12b4199b6895038868d4343847c44871385eed88
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 """An extension to the Core and Topology package that models information on the electrical characteristics of Transmission and Distribution networks. This package is used by network applications such as State Estimation, Load Flow and Optimal Power Flow.
22 """
24 from CIM14.ENTSOE.Equipment.Wires.BusbarSection import BusbarSection
25 from CIM14.ENTSOE.Equipment.Wires.LoadBreakSwitch import LoadBreakSwitch
26 from CIM14.ENTSOE.Equipment.Wires.TapChanger import TapChanger
27 from CIM14.ENTSOE.Equipment.Wires.TransformerWinding import TransformerWinding
28 from CIM14.ENTSOE.Equipment.Wires.RegulatingControl import RegulatingControl
29 from CIM14.ENTSOE.Equipment.Wires.ReactiveCapabilityCurve import ReactiveCapabilityCurve
30 from CIM14.ENTSOE.Equipment.Wires.ACLineSegment import ACLineSegment
31 from CIM14.ENTSOE.Equipment.Wires.Disconnector import Disconnector
32 from CIM14.ENTSOE.Equipment.Wires.PhaseTapChanger import PhaseTapChanger
33 from CIM14.ENTSOE.Equipment.Wires.SeriesCompensator import SeriesCompensator
34 from CIM14.ENTSOE.Equipment.Wires.MutualCoupling import MutualCoupling
35 from CIM14.ENTSOE.Equipment.Wires.SynchronousMachine import SynchronousMachine
36 from CIM14.ENTSOE.Equipment.Wires.RatioTapChanger import RatioTapChanger
37 from CIM14.ENTSOE.Equipment.Wires.PowerTransformer import PowerTransformer
38 from CIM14.ENTSOE.Equipment.Wires.EnergyConsumer import EnergyConsumer
39 from CIM14.ENTSOE.Equipment.Wires.Switch import Switch
40 from CIM14.ENTSOE.Equipment.Wires.RegulatingCondEq import RegulatingCondEq
41 from CIM14.ENTSOE.Equipment.Wires.Line import Line
42 from CIM14.ENTSOE.Equipment.Wires.StaticVarCompensator import StaticVarCompensator
43 from CIM14.ENTSOE.Equipment.Wires.ShuntCompensator import ShuntCompensator
44 from CIM14.ENTSOE.Equipment.Wires.Breaker import Breaker
45 from CIM14.ENTSOE.Equipment.Wires.Conductor import Conductor
47 nsURI = "http://iec.ch/TC57/2009/CIM-schema-cim14?profile=http://iec.ch/TC57/2007/profile#Wires"
48 nsPrefix = "cimWires"
51 class WindingType(str):
52 """Values are: tertiary, primary, secondary
53 """
54 pass
56 class TransformerControlMode(str):
57 """Values are: reactive, volt
58 """
59 pass
61 class WindingConnection(str):
62 """Values are: I, Yn, Z, Y, A, D, Zn
63 """
64 pass
66 class RegulatingControlModeKind(str):
67 """Values are: reactivePower, timeScheduled, voltage, activePower, currentFlow, fixed, temperature, powerFactor, admittance
68 """
69 pass
71 class SVCControlMode(str):
72 """Values are: voltage, reactivePower, off
73 """
74 pass
76 class SynchronousMachineType(str):
77 """Values are: condenser, generator_or_condenser, generator
78 """
79 pass
81 class SynchronousMachineOperatingMode(str):
82 """Values are: condenser, generator
83 """
84 pass
86 class PhaseTapChangerKind(str):
87 """Values are: asymmetrical, symmetrical, unknown
88 """
89 pass