QTOOL Provides some
command line tools for performing piecemeal and systematic
senstivity analysis of GAMS models. Output from this tool is
typically in the form of an Excel pivot table. (Posted 2007)
Here is a simple example of how GAMS can use Excel for comparison of model
results. We begin with a batch file which
peforms computations with different time horizons:
call gams ramsey --horizon=2000 gdx=2000
call gams ramsey --horizon=2010 gdx=2010
call gams ramsey --horizon=2020 gdx=2020
gdxmerge id=cl,il 2000.gdx 2010.gdx 2020.gdx
copy template.xls ramsey.xls
gdxxrw i=merged.gdx o=ramsey.xls par=cl rng=cl clear par=il rng=il clear
start ramsey.xls
Here is the GAMS model and the template Excel file which are referenced in
the batch file.