rte-france / Grid2Op

Grid2Op a testbed platform to model sequential decision making in power systems.
https://grid2op.readthedocs.io/
Mozilla Public License 2.0
288 stars 116 forks source link

Env L2RPN_WCCI_2022 - A weird substation #375

Closed marota closed 1 year ago

marota commented 1 year ago

One substation ("72") has only one line connected to it and nothing else in "l2rpn_wcci_2022": image

This makes this substation pointless (and also for consistancy you at least expect to have 2 elements per substation). So maybe something to check when creating/loading an environment:

"n_sub_elements>=2" so np.all(env.sub_info>=2)

BDonnot commented 1 year ago

Thanks for noticing.

Can you check in the pandapower file what's on this substation? This is indeed super weird.

And in the original IEEE 118 too.

Thanks

marota commented 1 year ago

There seems to be a generator (see bus 73 as indexing starts by 1) image

marota commented 1 year ago

And see pandapower, at bus 72 there is a 100MW generator

import pandapower.networks as pn
net = pn.case118()
net.gen

image