Skip to content

Commit

Permalink
Add withdrawal efficiency
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jul 2, 2024
1 parent ff40ec2 commit 1d9db83
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,17 @@ class Properties
std::optional<double> withdrawalNominalCapacity;
/// Not optional Reservoir capacity in MWh, >= 0
std::optional<double> reservoirCapacity;

/// Initial level, <= 1
double initialLevel = initiallevelDefault;
/// Bool to optimise or not initial level
bool initialLevelOptim = false;
/// Efficiency factor between 0 and 1

/// Efficiency factor for injection between 0 and 1
double efficiencyFactor = 1;
/// Efficiency factor for withdrawal between 0 and 1
double withdrawalEfficiency = 1;

// Used to sort outputs
std::string groupName = "OTHER1";
/// cluster name
Expand Down

0 comments on commit 1d9db83

Please sign in to comment.