forked from NRCan-IETS-CE-O-HBC/HTAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Genopt-H2K-INI.GO-ini
140 lines (99 loc) · 3.54 KB
/
Genopt-H2K-INI.GO-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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* GenOpt initialization file for housing optimization work.
*/
Simulation{
// Files used during optimization
Files{
// Name and path to file containing input template
Template{
File1 = "HTAP-Template.choices";
Path1 = "./";
}
// Name and path to target file
Input{
File1 = "GenOpt-picked-these-choices.GO-tmp";
Path1 = "./";
SavePath1 = "./ArchGOChoiceFiles/";
}
// Log file containing simulator messages
Log{
File1 = "SubstitutePL-log.txt";
}
// File containing simulator results
Output{
File1 = "SubstitutePL-output.txt";
}
// File explaining how to start simulator.
Configuration{
File1 = "Genopt-GENERIC-CONFIG.GO-config";
}
} // end Simulation.Files
// Simulator command:
CallParameter {
Prefix = "Ruby substitute-h2k.rb";
Suffix = " -v -c GenOpt-picked-these-choices.GO-tmp -o HOT2000.options";
}
ObjectiveFunctionLocation {
// Rules for decoding ESP-r output. Genopt will read the text
// immediately after the last occurrence of the given delimiter
// Note to editor: Ensure column spacing is maintained.
// Cost function to be optimized
Name1 = SimplePaybackYrs ;
Delimiter1 = "SimplePaybackYrs = ";
Name2 = EnergyTotal ;
Delimiter2 = "Energy-Total-GJ = ";
Name3 = UtilBillNoPVRevenueDoll;
Delimiter3 = "Util-Bill-gross = ";
Name4 = UtilRevenuePVDoll;
Delimiter4 = "Util-PV-revenue = ";
Name5 = UtilBillNetDoll;
Delimiter5 = "Util-Bill-Net = ";
Name6 = UtilCostElecDoll;
Delimiter6 = "Util-Bill-Elec = ";
Name7 = UtilCostGasDoll;
Delimiter7 = "Util-Bill-Gas = ";
Name8 = UtilCostPropaneDoll;
Delimiter8 = "Util-Bill-Prop = ";
Name9 = UtilCostOilDoll;
Delimiter9 = "Util-Bill-Oil = ";
Name10 = EnergyPVkWh;
Delimiter10 = "Energy-PV-kWh = ";
Name11 = EnergyHeatingGJ;
Delimiter11 = "Energy-HeatingGJ = ";
Name12 = EnergyCoolingGJ;
Delimiter12 = "Energy-CoolingGJ = ";
Name13 = EnergyVentGJ;
Delimiter13 = "Energy-VentGJ = ";
Name14 = EnergyDHWGJ;
Delimiter14 = "Energy-DHWGJ = ";
Name15 = EnergyPlugGJ;
Delimiter15 = "Energy-PlugGJ = ";
Name16 = FuelEleckWh;
Delimiter16 = "EnergyEleckWh = ";
Name17 = FuelNaturalGasM3;
Delimiter17 = "EnergyGasM3 = ";
Name18 = FuelOilL;
Delimiter18 = "EnergyOil_l = ";
Name19 = UpgradeCostDoll ;
Delimiter19 = "Upgrade-cost = ";
Name20 = PVSizekW;
Delimiter20 = "PV-size-kW = ";
Name21 = PEAKHeatingW;
Delimiter21 = "PEAK-Heating-W = ";
Name22 = ERS-Value;
Delimiter22 = "ERS-Value = ";
Name23 = NumTries;
Delimiter23 = "NumTries = ";
Name24 = TEDI_kWh_m2;
Delimiter24 = "TEDI_kWh_m2 = ";
Name25 = MEUI_kWh_m2;
Delimiter25 = "MEUI_kWh_m2 = ";
} // end Simulation.ObjectiveFunctionLocation
} // end Simulation
// Optimization configuration.
Optimization{
Files{
Command {
File1 = "Genopt-H2K-CMD.GO-cmd";
}
}
}