-
Notifications
You must be signed in to change notification settings - Fork 0
/
Restricoes.py
143 lines (111 loc) · 5.48 KB
/
Restricoes.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
from RecebeDados import RecebeDados;
import jsonpickle;
class Restricoes:
def __init__(self, plan_dados, numAnos, SIN):
# carrega a planilha
self.recebe_dados = plan_dados;
self.numAnos = numAnos;
self.SIN = SIN;
# carrega as informacoes da planilha
self.load();
return;
def load(self):
# inicializa os hashs
self.Step = [];self.LimiteAno =[];self.Igualdade =[];self.IgualdadeMax =[];self.LimiteIncAno=[];self.Proporcao=[];
# define a aba
self.recebe_dados.defineAba("Restricoes_Adicionais");
# percorre todas as linhas
iRest = 1;
while (self.recebe_dados.pegaEscalar("A1", lin_offset=iRest)is not None):
# pega os parametros
tipoProj = self.recebe_dados.pegaEscalar("A1", lin_offset=iRest);
codProj = self.recebe_dados.pegaEscalar("B1", lin_offset=iRest);
tipoRest = self.recebe_dados.pegaEscalar("C1", lin_offset=iRest);
valores = [self.recebe_dados.pegaEscalar("D1", lin_offset=iRest, col_offset=col) for col in range(0,self.numAnos)];
mes = self.recebe_dados.pegaEscalar("D1", lin_offset=iRest, col_offset=self.numAnos);
if not(mes == None):
mes = int(mes)
# cria a restricao
rest = Restricao(tipoProj, codProj, tipoRest, valores, self.SIN, mes);
# adiciona o tipo de restricao
if (tipoRest == "LimiteAno"):
self.LimiteAno.append(rest);
if (tipoRest == "Step"):
self.Step.append(rest);
if (tipoRest == "Igualdade"):
self.Igualdade.append(rest);
if (tipoRest == "IgualdadeMax"):
self.IgualdadeMax.append(rest);
if (tipoRest == "LimiteIncAno"):
self.LimiteIncAno.append(rest);
if (tipoRest == "Proporcao"):
self.Proporcao.append(rest);
iRest = iRest + 1;
return;
class Restricao:
def __init__(self, tipoProj, codProj, tipoRest, valores, SIN, mes):
# pega os parametros que devem ser apenas armazenados
self.tipoProj = tipoProj;
self.tipoRest = tipoRest;
if mes is not None:
mes += -1;
self.mes = mes;
# pega a lista de projetos
codProj = str(codProj);
if tipoProj == "RenovCont":
self.listaProj = [SIN.listaIndGeralProjRenov[int(float(ind)-1)].nomeUsina for ind in codProj.split(";")];
if tipoProj == "Reversivel":
self.listaProj = [SIN.listaIndGeralProjReversivel[int(float(ind)-1)].nomeUsina for ind in codProj.split(";")];
if tipoProj == "Hidro":
self.listaProj = [SIN.listaIndGeralProjUHE[int(float(ind))].nomeUsina for ind in codProj.split(";")];
if tipoProj == "Term":
# o projeto de termica nao subtrai 1 porque o numero eh externo
self.listaProj = [SIN.listaIndGeralProjTerm[int(float(ind))].nomeUsina for ind in codProj.split(";")];
self.valores = valores;
# monta a parte dos anos
self.montaAnos();
if (tipoProj == "Term"):
# no caso das termicas continuas tem que deduzir o teif/ip - quando eh step e tem mais de uma pega o teif/ip da primeira
proj = SIN.listaGeralProjTerm[self.listaProj[0]];
if (tipoRest == "Step"):
s=";"
self.valores[self.anoInicial] = s.join([str(float(v)*proj.fdisp) for v in self.valores[self.anoInicial].split(";")])
else:
for i in range(self.anoInicial, self.anoFinal+1):
self.valores[i] = float(self.valores[i])*proj.fdisp;
# caso seja uma restricao do tipo limite complementa as informacoes necessarios
if (tipoRest == "Step"):
self.montaStep();
if (tipoRest == "Proporcao"):
self.montaProporcao();
# caso de UHE consta o mes
if ((tipoRest == "Igualdade") and (tipoProj == "Hidro")):
self.mes = int(self.valores[self.anoInicial]-1);
if ((tipoRest == "IgualdadeMax") and (tipoProj == "Hidro")):
self.mes = int(self.valores[self.anoInicial]-1);
return;
def montaStep(self):
# configura os parametros limites do step
(self.val_min, self.val_max) = self.valores[self.anoInicial].split(";");
self.val_min = float(self.val_min); self.val_max = float(self.val_max);
return;
def montaAnos(self):
# o primeiro elemento que tem valor diferente de nulo
iAno = 0;
numAnos = len(self.valores);
while ((iAno < numAnos) and (self.valores[iAno] is None)) : iAno = iAno +1;
# joga para anoinicial
self.anoInicial = iAno;
# pega o ano final
while ((iAno < numAnos) and (self.valores[iAno] is not None)) : iAno = iAno +1;
self.anoFinal = iAno-1;
return;
def montaProporcao(self):
# inicializa o dict
self.valoresProj = [[0 for x in range(self.anoFinal-self.anoInicial+1)] for y in range(len(self.listaProj))];
# neste caso os valores tem que estar num dict por periodo
for iano in range(self.anoInicial, self.anoFinal+1):
valores = self.valores[iano].split(";")
for iusi in range(len(self.listaProj)):
self.valoresProj[iusi][iano-self.anoInicial] = float(valores[iusi]);
return;