forked from DREAM-DK/MAKRO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gekko.ini
29 lines (23 loc) · 1.32 KB
/
gekko.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// ---------------------------------------------------------------------------------------------------------------------
// CHANGE THESE!
// ---------------------------------------------------------------------------------------------------------------------
GLOBAL:%GAMSDIR = 'C:\GAMS\37';
// ---------------------------------------------------------------------------------------------------------------------
// FEEL FREE TO CHANGE THESE
// ---------------------------------------------------------------------------------------------------------------------
mode mixed;
// OPTION databank create auto = no;
OPTION print width = 180;
OPTION series array print missing = skip;
OPTION series array calc missing = zero;
OPTION interface remote = yes;
OPTION interface remote file = 'C:\Temp\Gekko_sublime\remote.gcm';
OPTION interface alias = yes;
OPTION plot using = 'Analysis\Templates\MAKRO_plot_style.xml';
OPTION model type = gams;
OPTION model gams dep method = eqname;
model <gms> Model\Expanded\model.gmy; // Read model equations;
// ---------------------------------------------------------------------------------------------------------------------
// DO NOT CHANGE THESE
// ---------------------------------------------------------------------------------------------------------------------
RUN Analysis\gcm\gekko_functions.gcm;