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

[ANT-706] Add ST-storage (variant) commands #1629

Closed
laurent-laporte-pro opened this issue Jun 28, 2023 · 0 comments · Fixed by #1630, #1635, #1636, #1637 or #1638
Closed

[ANT-706] Add ST-storage (variant) commands #1629

laurent-laporte-pro opened this issue Jun 28, 2023 · 0 comments · Fixed by #1630, #1635, #1636, #1637 or #1638
Assignees
Milestone

Comments

@laurent-laporte-pro
Copy link
Contributor

laurent-laporte-pro commented Jun 28, 2023

Problem statement

The purpose of this request is to add the CreateSTStorage and RemoveSTStorage commands for creating and deleting short-term storage. These commands are needed to implement the entry points for this new object (#1522). They are used both for managing a study variant and for a RAW study.

Proposed solution

Create a new CreateSTStorage class which inherits from the ICommand class.

The attributes are :

  • area_id: the unique identifier of the area containing this new short-term storage,
  • storage_name: the name of the short-term storage,
  • parameters: short-term storage configuration parameters (INI file),
  • pmax_injection: the Pmax injection matrix (time series),
  • pmax_withdrawal: Pmax withdrawal matrix (time series),
  • lower_rule_curve: the min curve matrix (time series),
  • upper_rule_curve: max curve matrix (time series),
  • inflows: the inflows matrix (time series).

Create a new RemoveSTStorage class which inherits from the ICommand class.

Attributes are :

  • area_id: the unique identifier of the area containing this new short-term storage,
  • storage_id: the unique identifier of the short-term storage to be removed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment