Skip to content

Commit

Permalink
Release 8.8.9 (#2393)
Browse files Browse the repository at this point in the history
Reverts PR #2258 commit 8cc64f9.
  • Loading branch information
payetvin authored Sep 12, 2024
1 parent b3d5d60 commit eb52850
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Antares Changelog
=================

8.8.9 (09/2024)
--------------------
* Revert "Fix bug hydro heuristic with mingen (ANT-1825) (#2258)"

8.8.8 (09/2024)
--------------------
## Bugfix
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14) # FetchContent_MakeAvailable
# Version
set(ANTARES_VERSION_HI 8)
set(ANTARES_VERSION_LO 8)
set(ANTARES_VERSION_REVISION 8)
set(ANTARES_VERSION_REVISION 9)

# Beta release
set(ANTARES_BETA 0)
Expand Down
6 changes: 6 additions & 0 deletions src/solver/simulation/sim_calcul_economique.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,12 @@ void SIM_RenseignementProblemeHebdo(const Study& study,
weekGenerationTarget = weekTarget_tmp;

marginGen = weekGenerationTarget;

if (problem.CaracteristiquesHydrauliques[k].NiveauInitialReservoir
< weekTarget_tmp)
{
marginGen = problem.CaracteristiquesHydrauliques[k].NiveauInitialReservoir;
}
}

if (not problem.CaracteristiquesHydrauliques[k].TurbinageEntreBornes)
Expand Down

0 comments on commit eb52850

Please sign in to comment.