Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 8.6.8 #2195

Merged
merged 15 commits into from
Jun 28, 2024
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 6)
set(ANTARES_VERSION_REVISION 7)
set(ANTARES_VERSION_REVISION 8)
set(ANTARES_VERSION_YEAR 2024)

project(antares
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,6 @@ bool Properties::loadKey(const IniFile::Property* p)
if (p->key == "name")
return p->value.to<std::string>(this->name);

if (p->key == "storagecycle")
return p->value.to<unsigned int>(this->cycleDuration);

if (p->key == "initiallevel")
return valueForOptional(this->initialLevel);

Expand Down Expand Up @@ -149,7 +146,6 @@ bool Properties::saveToFolder(const std::string& folder) const
s->add("withdrawalnominalcapacity", this->withdrawalNominalCapacity);

s->add("efficiency", this->efficiencyFactor);
s->add("storagecycle", this->cycleDuration);
s->add("initialleveloptim", this->initialLevelOptim);


Expand Down
2 changes: 0 additions & 2 deletions src/libs/antares/study/parts/short-term-storage/properties.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ class Properties
bool initialLevelOptim = false;
// Efficiency factor between 0 and 1
double efficiencyFactor = 1;
// Cycle duration, 1 <= cycleDuration <= 168
unsigned int cycleDuration;
// Used to sort outputs
Group group = Group::Other1;
// cluster name
Expand Down
2 changes: 1 addition & 1 deletion vcpkg
Submodule vcpkg updated 6641 files
Loading