I am new to Julia and I am trying to run an acopf problem, but having trouble on how to loop it for a whole day. I have the active and reactive power demand at each bus for every 30 minutes. Below is the code I have for allocating the same Pb and Qb at each node.
By default, PowerModels.jl builds single-period models.
Solving a multi period problem depends on how you want to solve it.
You could write a for-loop that loops over your data, modifies the network data struct in PowerModels, and solves a new problem for each 30 minute block.