Skip to content

Commit 6aa8500

Browse files
authored
Merge pull request #705 from Grid2op/dev_1.11.0
ready for version 1.11.0
2 parents 80f7fda + 2dee3e6 commit 6aa8500

33 files changed

+1001
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ WORKDIR /Grid2Op
3535
RUN git pull
3636
RUN git remote update
3737
RUN git fetch --all --tags
38-
RUN git checkout "tags/v1.10.5" -b "v1.10.5-branch"
38+
RUN git checkout "tags/v1.11.0" -b "v1.11.0-branch"
3939
# Install Dependencies
4040
RUN pip3 install .[optional,challenge]
4141
WORKDIR /

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Benjamin Donnot'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.11.0.dev6'
25+
release = '1.11.0'
2626
version = '1.11'
2727

2828

grid2op/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Grid2Op a testbed platform to model sequential decision making in power systems.
1212
"""
1313

14-
__version__ = '1.11.0.dev6'
14+
__version__ = '1.11.0'
1515

1616
__all__ = [
1717
"Action",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"ACTIVATE_STORAGE_LOSS": true,
3+
"ALARM_BEST_TIME": 12,
4+
"ALARM_WINDOW_SIZE": 12,
5+
"ALERT_TIME_WINDOW": 12,
6+
"ALLOW_DISPATCH_GEN_SWITCH_OFF": true,
7+
"ENV_DC": false,
8+
"ENV_DOES_REDISPATCHING": true,
9+
"FORECAST_DC": false,
10+
"HARD_OVERFLOW_THRESHOLD": 2.0,
11+
"IGNORE_INITIAL_STATE_TIME_SERIE": 0,
12+
"IGNORE_MIN_UP_DOWN_TIME": true,
13+
"INIT_STORAGE_CAPACITY": 0.5,
14+
"LIMIT_INFEASIBLE_CURTAILMENT_STORAGE_ACTION": false,
15+
"MAX_LINE_STATUS_CHANGED": 1,
16+
"MAX_SIMULATE_PER_EPISODE": -1,
17+
"MAX_SIMULATE_PER_STEP": -1,
18+
"MAX_SUB_CHANGED": 1,
19+
"NB_TIMESTEP_COOLDOWN_LINE": 0,
20+
"NB_TIMESTEP_COOLDOWN_SUB": 0,
21+
"NB_TIMESTEP_OVERFLOW_ALLOWED": 2,
22+
"NB_TIMESTEP_RECONNECTION": 10,
23+
"NO_OVERFLOW_DISCONNECTION": false,
24+
"SOFT_OVERFLOW_THRESHOLD": 1.0,
25+
"STOP_EP_IF_GEN_BREAK_CONSTRAINTS": false
26+
}
268 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"agent_seed": null,
3+
"backend_type": "PandaPowerBackend_rte_case5_examplePandaPowerBackend",
4+
"chronics_max_timestep": "100",
5+
"chronics_path": "/home/donnotben/Documents/grid2op/grid2op/data/rte_case5_example/chronics/00",
6+
"cumulative_reward": 0.0,
7+
"env_seed": null,
8+
"env_type": "Environment_rte_case5_examplePandaPowerBackend",
9+
"grid_path": "/home/donnotben/Documents/grid2op/grid2op/data/rte_case5_example/grid.json",
10+
"nb_timestep_played": 1
11+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"Agent": {
3+
"total": 5.1873001211788505e-05
4+
},
5+
"Env": {
6+
"apply_act": 0.004520539998338791,
7+
"observation_computation": 0.0,
8+
"powerflow_computation": 0.15958044999933918,
9+
"total": 0.16410098999767797
10+
},
11+
"total": 0.1664611470005184
12+
}

0 commit comments

Comments
 (0)