Skip to content

Commit

Permalink
Release/8.3.1 (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes authored Aug 23, 2022
1 parent 5a9ee2f commit 713f167
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 2 deletions.
15 changes: 15 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Antares Changelog
=================

v8.3.1 (08/2022)
--------------------
### New features
- Add execution-info.ini output file, containing execution durations and study info #740 #803 #816
- OR-Tools: set solver-specific options for XPRESS #796

### Bug fixes
- Fix missing renewable columns in districts (sets of areas) #802

### GUI
- Fix wrong number of cores in the "Run a simulation" window #793

### For developers
- Bump C++11 to C++17

v8.3.0 (07/2022)
--------------------
### New features
Expand Down
44 changes: 44 additions & 0 deletions docs/reference-guide/13-file-format.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,50 @@
# Study format changes
This is a list of all recent changes that came with new Antares Simulator features. The main goal of this document is to lower the costs of changing existing interfaces, both GUI and scripts.

## v8.3.1
### Output
Add file **execution_info.ini**, containing information about the execution time for the various steps of a study, as well as study related information that affects performance.

```ini
[durations_ms]
hydro_ventilation = 7
mc_years = 693
post_processing = 0
study_loading = 51
synthesis_export = 731
total = 1526
yby_export = 114

[number_of_calls]
hydro_ventilation = 1
mc_years = 1
post_processing = 1
study_loading = 1
synthesis_export = 1
total = 1
yby_export = 1

[optimization problem]
constraints = 1008
non-zero coefficients = 15894
variables = 1512

[study]
antares version = 831
areas = 3
enabled bc = 0
enabled daily bc = 0
enabled hourly bc = 0
enabled thermal clusters = 1
enabled weekly bc = 0
links = 2
max parallel years = 1
ortools solver = xpress
ortools used = true
performed years = 1
unit commitment = fast
```

## v8.3.0
### Input
In file **settings/generaldata.ini**, add section `adequacy patch`, with properties
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 3)
set(ANTARES_VERSION_REVISION 0)
set(ANTARES_VERSION_REVISION 1)
set(ANTARES_VERSION_YEAR 2022)

project(antares
Expand Down
2 changes: 1 addition & 1 deletion vcpkg_manifest/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "antares-simulator",
"version-string": "8.3.0",
"version-string": "8.3.1",
"dependencies": [
"wxwidgets",
"boost-test"
Expand Down

0 comments on commit 713f167

Please sign in to comment.