Antares Simulator
Power System Simulator
Loading...
Searching...
No Matches
StudyInfoCollector.h
1/*
2** Copyright 2007-2024, RTE (https://www.rte-france.com)
3** See AUTHORS.txt
4** SPDX-License-Identifier: MPL-2.0
5** This file is part of Antares-Simulator,
6** Adequacy and Performance assessment for interconnected energy networks.
7**
8** Antares_Simulator is free software: you can redistribute it and/or modify
9** it under the terms of the Mozilla Public Licence 2.0 as published by
10** the Mozilla Foundation, either version 2 of the License, or
11** (at your option) any later version.
12**
13** Antares_Simulator is distributed in the hope that it will be useful,
14** but WITHOUT ANY WARRANTY; without even the implied warranty of
15** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16** Mozilla Public Licence 2.0 for more details.
17**
18** You should have received a copy of the Mozilla Public Licence 2.0
19** along with Antares_Simulator. If not, see <https://opensource.org/license/mpl-2-0/>.
20*/
21//
22// Created by marechaljas on 22/08/23.
23//
24
25#pragma once
26
27#include "antares/study/study.h"
28
29namespace Benchmarking
30{
31class FileContent;
32
34{
35public:
37 study_(study)
38 {
39 }
40
41 void toFileContent(FileContent& file_content);
42
43private:
44 // Methods
45 void areasCountToFileContent(FileContent& file_content);
46 void linksCountToFileContent(FileContent& file_content);
47 void performedYearsCountToFileContent(FileContent& file_content);
48 void enabledThermalClustersCountToFileContent(FileContent& file_content);
49 void enabledBindingConstraintsCountToFileContent(FileContent& file_content);
50 void unitCommitmentModeToFileContent(FileContent& file_content);
51 void maxNbYearsInParallelToFileContent(FileContent& file_content);
52 void solverVersionToFileContent(FileContent& file_content);
53
54 void ORToolsSolver(FileContent& file_content);
55
56 // Member data
57 const Antares::Data::Study& study_;
58};
59
61{
62 unsigned int nbVariables = 0;
63 unsigned int nbConstraints = 0;
64};
65
67{
68public:
70 opt_info_(optInfo)
71 {
72 }
73
74 void toFileContent(FileContent& file_content);
75
76private:
77 const OptimizationInfo& opt_info_;
78};
79} // namespace Benchmarking
Definition study.h:61
Definition file_content.h:30
Definition StudyInfoCollector.h:67
Definition StudyInfoCollector.h:34
Definition StudyInfoCollector.h:61