Objective = Objective + C(j)*P(j,t)+SUcost(j,t); % euation number 1 of paper
%% StartUp Cost
Constraints = [Constraints, SUcost(j,t) >= K(j,t)*(v(j,t)-sum(v(j,t-1:1)))]; % equation number 16 of paper
Constraints = [Constraints, SUcost(j,t) >= 0]; % equation number 17 of paper
professor, i've written above equations. since startup cost is in the equation of objective function and we need to minimize that function, and there is a K in equation of startup cost. My question is that when and where i need to calculate K(j,t). for the time being i,ve used K as constant matrix of diementions JxT
, where J is set of generators and T is set of time periods.
i,ve attatched another paper in which equation A2 in appendix is related to calculation of K. i want to use this equation of K to calculate at each time t
please tell me when and where i need to calculate the value of K
2- is my logic is fine to calculate offline time periods of a generator if it has been offline before startup at time t.
thanks