Changing license to MIT.
[PyCIM.git] / CDPSM / Geographical / IEC61970 / Wires / __init__.py
blob1b6bf0f3e83b39e9cd9addc6ed1f9e2509d90e77
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 CDPSM.Geographical.IEC61970.Wires.Fuse import Fuse
25 from CDPSM.Geographical.IEC61970.Wires.EnergyConsumer import EnergyConsumer
26 from CDPSM.Geographical.IEC61970.Wires.Disconnector import Disconnector
27 from CDPSM.Geographical.IEC61970.Wires.ACLineSegment import ACLineSegment
28 from CDPSM.Geographical.IEC61970.Wires.SynchronousMachine import SynchronousMachine
29 from CDPSM.Geographical.IEC61970.Wires.BusbarSection import BusbarSection
30 from CDPSM.Geographical.IEC61970.Wires.LoadBreakSwitch import LoadBreakSwitch
31 from CDPSM.Geographical.IEC61970.Wires.GroundDisconnector import GroundDisconnector
32 from CDPSM.Geographical.IEC61970.Wires.SeriesCompensator import SeriesCompensator
33 from CDPSM.Geographical.IEC61970.Wires.Junction import Junction
34 from CDPSM.Geographical.IEC61970.Wires.Breaker import Breaker
35 from CDPSM.Geographical.IEC61970.Wires.DCLineSegment import DCLineSegment
36 from CDPSM.Geographical.IEC61970.Wires.Line import Line
37 from CDPSM.Geographical.IEC61970.Wires.PowerTransformer import PowerTransformer
38 from CDPSM.Geographical.IEC61970.Wires.EnergySource import EnergySource
39 from CDPSM.Geographical.IEC61970.Wires.ShuntCompensator import ShuntCompensator
40 from CDPSM.Geographical.IEC61970.Wires.Jumper import Jumper
42 nsURI = "http://iec.ch/TC57/2010/CIM-schema-cim15?profile=http://iec.ch/TC57/2011/iec61968-13/CDPSM/Geographical#Wires"
43 nsPrefix = "cimWires"