-
Notifications
You must be signed in to change notification settings - Fork 0
/
EstruturaDados.py
106 lines (69 loc) · 2.15 KB
/
EstruturaDados.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# -*- coding: utf-8 -*-
"""
Created on Thu Jul 28 11:19:49 2016
@author: Claudio
"""
# Modelagem dos dados do Informativo Preliminar Diário da Operação (IPDO)
#
# Data de Ocorrencia dos Dados
class Data():
import datetime
mylist = []
today = datetime.date.today()
mylist.append(today)
# print mylist[0] # imprime o objeto data, não o container
class Quantidade:
# Quantidades de diversas medidas apresentadas no IPDO
def __init__(self):
self.programada = 0
self.verificada = 0
return
class Energia:
# Energia Estimada e Verificada por Fonte
def __init__(self):
self.fonte = ''
self.quantidade = Quantidade()
self.participacao_relacao_sin = 0
return
class IntercambioInternacional():
# Intercambio Discretizado
def __init__(self):
self.discretizado = IntercambioInternacionalDiscretizado()
self.total = Quantidade()
return
class IntercambioInternacionalDiscretizado():
def __init__(self):
self.importacao = Energia()
self.exportacao = Energia()
return
class Subsistema():
def __init__(self):
# self.nome = nome
# self.carga = carga
# self.ghidro = ghidro
# self.gtermo = gtermo
# self.geolica = geolica
# self.gsolar = gsolar
return
class SistemaInterligadoNacional():
def __init__(self,):
self.data = 0
self.producao_energia = Energia()
self.carga = Quantidade()
self.intercambio_inter = IntercambioInternacional()
self.subsistema = Subsistema()
return
# data = Data()
# producao = Energia()
# intercambio_inter = IntercambioInternacional()
#
#
#
# producao.quantidade.programada
# intercambio_inter.exportacao.programada = 100
#
#
# norte = subsistema(nome, 5044, [3546, 1884])
# Trabalhancom com classes
# http://pythonclub.com.br/introducao-classes-metodos-python-basico.html
# https://docs.python.org/3/tutorial/classes.html