forked from Grid2op/grid2op
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adressing feature request rte-france#217
- Loading branch information
Showing
6 changed files
with
1,796 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from grid2op.Action import TopologyAction | ||
from grid2op.Reward import L2RPNReward | ||
from grid2op.Rules import DefaultRules | ||
from grid2op.Chronics import Multifolder | ||
from grid2op.Chronics import GridStateFromFileWithForecasts | ||
from grid2op.Backend import PandaPowerBackend | ||
|
||
config = { | ||
"backend": PandaPowerBackend, | ||
"action_class": TopologyAction, | ||
"observation_class": None, | ||
"reward_class": L2RPNReward, | ||
"gamerules_class": DefaultRules, | ||
"chronics_class": Multifolder, | ||
"grid_value_class": GridStateFromFileWithForecasts, | ||
"volagecontroler_class": None, | ||
"thermal_limits": None, | ||
"names_chronics_to_grid": None | ||
} |
Oops, something went wrong.