Skip to content

Commit

Permalink
Release 8.6.8 (#2195)
Browse files Browse the repository at this point in the history
Remove propery storagecycle for sts #2037

---------

Co-authored-by: Florian OMNES <[email protected]>
Co-authored-by: Abdoulbari Zakir <[email protected]>
  • Loading branch information
3 people authored Jun 28, 2024
1 parent cef33e4 commit e457a04
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
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

0 comments on commit e457a04

Please sign in to comment.