Search found 64 matches

by Jarenka
4 years ago
Forum: Archive Google Group
Topic: Large Numbers
Replies: 5
Views: 6960

Re: Large Numbers

Hi, My problem is very similar to above. I get Error: overflow in + operation (addop) I was trying to find a solution to the summation I use in the equation (red line), but I couldn't find a solution with the similar problem. You can see that I use two "T"-temporary variables first to do t...
by Jarenka
4 years ago
Forum: Syntax
Topic: Help with gams, gdx and xlsx
Replies: 6
Views: 4848

Re: Help with gams, gdx and xlsx

I need to transport some parameters from *.gdx file into excel. I would like to do it precisely column by column, no transportation of columns into rows. My code is the following: execute_unload 'VarToBrugegruppe.gdx', qabg quabg qsabg; execute 'gdxxrw VarToBrugegruppe.gdx o=TabelA15.xlsx filter=1 t...
by Jarenka
5 years ago
Forum: Syntax
Topic: Urgent HELP! , GDX output in a loop uses old variable values
Replies: 7
Views: 7725

Re: Urgent HELP! , GDX output in a loop uses old variable values

I have *.gdx files (created externally from R program) that are placed in a different directory "gdx", which is a sub-directory to my working directory. I want to read them in to GAMS. I tried the options above, but they do not work. How can I include them into GAMS from the "gdx"...
by Jarenka
5 years ago
Forum: Syntax
Topic: Urgent HELP! , GDX output in a loop uses old variable values
Replies: 7
Views: 7725

Re: Urgent HELP! , GDX output in a loop uses old variable values

Thank you! It seems it works on my 64bit computer, but I couldn't make it work on 32bit. There is no commend line in GAMS Studio installed on 32bit computer. Anyway, in case when you want to call/include this mymodel.gdx file from that folder, like this: $gdxin mymodel.gdx $load ... you just press F...
by Jarenka
5 years ago
Forum: Syntax
Topic: Urgent HELP! , GDX output in a loop uses old variable values
Replies: 7
Views: 7725

Re: Urgent HELP! , GDX output in a loop uses old variable values

Dear, I have a question concerning gdx-output changing path. I am writing a code in a normal *.gms file named LINE2.gms. I press F10 and automatically comes LINE2.gdx file in the same directory. I would like to have this LINE2.gdx file placed in a different directory, for example: ""gdx&qu...
by Jarenka
5 years ago
Forum: Syntax
Topic: Macros containing equations
Replies: 6
Views: 9287

Re: Macros containing equations

I have been trying to use $macro commend instead of repeating the lines (attached file/snipping shot) 23 times. But I cannot make it work. What I need to do is the following: a. first I recalculate a sector using some variables, b. than I save recalculated values in a variable, c. I clean the variab...
by Jarenka
5 years ago
Forum: Syntax
Topic: searching string in set
Replies: 11
Views: 10781

Re: searching string in set

I have sth like this (se attachment). And I tried to apply your code, but it says: "Lags are not allowed on maps".
by Jarenka
5 years ago
Forum: Syntax
Topic: searching string in set
Replies: 11
Views: 10781

Re: searching string in set

I would like to make a loop from 2014 to 2000 - in ascending order, and not from 2000 to 2014.
by Jarenka
5 years ago
Forum: Syntax
Topic: searching string in set
Replies: 11
Views: 10781

Re: searching string in set

Hi, to be able to compare them I think they should be defined as parameters. Another possibility is to use auxiliary parameters. To search for a string in a set, I usually use the "sameas" command. Bye! Yes, thank you ! I used "sameas" command :) Another think is that I want to ...