-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUtility.json5
36 lines (36 loc) · 908 Bytes
/
Utility.json5
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
{
// Fuel Type, string
FuelType: "Natural Gas",
// Fuel Unit, string
FuelUnit: "Mcf",
// Fuel Cost $/MMBtu, float
FC: 2.95,
// Natural Gas Cost(for compatibility) $/MMBtu, float, default 2.95
NGC: 2.95,
// Electricity Cost $/kWh, float, default 0.081
EC: 0.081,
// Demand Cost $/kW, float, default 4.22
DC: 4.22,
// Labor Rate $/hour, integer
LR: 40,
// Start month, string
StartMo: "Jul 22",
// End month, string
EndMo: "Jun 23",
// Total Electricity kWh, integer
TotalEkWh: 17622865,
// Total Electricity MMBtu, integer
TotalEBtu: 182210,
// Total demand kW, integer
TotalDkW: 33494,
// Total Electricity Cost, integer
TotalECost: 1560550,
// Total Fuel MMBtu, integer
TotalFBtu: 392327,
// Total Fuel Cost, integer
TotalFCost: 1158864,
// Total Energy MMBtu, integer
TotalBtu: 574536,
// Total Energy Cost, integer
TotalCost: 2719414,
}