Hello everyone, I contact you because I have a problem with my AIMMS code and I can not fix it.
Here is the constraint I want to write :
FlowPlant1,
index domain : (b,l,t) | ord(t)>1
Definition : sum(j | j>= ConvTime(t-1)+1 and j<=ConvTime(t), X(b,l,j))+IPlant(b,l,t-1)=sum(d, Z(b,l,d,t))+IPlant(b,l,t)
I suppose the problem comes from the first sum as the error message is : “There is no operation defined for operator ">=" with arguments of data type element and data type numeric; the arguments themselves are "j" and "ConvTime(t-1) + 1".” , but I don’t understand it well.
Can someone help please?