Skip to content

Commit

Permalink
Merge pull request #90 from rjmalves/fix-dsvagua
Browse files Browse the repository at this point in the history
fix-dsvagua
  • Loading branch information
rjmalves authored Jul 18, 2024
2 parents 5477d27 + 52feaaa commit d715596
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.9.1
- Correção nos tamanhos dos campos de vazão desviada do arquivo `dsvagua.dat`

# 1.9.0
- Suporte ao arquivo do NWLISTOP com informação do Custo Futuro por cenário (`custo_futuro.out`)
- Suporte a arquivos do NWLISTOP renomeados: `viol_eletrica.out`, `cviol_eletrica.out`, `viol_pos_vretiruh.out`, `viol_neg_vretiruh.out`.
Expand Down
2 changes: 1 addition & 1 deletion inewave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
e saída do NEWAVE.
"""

__version__ = "1.9.0"
__version__ = "1.9.1"

from . import newave # noqa
from . import nwlistcf # noqa
Expand Down
2 changes: 1 addition & 1 deletion inewave/newave/modelos/dsvagua.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, previous=None, next=None, data=None) -> None:
super().__init__(previous, next, data)
campos_iniciais: List[Field] = [IntegerField(4, 0), IntegerField(3, 6)]
campos_desvios: List[Field] = [
FloatField(6, 10 + 7 * i, 2) for i in range(len(MESES_DF))
FloatField(7, 9 + 7 * i, 2) for i in range(len(MESES_DF))
]
campos_finais: List[Field] = [
IntegerField(4, 94),
Expand Down

0 comments on commit d715596

Please sign in to comment.