Good Morning GAMS lovers!
I have a small question regarding syntax of variables and parameters expressions: whenever I define a parameter and want to write an expression for that parameter I need to write again “Parameter” before defining the next parameter (see below in bold). Else GAMSide indicates me on its colourful way that there is a syntax issue.
For compactness reasons in long codes I would like to have the possibility to not write “Parameter” or “Variable” every time after an expression…do you know any workaround for that?
Parameter
AH Maximum absolute humidity in hood in g water.(kg dry air)-1 ;
AH = 4.8101exp(0.0577dp);
Parameter
l(c) latent heat for the steam condensation at pr(c) in kJ.kg-1;
l(c)= 1.6807*pr(c)pr(c)-40.975pr(c)+2270.9 ;
Merci!