I am working on co-optimizing renewables (wind and hydro) expansion and generation while accounting for uncertainty in the generation part. In these problems, one of the common issues is non-linearity in the constraint:
wind generation ≤ random wind energy×installed capacity
Here, random wind energy is the random variable, and installed capacity is the investment decision variable.
By using the policy graph concept, we can easily model the co-optimized problem using SDDP.jl; however, the non-linearity poses a challenge.
Has anyone encountered this issue? How can we avoid this non-linearity or address it?
P.S.: The literature on co-optimizing expansion and generation under uncertainty is limited. The most relevant paper in this regard is:
Generation expansion planning under uncertainty with emissions quotas, Rebbenack 2014
He used a combination of Benders (investment) and SDDP (generation). By using this structure, we can feed a linear problem to SDDP.jl. To the best of my knowledge, SDDP.jl is not easily combined with other approaches yet.
Great.
Yes, I read the manuscript.
Yeah, now I think I can better understand the approach you employed to model the random lambda factor in your problem.
So, to make sure I understood what you said, by this trick, set_normalized_coefficient, we can model the random variable without explicitly defining it, and then our constraint, the multiplication of state and random variable, will be linear. Am I right?
I am not sure how this pertains to the topic, but I will try my chance.
While reading the old and new documentation for SDDP.jl, as well as the SDDP literature, it appears that addressing coefficient uncertainty involves more effort than dealing with RHS uncertainty. Am I right? I would be grateful if you could give me some short hints on the reasons.
My guess is that this is because the uncertainty in the matrix coefficients leads the dual feasibility (our sub-gradients) to be dependent on the realizations since they occur at the dual problem constraint. In other words, the feasible region of the dual problem varies with each realization, which requires a few additional steps to address while implementing SDDP.jl.
P.S: We see the same situation for uncertainty in the objective function.