-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove functions from second test and filter ts on scenarios and time…
…steps
- Loading branch information
Juliette-Gerbaux
committed
Jun 28, 2024
1 parent
5b5c2b0
commit 412e62c
Showing
10 changed files
with
18,571 additions
and
389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
# Copyright (c) 2024, RTE (https://www.rte-france.com) | ||
# | ||
# See AUTHORS.txt | ||
# | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
# | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# | ||
# This file is part of the Antares project. | ||
study: | ||
nodes: | ||
- id: N | ||
model: NODE_BALANCE_MODEL | ||
|
||
components: | ||
- id: D | ||
model: FIXED_DEMAND | ||
parameters: | ||
- name: demand | ||
type: timeseries | ||
timeseries: demand-ts | ||
- id: S | ||
model: SPI | ||
parameters: | ||
- name: cost | ||
type: constant | ||
value: 1 | ||
- id: U | ||
model: UNSP | ||
parameters: | ||
- name: cost | ||
type: constant | ||
value: 10000 | ||
- id: G1 | ||
model: GEN | ||
parameters: | ||
- name: p_max | ||
type: constant | ||
value: 410 | ||
- name: p_min | ||
type: constant | ||
value: 180 | ||
- name: cost | ||
type: constant | ||
value: 96 | ||
- name: startup_cost | ||
type: constant | ||
value: 100500 | ||
- name: fixed_cost | ||
type: constant | ||
value: 1 | ||
- name: d_min_up | ||
type: constant | ||
value: 8 | ||
- name: d_min_down | ||
type: constant | ||
value: 8 | ||
- name: nb_units_min | ||
type: constant | ||
value: 0 | ||
- name: nb_units_max | ||
type: constant | ||
value: 1 | ||
- name: min_generating | ||
type: constant | ||
value: 0 | ||
- name: max_generating | ||
type: timeseries | ||
timeseries: series_G1 | ||
- id: G2 | ||
model: GEN | ||
parameters: | ||
- name: p_max | ||
type: constant | ||
value: 90 | ||
- name: p_min | ||
type: constant | ||
value: 60 | ||
- name: cost | ||
type: constant | ||
value: 137 | ||
- name: startup_cost | ||
type: constant | ||
value: 24500 | ||
- name: fixed_cost | ||
type: constant | ||
value: 1 | ||
- name: d_min_up | ||
type: constant | ||
value: 11 | ||
- name: d_min_down | ||
type: constant | ||
value: 11 | ||
- name: nb_units_min | ||
type: constant | ||
value: 0 | ||
- name: nb_units_max | ||
type: constant | ||
value: 3 | ||
- name: min_generating | ||
type: constant | ||
value: 0 | ||
- name: max_generating | ||
type: timeseries | ||
timeseries: series_G2 | ||
- id: G3 | ||
model: GEN | ||
parameters: | ||
- name: p_max | ||
type: constant | ||
value: 275 | ||
- name: p_min | ||
type: constant | ||
value: 150 | ||
- name: cost | ||
type: constant | ||
value: 107 | ||
- name: startup_cost | ||
type: constant | ||
value: 69500 | ||
- name: fixed_cost | ||
type: constant | ||
value: 1 | ||
- name: d_min_up | ||
type: constant | ||
value: 9 | ||
- name: d_min_down | ||
type: constant | ||
value: 9 | ||
- name: nb_units_min | ||
type: constant | ||
value: 0 | ||
- name: nb_units_max | ||
type: constant | ||
value: 4 | ||
- name: min_generating | ||
type: constant | ||
value: 0 | ||
- name: max_generating | ||
type: timeseries | ||
timeseries: series_G3 | ||
|
||
|
||
|
||
connections: | ||
- component1: N | ||
port_1: balance_port | ||
component2: D | ||
port_2: balance_port | ||
|
||
- component1: N | ||
port_1: balance_port | ||
component2: G1 | ||
port_2: balance_port | ||
|
||
- component1: N | ||
port_1: balance_port | ||
component2: G2 | ||
port_2: balance_port | ||
|
||
- component1: N | ||
port_1: balance_port | ||
component2: G3 | ||
port_2: balance_port | ||
|
||
- component1: N | ||
port_1: balance_port | ||
component2: U | ||
port_2: balance_port | ||
|
||
- component1: N | ||
port_1: balance_port | ||
component2: S | ||
port_2: balance_port | ||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.