Hi there,
I’m trying some alteration to the DICE2013 model. I define a set of a hundred values and want to access one value for each period t. I.e. if t=5, I want GAMS to return the fifth value in the parameter cereq.
sets t Time periods (5 years per period) / 1100 /
cereq list of multipliers /v1v100/
I tried:
cereq(t)$ord((cereq)=t)
but that causes the program to crash.
How do I have to do this?
Many thanks