Scheduling: Maximum power limits #692
victorgarcia98
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Reading through the code of the
StorageScheduler
, I was wondering what would happen to the stock limit in case of resample.The evolution of the stock is described by the following constraint:
I think here we need to multiply by the time
resolution
to convert from power units (device_power_*
) to stock units.Example
Storage of 10MWh with a power limit of 1MW.
If the factor is not introduced, with a resolution of 15min, the stock could change by 1MWh, which would in fact not respect the 1MW limit.
Another alternative would be to limit the power to 250kW, but this is not accurate given that the storage should be able to activate at 1MW for the first 15min of an hour and 0MW for the rest of the periods.
Please, let me know your thoughts on this.
Beta Was this translation helpful? Give feedback.
All reactions