-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.model.ts
292 lines (278 loc) · 7.43 KB
/
input.model.ts
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
// GenericPowerOnly
export interface InputModGPO {
CapitalCost: number;
// Electrical and Fuel--base year
ElectricalFuelBaseYear: ElectricalFuelBaseYearInputModGPO;
// Expenses--base year
ExpensesBaseYear: ExpensesBaseYearInputModGPO;
// Taxes
Taxes: TaxesInputMod;
// Financing
Financing: FinancingInputMod;
// Income other than energy
IncomeOtherThanEnergy: IncomeOtherThanEnergyInputMod;
// Escalation/Inflation
EscalationInflation: EscalationInflationInputMod;
// Tax Credit Schedule
TaxCreditFrac: number[];
CarbonCredit: CarbonCredit;
IncludeCarbonCredit: boolean;
FirstYear: number;
}
export interface CarbonCredit {
CreditPrice: number; // $/tonne
CIscore: number; // Carbon Intensity score (gCO2e/MJ)
// Distance an alternative-fueled vehicle travels
// divided by the distance an internal combustion engine vehicle travels
// using the same amount of energy.
EnergyEconomyRatio: number;
}
// GenericCombinedHeatPower
export interface InputModCHP {
CapitalCost: number;
// Electrical and Fuel--base year
ElectricalFuelBaseYear: ElectricalFuelBaseYearInputModCHP;
// Heat-base year
HeatBaseYear: HeatBaseYearInputMod;
// Expenses--base year
ExpensesBaseYear: ExpensesBaseYearInputModGPO;
// Taxes
Taxes: TaxesInputMod;
// Financing
Financing: FinancingInputMod;
// Income other than energy
IncomeOtherThanEnergy: IncomeOtherThanEnergyInputMod;
// Escalation/Inflation
EscalationInflation: EscalationInflationInputMod;
// Tax Credit Schedule
TaxCreditFrac: number[];
CarbonCredit: CarbonCredit;
IncludeCarbonCredit: boolean;
FirstYear: number;
}
// GasificationPower
export interface InputModGP {
// Capital Cost from Gasification Power Generation
CapitalCost: number;
// Electrical and Fuel -- base year from Gasification Power Generation
ElectricalFuelBaseYear: ElectricalFuelBaseYearInputModGP;
// Heat--Base Year
HeatBaseYear: HeatBaseYearInputMod;
// Expenses--Base Year
ExpensesBaseYear: ExpensesBaseYearInputModGP;
// Taxes
Taxes: TaxesInputMod;
// Financing
Financing: FinancingInputMod;
// Income Other Than Energy
IncomeOtherThanEnergy: IncomeOtherThanEnergyInputModGP;
// Escalation/Inflation
EscalationInflation: EscalationInflationInputModGP;
// Tax Rate Schedule
TaxCreditFrac: number[];
CarbonCredit: CarbonCredit;
IncludeCarbonCredit: boolean;
FirstYear: number;
}
// Sensitivity Analysis
export interface InputModSensitivity {
model: string;
input: any;
CapitalCost: {
high: number;
low: number;
};
BiomassFuelCost: {
high: number;
low: number;
};
DebtRatio: {
high: number;
low: number;
};
DebtInterestRate: {
high: number;
low: number;
};
CostOfEquity: {
high: number;
low: number;
};
NetStationEfficiency: {
high: number;
low: number;
};
CapacityFactor: {
high: number;
low: number;
};
}
// Hydrogen
export interface InputModHydrogen {
// Hydrogen Generation
GrossDesignHydrogenCapacity: number;
Feedstock: number;
OverallProductionEfficiency: number;
CapacityFactor: number;
// Capital Cost
CapitalCost: number;
// Expenses--base year
FeedstockCost: number;
OperatingExpensesRate: number;
// Other Revenues or Cost Savings
ElectricalEnergy: number;
IncentivePayments: number;
Capacity: number;
Heat: number;
Residues: number;
// Taxes and Tax credit
FederalTaxRate: number;
StateTaxRate: number;
ProductionTaxCredit: number;
NegativeTaxesOffset: boolean;
// Escalation/Inflation
GeneralInflation: number;
EscalationFeedstock: number;
EscalationElectricalEnergy: number;
EscalationIncentivePayments: number;
EscalationCapacityPayment: number;
EscalationProductionTaxCredit: number;
EscalationHeatSales: number;
EscalationResidueSales: number;
EscalationOther: number;
// Financing
DebtRatio: number;
InterestRateOnDebt: number;
OneYearDebtReserveRequired: boolean;
MARR: number;
EconomicLife: number;
InterestRateOnDebtReserve: number;
// Tax Credit Schedule
TaxCreditFrac: number[];
}
export interface ElectricalFuelBaseYearInputMod {
NetElectricalCapacity: number;
CapacityFactor: number;
MoistureContent: number;
NetStationEfficiency: number;
}
export interface ElectricalFuelBaseYearInputModGPO
extends ElectricalFuelBaseYearInputMod {
FuelHeatingValue: number;
FuelAshConcentration: number;
}
export interface ElectricalFuelBaseYearInputModCHP
extends ElectricalFuelBaseYearInputModGPO {
GrossElectricalCapacity: number;
}
export interface ElectricalFuelBaseYearInputModGP
extends ElectricalFuelBaseYearInputMod {
GrossElectricalCapacity: number;
HHVEfficiency: number;
// NetHHVEfficiency: number;
FractionOfInputEnergy: number; // Dual Fuel if ant, default set to heavy disele
CO: number;
H2: number;
Hydrocarbons: number;
CO2: number;
O2: number;
HHV: number; // Higher Heating Value of Biomass Feedstock to Gasifier (kJ/kg)
AshContent: number;
CarbonConcentration: number;
}
export interface ExpensesBaseYearInputMod {
BiomassFuelCost: number; // FuelCost for GPO and CHP on spreadsheet
LaborCost: number;
MaintenanceCost: number;
InsurancePropertyTax: number;
Utilities: number;
Management: number;
OtherOperatingExpenses: number;
}
export interface ExpensesBaseYearInputModGPO extends ExpensesBaseYearInputMod {
AshDisposal: number;
}
export interface ExpensesBaseYearInputModGP extends ExpensesBaseYearInputMod {
DualFuelCost: number;
WasteTreatment: number;
}
export interface HeatBaseYearInputMod {
AggregateFractionOfHeatRecovered: number;
AggregateSalesPriceForHeat: number;
}
export interface TaxesInputMod {
FederalTaxRate: number;
StateTaxRate: number;
ProductionTaxCredit: number;
}
export interface FinancingInputMod {
DebtRatio: number;
InterestRateOnDebt: number;
EconomicLife: number;
CostOfEquity: number;
}
export interface IncomeOtherThanEnergyInputMod {
CapacityPayment: number;
InterestRateOnDebtReserve: number;
}
export interface IncomeOtherThanEnergyInputModGP
extends IncomeOtherThanEnergyInputMod {
SalesPriceForChar: number;
}
export interface EscalationInflationInputMod {
GeneralInflation: number;
EscalationBiomassFuel: number; // for GPO and CHP this is just EscalationFuel on the spreadsheet
EscalationProductionTaxCredit: number;
EscalationHeatSales: number;
EscalationOther: number;
}
export interface EscalationInflationInputModGP
extends EscalationInflationInputMod {
EscalationDualFuel: number;
EscalationCharSales: number;
}
// Transmission
export interface InputModTransimission {
VoltageClass: string;
ConductorType: string;
Structure: string;
LengthCategory: string;
NewOrReconductor: string;
AverageTerrainMultiplier: number;
Miles: {
Forested: number;
Flat: number;
Wetland: number;
Farmland: number;
Desert: number;
Urban: number;
Hills: number;
Mountain: number;
Zone1: number;
Zone2: number;
Zone3: number;
Zone4: number;
Zone5: number;
Zone6: number;
Zone7: number;
Zone8: number;
Zone9: number;
Zone10: number;
Zone11: number;
Zone12: number;
};
}
// Substation
export interface InputModSubstation {
Voltage: string;
NewOrExisting: string;
CircuitBreakerType: string;
NoLineXFMRPositions: number;
HVDCconverter: string;
TransformerType: string;
MVAratingPerTransformer: number;
NoTransformers: number;
SVCmvarRating: number;
ShuntReactorMVARrating: number;
SeriesCapacitorMVARrating: number;
}