Skip to content

Dimension information of the outputs #155

Discussion options

You must be logged in to vote

The outputs lose their names when they are written to csv files, but you can see them in GAMS. The e_report.gms file includes all of the outputs that are written by the model. It will show their indices, units, and how they are calculated. For example, if you search e_report.gms for cap_new_bin_out, you'll see this:

cap_new_bin_out(i,v,r,t,rscbin) "--MW-- capacity of built techs"

You'll also see the how cap_new_bin_out is calculated:

cap_new_bin_out(i,v,r,t,rscbin)$[rsc_i(i)$valinv(i,v,r,t)] = INV_RSC.l(i,v,r,rscbin,t) / ilr(i) ;
cap_new_bin_out(i,v,r,t,"bin1")$[(not rsc_i(i))$valinv(i,v,r,t)] = INV.l(i,v,r,t) / ilr(i) ;

If you need to know what specific indices are in GAMS, you can sear…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@cassiemavs
Comment options

Answer selected by cassiemavs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants