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

Simulation on current state reapply actual_dispatch when a redispatch action has been applied before #598

Open
marota opened this issue Mar 27, 2024 · 7 comments
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@marota
Copy link
Contributor

marota commented Mar 27, 2024

Environment

  • Grid2op version: 1.9.8
  • System: ubuntu20.04, ...

Bug description

When simulating on the current state, we would expect the same injections, in particular the same productions. This is verified when no action is performed for instance. But once a redispatch action is applied at some step, the later simulations on the current state don't verify that any more. This leads to wrong simulation result.

How to reproduce

Command line

# command line used if any 

Code snippet

import grid2op
from lightsim2grid import LightSimBackend

bkClass = LightSimBackend

timestep_simu=0
env = grid2op.make("l2rpn_case14_sandbox", backend=bkClass())

obs, *_ =env.step(env.action_space({}))

obs_simulate, *_ =obs.simulate(env.action_space({}),time_step=timestep_simu)

#no redispatch action yet, the productions are the same after simulation on the same state
assert((obs_simulate.prod_p==obs.prod_p).all())

act = env.action_space()
act.redispatch={"gen_2_1": 2.0}

obs, *_ =env.step(act)
obs_simulate, *_ =obs.simulate(env.action_space({}),time_step=timestep_simu)

print(obs.actual_dispatch)
print(obs.target_dispatch)
#a redispatch action has been performed before and actual_dispatch is non non. The productions are not the same anymoreafter simulation on the same state
#actual dispatch has been reapplied to the productions in the simulation whereas it was already part of that chronic
print(obs_simulate.prod_p)
print(obs.prod_p+obs.actual_dispatch)
assert((obs_simulate.prod_p==obs.prod_p).all())

Current output

The last assert fails and it seems that actual dispatch has been reapplied to the productions when doing the simulation, whereas it was already included in the current observed productions

Expected output

We should always verify (obs_simulate.prod_p==obs.prod_p) when simulating do nothing on the current state
@marota marota added the bug Something isn't working label Mar 27, 2024
@BDonnot
Copy link
Collaborator

BDonnot commented Apr 2, 2024

Hello,

We should always verify (obs_simulate.prod_p==obs.prod_p) when simulating do nothing on the current state

I disagree. A simulation is NOT the current sate.

For example if you have a different solver for simulation or the reality, or if you have noisy observation or if you use different parameters for the solvers in simulation and in the environment (and i'm sure lots of other reasons).

That being said, these are not the issue you faced here.

Your problem is probably related to the slack, only the last generator is modified in your example. When you do a "step" compared to when you do a simulation, you don't start with the exact same "state" (not the same input passed to the solver) so you might end up with different results (slack compensation does not work the same way).

This not a bug grid2op side, this is just yet another case where "simulation is not reality", even in this simplified settings.

@BDonnot BDonnot closed this as completed Apr 2, 2024
@BDonnot BDonnot reopened this Apr 2, 2024
@BDonnot
Copy link
Collaborator

BDonnot commented Apr 2, 2024

There might be a difference in behaviour different than "only the slack" as in fact (what you did not show) all the generators changed, not only the last one. Which is weird indeed.

@marota
Copy link
Contributor Author

marota commented Apr 2, 2024

From my understanding previous dispatch is counted twice on the current state when doing a simulation with no action. This where this is not clear to me. From the forecasts, you actually take the forecasted chronics and apply the actual dispatch on it which is relevant. But on the current state, it is already applied, so why reapplying it ?

@marota
Copy link
Contributor Author

marota commented Apr 2, 2024

And when doing-nothing in this configuration, I would still expect the simulation to return the same productions as in the initial observation. But here the productions where dispatch has been applied some steps before are not the same anymore. This is not only slack related

@BDonnot
Copy link
Collaborator

BDonnot commented Apr 2, 2024

And when doing-nothing in this configuration, I would still expect the simulation to return the same productions as in the initial observation.

In the general case no it will not, even without noise or with the same solver.

Initialisation of the powerflow will be different so output might be different. But it's not what caused the "issue" you showed I agree.

@BDonnot
Copy link
Collaborator

BDonnot commented Apr 2, 2024

The problem here is that the "simulate" is properly defined for redispatching. There are no clear specifications on what it should do in all cases, because redispatching is a "time dependant" attribute and "simulating" time dependant attribute when the time does not change is... not clear.

A clear specification for the behaviour of redispatching in all cases should be done. @marota can you do that for (suppose t is the current step):

  • h = 0 (your case)
  • h = 1, h = 2, h = 3 etc. (normal simulation)
  • h = 2 from (simulation you get when calling simulate on h=1) [chain the call to simulate]

The bug is that the "actual_dispatch" is not updated correctly in the "sim_obs": it should be doubled as you said.

@BDonnot BDonnot added the help wanted Extra attention is needed label Apr 2, 2024
@BDonnot
Copy link
Collaborator

BDonnot commented Apr 2, 2024

And the specifications should also holds for storage units (with the charge and the impact on generators) and the curtailment.

And take into account the case where the redispatching action is "too strong" and cannot be met at "the first time".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants