@likewatt/models-front 1.38.0 → 1.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/SiteConstants.d.ts +332 -0
- package/dist/core/SiteConstants.js +755 -0
- package/package.json +1 -1
|
@@ -1,4 +1,336 @@
|
|
|
1
1
|
export declare const SiteConstants: {
|
|
2
|
+
readonly defaultPPATarif: {
|
|
3
|
+
siteId: string;
|
|
4
|
+
ppaPrice: number;
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
readonly VERSION: number;
|
|
8
|
+
readonly version: number;
|
|
9
|
+
readonly BTINF_COSTS: {
|
|
10
|
+
power: number;
|
|
11
|
+
capex: number;
|
|
12
|
+
opex: number;
|
|
13
|
+
subvention: number;
|
|
14
|
+
sellingPrice: number;
|
|
15
|
+
}[];
|
|
16
|
+
readonly SURPLUS_COSTS: {
|
|
17
|
+
power: number;
|
|
18
|
+
capex: number;
|
|
19
|
+
opex: number;
|
|
20
|
+
subvention: number;
|
|
21
|
+
sellingPrice: number;
|
|
22
|
+
}[];
|
|
23
|
+
readonly FULL_PRODUCTION_COSTS: {
|
|
24
|
+
power: number;
|
|
25
|
+
capex: number;
|
|
26
|
+
opex: number;
|
|
27
|
+
subvention: number;
|
|
28
|
+
sellingPrice: number;
|
|
29
|
+
}[];
|
|
30
|
+
readonly paramsBattery: {
|
|
31
|
+
batteryLifespan: number;
|
|
32
|
+
batteryMaxSoc: number;
|
|
33
|
+
batteryMinSoc: number;
|
|
34
|
+
batteryYield: number;
|
|
35
|
+
batteryCapexTot: number;
|
|
36
|
+
batteryOpexTot: number;
|
|
37
|
+
batteryCapexTableA: number[];
|
|
38
|
+
batteryCapexTableV: number[];
|
|
39
|
+
batteryOpex: number[];
|
|
40
|
+
batteryDegradRate: number;
|
|
41
|
+
batteryLeasingLifespan: number;
|
|
42
|
+
batteryDepreciationDuration: number;
|
|
43
|
+
};
|
|
44
|
+
readonly paramsConversion: {
|
|
45
|
+
conversionCapexTot: number;
|
|
46
|
+
conversionOpexTot: number;
|
|
47
|
+
conversionCapexTableA: number[];
|
|
48
|
+
conversionCapexTableV: number[];
|
|
49
|
+
conversionLifespan: number;
|
|
50
|
+
conversionYield: number;
|
|
51
|
+
conversionOpex: number[];
|
|
52
|
+
conversionLeasingLifespan: number;
|
|
53
|
+
conversionDepreciationDuration: number;
|
|
54
|
+
};
|
|
55
|
+
readonly paramsFuelCell: {
|
|
56
|
+
fuelCellPower: number;
|
|
57
|
+
fuelCellCapexTot: number;
|
|
58
|
+
fuelCellOpexTot: number;
|
|
59
|
+
fuelCellCapexTableA: number[];
|
|
60
|
+
fuelCellCapexTableV: number[];
|
|
61
|
+
fuelCellAverageH2Consumption: number;
|
|
62
|
+
fuelCellLifespan: number;
|
|
63
|
+
h2Cost: number;
|
|
64
|
+
fuelCellOpex: number[];
|
|
65
|
+
h2PurchaseInflation: number;
|
|
66
|
+
fuelCellLeasingLifespan: number;
|
|
67
|
+
fuelCellDepreciationDuration: number;
|
|
68
|
+
};
|
|
69
|
+
readonly paramsGen: {
|
|
70
|
+
genPower: number;
|
|
71
|
+
genCapexTableA: number[];
|
|
72
|
+
genCapexTableV: number[];
|
|
73
|
+
genCapexTot: number;
|
|
74
|
+
genOpexTot: number;
|
|
75
|
+
fuelCost: number;
|
|
76
|
+
genAverageFuelConsumption: number;
|
|
77
|
+
genLifespan: number;
|
|
78
|
+
genOpex: number[];
|
|
79
|
+
fuelPurchaseInflation: number;
|
|
80
|
+
genLeasingLifespan: number;
|
|
81
|
+
genDepreciationDuration: number;
|
|
82
|
+
};
|
|
83
|
+
readonly paramsGrid: {
|
|
84
|
+
ACI: number;
|
|
85
|
+
energyInflation: number;
|
|
86
|
+
subscriptionRate: number;
|
|
87
|
+
capex: number;
|
|
88
|
+
energyPrices: number[];
|
|
89
|
+
energyPriceTempo: number[];
|
|
90
|
+
subscribedPowers: null[];
|
|
91
|
+
priceBuilder: number;
|
|
92
|
+
offgrid: number;
|
|
93
|
+
isOffgrid: boolean;
|
|
94
|
+
priceBuilderSlots: never[];
|
|
95
|
+
demandMultiplier: number;
|
|
96
|
+
includeTVA: number;
|
|
97
|
+
includeTURPE: number;
|
|
98
|
+
energyInflationRates: {
|
|
99
|
+
id: string;
|
|
100
|
+
period: number;
|
|
101
|
+
energyInflationRate: number;
|
|
102
|
+
}[];
|
|
103
|
+
consumptionReference: string;
|
|
104
|
+
};
|
|
105
|
+
readonly paramsOptimization: {
|
|
106
|
+
discountRate: number;
|
|
107
|
+
CO2ReductionRate: number;
|
|
108
|
+
fullBackup: number;
|
|
109
|
+
medianBackup: number;
|
|
110
|
+
onSiteProductionRate: number;
|
|
111
|
+
tailBackup: number;
|
|
112
|
+
};
|
|
113
|
+
readonly paramsPV: {
|
|
114
|
+
tracker: {
|
|
115
|
+
axisTilt: null;
|
|
116
|
+
backtrack: boolean;
|
|
117
|
+
id: string;
|
|
118
|
+
maxAngle: null;
|
|
119
|
+
share: null;
|
|
120
|
+
trackerType: string;
|
|
121
|
+
};
|
|
122
|
+
pvCapexTableA: number[];
|
|
123
|
+
pvCapexTableV: number[];
|
|
124
|
+
pvOpex: number[];
|
|
125
|
+
pvSub: number[];
|
|
126
|
+
pvCapexTot: number;
|
|
127
|
+
pvOpexTot: number;
|
|
128
|
+
pvSubTot: number;
|
|
129
|
+
pvLeasingTot: boolean;
|
|
130
|
+
pvLeasingRate: number;
|
|
131
|
+
pvSubDuration: number;
|
|
132
|
+
pvPurchasePrice: number[];
|
|
133
|
+
useCase: string;
|
|
134
|
+
orientation: number[];
|
|
135
|
+
panelYield: number;
|
|
136
|
+
pvLifespan: number;
|
|
137
|
+
pvSystemLoss: number;
|
|
138
|
+
pvSurface: number;
|
|
139
|
+
pvLeasingLifespan: number;
|
|
140
|
+
tilt: number[];
|
|
141
|
+
pvDegradRate: number;
|
|
142
|
+
pvPeakPower: number;
|
|
143
|
+
pvMinAutoConsoRate: number;
|
|
144
|
+
pvMaxAutoConsoRate: number;
|
|
145
|
+
pvUsefulArea: number;
|
|
146
|
+
addTurpePV: number;
|
|
147
|
+
pvExistingInstall: number;
|
|
148
|
+
roofTilt: number;
|
|
149
|
+
pvSellingPrice: number[];
|
|
150
|
+
pvPpaBuilderSlots: never[];
|
|
151
|
+
pvProductible: number;
|
|
152
|
+
pvPanelPeakPower: number;
|
|
153
|
+
pvShare: number[];
|
|
154
|
+
pvAoBonus: number;
|
|
155
|
+
pvInvertorPowerRate: number;
|
|
156
|
+
pvDepreciationDuration: number;
|
|
157
|
+
};
|
|
158
|
+
readonly paramsPV2: {
|
|
159
|
+
tracker: {
|
|
160
|
+
axisTilt: null;
|
|
161
|
+
backtrack: boolean;
|
|
162
|
+
id: string;
|
|
163
|
+
maxAngle: null;
|
|
164
|
+
share: null;
|
|
165
|
+
trackerType: string;
|
|
166
|
+
};
|
|
167
|
+
pv2CapexTableA: number[];
|
|
168
|
+
pv2CapexTableV: number[];
|
|
169
|
+
pv2Opex: number[];
|
|
170
|
+
pv2CapexTot: number;
|
|
171
|
+
pv2OpexTot: number;
|
|
172
|
+
pv2SubTot: number;
|
|
173
|
+
pv2LeasingTot: boolean;
|
|
174
|
+
pv2LeasingRate: number;
|
|
175
|
+
useCase2: string;
|
|
176
|
+
aoBonus2: number;
|
|
177
|
+
orientation2: number[];
|
|
178
|
+
panelYield2: number;
|
|
179
|
+
pv2Lifespan: number;
|
|
180
|
+
pv2SystemLoss: number;
|
|
181
|
+
pv2Surface: number;
|
|
182
|
+
tilt2: number[];
|
|
183
|
+
pv2DegradRate: number;
|
|
184
|
+
pv2PeakPower: number;
|
|
185
|
+
pv2MinAutoConsoRate: number;
|
|
186
|
+
pv2MaxAutoConsoRate: number;
|
|
187
|
+
pv2UsefulArea: number;
|
|
188
|
+
addTurpePV2: number;
|
|
189
|
+
pv2ExistingInstall: number;
|
|
190
|
+
roofTilt2: number;
|
|
191
|
+
pv2SellingPrice: number[];
|
|
192
|
+
pv2PpaBuilderSlots: never[];
|
|
193
|
+
pv2Productible: number;
|
|
194
|
+
pv2PanelPeakPower: number;
|
|
195
|
+
pv2Share: number[];
|
|
196
|
+
pv2Aobonus: number;
|
|
197
|
+
pv2InvertorPowerRate: number;
|
|
198
|
+
pv2Sub: number[];
|
|
199
|
+
pv2SubDuration: number;
|
|
200
|
+
pv2PurchasePrice: number[];
|
|
201
|
+
pv2LeasingLifespan: number;
|
|
202
|
+
pv2DepreciationDuration: number;
|
|
203
|
+
};
|
|
204
|
+
readonly paramsVS: {
|
|
205
|
+
capexTableV: number[];
|
|
206
|
+
opex: number[];
|
|
207
|
+
vsEnergyRate: number;
|
|
208
|
+
vsFixRate: number;
|
|
209
|
+
vsOn: number;
|
|
210
|
+
vsPVRate: number;
|
|
211
|
+
vsConnectingRate: number;
|
|
212
|
+
vsMaxCapacity: number;
|
|
213
|
+
vsTurpe: number;
|
|
214
|
+
};
|
|
215
|
+
readonly paramsWindTurbine: {
|
|
216
|
+
wtPower: number;
|
|
217
|
+
wtCapexTableA: number[];
|
|
218
|
+
wtCapexTableV: number[];
|
|
219
|
+
wtOpex: number[];
|
|
220
|
+
wtSellingPrice: number[];
|
|
221
|
+
wtSub: number[];
|
|
222
|
+
wtCapexTot: number;
|
|
223
|
+
wtOpexTot: number;
|
|
224
|
+
wtSubTot: number;
|
|
225
|
+
wtLeasingTot: boolean;
|
|
226
|
+
wtLeasingRate: number;
|
|
227
|
+
wtSubDuration: number;
|
|
228
|
+
wtLifespan: number;
|
|
229
|
+
wtYield: number;
|
|
230
|
+
wtHeight: number;
|
|
231
|
+
wtAutoconsoRate: number;
|
|
232
|
+
wtLeasingLifespan: number;
|
|
233
|
+
addTurpeWT: number;
|
|
234
|
+
wtPpaBuilderSlots: never[];
|
|
235
|
+
wtDepreciationDuration: number;
|
|
236
|
+
};
|
|
237
|
+
readonly paramsElectrolyse: {
|
|
238
|
+
electrolysePower: number;
|
|
239
|
+
electrolyseLifespan: number;
|
|
240
|
+
electrolyseAverageConso: number;
|
|
241
|
+
electrolyseCapexTot: number;
|
|
242
|
+
electrolyseOpexTot: number;
|
|
243
|
+
electrolyseCapexTableA: number[];
|
|
244
|
+
electrolyseCapexTableV: number[];
|
|
245
|
+
electrolyseOpex: number[];
|
|
246
|
+
electrolyseLeasingLifespan: number;
|
|
247
|
+
electrolyseDepreciationDuration: number;
|
|
248
|
+
};
|
|
249
|
+
readonly paramsStockageH2: {
|
|
250
|
+
h2StorageCapacity: number;
|
|
251
|
+
h2StorageLifespan: number;
|
|
252
|
+
h2SellingPrice: number;
|
|
253
|
+
h2StorageCapexTot: number;
|
|
254
|
+
h2StorageOpexTot: number;
|
|
255
|
+
h2StorageCapexTableA: number[];
|
|
256
|
+
h2StorageCapexTableV: number[];
|
|
257
|
+
h2StorageOpex: number[];
|
|
258
|
+
h2StorageLeasingLifespan: number;
|
|
259
|
+
h2StorageDepreciationDuration: number;
|
|
260
|
+
};
|
|
261
|
+
readonly paramsECS: {
|
|
262
|
+
power: number;
|
|
263
|
+
lifespan: number;
|
|
264
|
+
capexTot: number;
|
|
265
|
+
averageConso: number;
|
|
266
|
+
opexTot: number;
|
|
267
|
+
capexTableA: number[];
|
|
268
|
+
capexTableV: number[];
|
|
269
|
+
opex: number[];
|
|
270
|
+
leasingLifespan: number;
|
|
271
|
+
depreciationDuration: number;
|
|
272
|
+
};
|
|
273
|
+
readonly paramsStockageThermal: {
|
|
274
|
+
capacity: number;
|
|
275
|
+
lifespan: number;
|
|
276
|
+
sellingPrice: number;
|
|
277
|
+
capexTot: number;
|
|
278
|
+
opexTot: number;
|
|
279
|
+
capexTableA: number[];
|
|
280
|
+
capexTableV: number[];
|
|
281
|
+
opex: number[];
|
|
282
|
+
depreciationDuration: number;
|
|
283
|
+
};
|
|
284
|
+
readonly paramsStation: {
|
|
285
|
+
stations: never[];
|
|
286
|
+
};
|
|
287
|
+
readonly paramsScenario: {
|
|
288
|
+
discountRate: number;
|
|
289
|
+
taxRate: number;
|
|
290
|
+
debtRatio: number;
|
|
291
|
+
interestRate: number;
|
|
292
|
+
debtDuration: number;
|
|
293
|
+
opexInflation: number;
|
|
294
|
+
sellingPriceInflation: number;
|
|
295
|
+
};
|
|
296
|
+
readonly consumerFiles: {
|
|
297
|
+
CONSO_DATA: string;
|
|
298
|
+
CONSO_DATA_2: string;
|
|
299
|
+
CONSENT: string;
|
|
300
|
+
PV_PROD: string;
|
|
301
|
+
PV2_PROD: string;
|
|
302
|
+
PV_TMY: string;
|
|
303
|
+
WT_PROD: string;
|
|
304
|
+
WT_TMY: string;
|
|
305
|
+
ELECTROLYSIS_DEMAND: string;
|
|
306
|
+
ECS_DEMAND: string;
|
|
307
|
+
DISTRIBKEYS: string;
|
|
308
|
+
};
|
|
309
|
+
readonly COSPHI: number;
|
|
310
|
+
readonly financingType: {
|
|
311
|
+
INVESTMENT: string;
|
|
312
|
+
LEASING: string;
|
|
313
|
+
PPA: string;
|
|
314
|
+
};
|
|
315
|
+
readonly scenarioConfigSite: {
|
|
316
|
+
rateOfGrowth: {
|
|
317
|
+
id: string;
|
|
318
|
+
year: number;
|
|
319
|
+
rate: number;
|
|
320
|
+
}[];
|
|
321
|
+
demandMultiplierSlots: {
|
|
322
|
+
months: {
|
|
323
|
+
month: number;
|
|
324
|
+
year: number;
|
|
325
|
+
}[];
|
|
326
|
+
id: string;
|
|
327
|
+
days: number[];
|
|
328
|
+
startHour: number;
|
|
329
|
+
endHour: number;
|
|
330
|
+
demandMultiplier: number;
|
|
331
|
+
}[];
|
|
332
|
+
consumptionReference: string;
|
|
333
|
+
};
|
|
2
334
|
readonly type: {
|
|
3
335
|
readonly CONSUMER: "CONSUMER";
|
|
4
336
|
readonly CONSUMER_PLUS: "CONSUMER_PLUS";
|
|
@@ -503,4 +503,759 @@ exports.SiteConstants = {
|
|
|
503
503
|
PTE: 'PTE',
|
|
504
504
|
},
|
|
505
505
|
TURPE_VERSION: 1,
|
|
506
|
+
...{
|
|
507
|
+
"defaultPPATarif": {
|
|
508
|
+
"siteId": "",
|
|
509
|
+
"ppaPrice": 0,
|
|
510
|
+
"name": ""
|
|
511
|
+
},
|
|
512
|
+
"VERSION": 2,
|
|
513
|
+
"version": 4,
|
|
514
|
+
"BTINF_COSTS": [
|
|
515
|
+
{
|
|
516
|
+
"power": 3,
|
|
517
|
+
"capex": 6000,
|
|
518
|
+
"opex": 0,
|
|
519
|
+
"subvention": 80,
|
|
520
|
+
"sellingPrice": 4
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"power": 6,
|
|
524
|
+
"capex": 9400,
|
|
525
|
+
"opex": 0,
|
|
526
|
+
"subvention": 80,
|
|
527
|
+
"sellingPrice": 4
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"power": 9,
|
|
531
|
+
"capex": 12100,
|
|
532
|
+
"opex": 0,
|
|
533
|
+
"subvention": 80,
|
|
534
|
+
"sellingPrice": 4
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"power": 12,
|
|
538
|
+
"capex": 15000,
|
|
539
|
+
"opex": 96,
|
|
540
|
+
"subvention": 140,
|
|
541
|
+
"sellingPrice": 5.36
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"power": 15,
|
|
545
|
+
"capex": 19300,
|
|
546
|
+
"opex": 120,
|
|
547
|
+
"subvention": 140,
|
|
548
|
+
"sellingPrice": 5.36
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"power": 24,
|
|
552
|
+
"capex": 29600,
|
|
553
|
+
"opex": 196,
|
|
554
|
+
"subvention": 140,
|
|
555
|
+
"sellingPrice": 5.36
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"power": 30,
|
|
559
|
+
"capex": 37000,
|
|
560
|
+
"opex": 210,
|
|
561
|
+
"subvention": 140,
|
|
562
|
+
"sellingPrice": 5.36
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"power": 36,
|
|
566
|
+
"capex": 44400,
|
|
567
|
+
"opex": 288,
|
|
568
|
+
"subvention": 140,
|
|
569
|
+
"sellingPrice": 5.36
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"SURPLUS_COSTS": [
|
|
573
|
+
{
|
|
574
|
+
"power": 3,
|
|
575
|
+
"capex": 2300,
|
|
576
|
+
"opex": 0,
|
|
577
|
+
"subvention": 80,
|
|
578
|
+
"sellingPrice": 4
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"power": 9,
|
|
582
|
+
"capex": 1800,
|
|
583
|
+
"opex": 0,
|
|
584
|
+
"subvention": 80,
|
|
585
|
+
"sellingPrice": 4
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"power": 36,
|
|
589
|
+
"capex": 1300,
|
|
590
|
+
"opex": 8,
|
|
591
|
+
"subvention": 140,
|
|
592
|
+
"sellingPrice": 5.36
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"power": 100,
|
|
596
|
+
"capex": 1050,
|
|
597
|
+
"opex": 7,
|
|
598
|
+
"subvention": 70,
|
|
599
|
+
"sellingPrice": 5.36
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"power": 500,
|
|
603
|
+
"capex": 1000,
|
|
604
|
+
"opex": 6,
|
|
605
|
+
"subvention": 0,
|
|
606
|
+
"sellingPrice": 8.86
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"power": 10000,
|
|
610
|
+
"capex": 950,
|
|
611
|
+
"opex": 0,
|
|
612
|
+
"subvention": 0,
|
|
613
|
+
"sellingPrice": 0
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"FULL_PRODUCTION_COSTS": [
|
|
617
|
+
{
|
|
618
|
+
"power": 3,
|
|
619
|
+
"capex": 2300,
|
|
620
|
+
"opex": 0,
|
|
621
|
+
"subvention": 0,
|
|
622
|
+
"sellingPrice": 0
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"power": 9,
|
|
626
|
+
"capex": 1800,
|
|
627
|
+
"opex": 0,
|
|
628
|
+
"subvention": 0,
|
|
629
|
+
"sellingPrice": 0
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"power": 36,
|
|
633
|
+
"capex": 1300,
|
|
634
|
+
"opex": 8,
|
|
635
|
+
"subvention": 0,
|
|
636
|
+
"sellingPrice": 9.11
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"power": 100,
|
|
640
|
+
"capex": 1050,
|
|
641
|
+
"opex": 7,
|
|
642
|
+
"subvention": 0,
|
|
643
|
+
"sellingPrice": 7.92
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"power": 500,
|
|
647
|
+
"capex": 1000,
|
|
648
|
+
"opex": 6,
|
|
649
|
+
"subvention": 0,
|
|
650
|
+
"sellingPrice": 8.86
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"power": 10000,
|
|
654
|
+
"capex": 1050,
|
|
655
|
+
"opex": 0,
|
|
656
|
+
"subvention": 0,
|
|
657
|
+
"sellingPrice": 0
|
|
658
|
+
}
|
|
659
|
+
],
|
|
660
|
+
"paramsBattery": {
|
|
661
|
+
"batteryLifespan": 25,
|
|
662
|
+
"batteryMaxSoc": 0.98,
|
|
663
|
+
"batteryMinSoc": 0.02,
|
|
664
|
+
"batteryYield": 0.92,
|
|
665
|
+
"batteryCapexTot": 0,
|
|
666
|
+
"batteryOpexTot": 0,
|
|
667
|
+
"batteryCapexTableA": [
|
|
668
|
+
320,
|
|
669
|
+
260,
|
|
670
|
+
200
|
|
671
|
+
],
|
|
672
|
+
"batteryCapexTableV": [
|
|
673
|
+
50,
|
|
674
|
+
500,
|
|
675
|
+
5000
|
|
676
|
+
],
|
|
677
|
+
"batteryOpex": [
|
|
678
|
+
6,
|
|
679
|
+
6,
|
|
680
|
+
6
|
|
681
|
+
],
|
|
682
|
+
"batteryDegradRate": 4,
|
|
683
|
+
"batteryLeasingLifespan": 25,
|
|
684
|
+
"batteryDepreciationDuration": 25
|
|
685
|
+
},
|
|
686
|
+
"paramsConversion": {
|
|
687
|
+
"conversionCapexTot": 0,
|
|
688
|
+
"conversionOpexTot": 0,
|
|
689
|
+
"conversionCapexTableA": [
|
|
690
|
+
160,
|
|
691
|
+
130,
|
|
692
|
+
100
|
|
693
|
+
],
|
|
694
|
+
"conversionCapexTableV": [
|
|
695
|
+
50,
|
|
696
|
+
500,
|
|
697
|
+
5000
|
|
698
|
+
],
|
|
699
|
+
"conversionLifespan": 25,
|
|
700
|
+
"conversionYield": 0.96,
|
|
701
|
+
"conversionOpex": [
|
|
702
|
+
3,
|
|
703
|
+
3,
|
|
704
|
+
3
|
|
705
|
+
],
|
|
706
|
+
"conversionLeasingLifespan": 25,
|
|
707
|
+
"conversionDepreciationDuration": 25
|
|
708
|
+
},
|
|
709
|
+
"paramsFuelCell": {
|
|
710
|
+
"fuelCellPower": 0,
|
|
711
|
+
"fuelCellCapexTot": 0,
|
|
712
|
+
"fuelCellOpexTot": 0,
|
|
713
|
+
"fuelCellCapexTableA": [
|
|
714
|
+
2500,
|
|
715
|
+
1500,
|
|
716
|
+
1000
|
|
717
|
+
],
|
|
718
|
+
"fuelCellCapexTableV": [
|
|
719
|
+
50,
|
|
720
|
+
500,
|
|
721
|
+
5000
|
|
722
|
+
],
|
|
723
|
+
"fuelCellAverageH2Consumption": 0.05,
|
|
724
|
+
"fuelCellLifespan": 25,
|
|
725
|
+
"h2Cost": 5,
|
|
726
|
+
"fuelCellOpex": [
|
|
727
|
+
0.2,
|
|
728
|
+
0.2,
|
|
729
|
+
0.2
|
|
730
|
+
],
|
|
731
|
+
"h2PurchaseInflation": 1,
|
|
732
|
+
"fuelCellLeasingLifespan": 25,
|
|
733
|
+
"fuelCellDepreciationDuration": 25
|
|
734
|
+
},
|
|
735
|
+
"paramsGen": {
|
|
736
|
+
"genPower": 0,
|
|
737
|
+
"genCapexTableA": [
|
|
738
|
+
200,
|
|
739
|
+
150,
|
|
740
|
+
100
|
|
741
|
+
],
|
|
742
|
+
"genCapexTableV": [
|
|
743
|
+
50,
|
|
744
|
+
500,
|
|
745
|
+
5000
|
|
746
|
+
],
|
|
747
|
+
"genCapexTot": 0,
|
|
748
|
+
"genOpexTot": 0,
|
|
749
|
+
"fuelCost": 1,
|
|
750
|
+
"genAverageFuelConsumption": 0.246,
|
|
751
|
+
"genLifespan": 25,
|
|
752
|
+
"genOpex": [
|
|
753
|
+
0.02,
|
|
754
|
+
0.02,
|
|
755
|
+
0.02
|
|
756
|
+
],
|
|
757
|
+
"fuelPurchaseInflation": 1,
|
|
758
|
+
"genLeasingLifespan": 25,
|
|
759
|
+
"genDepreciationDuration": 25
|
|
760
|
+
},
|
|
761
|
+
"paramsGrid": {
|
|
762
|
+
"ACI": 0,
|
|
763
|
+
"energyInflation": 3.5,
|
|
764
|
+
"subscriptionRate": 0,
|
|
765
|
+
"capex": 0,
|
|
766
|
+
"energyPrices": [
|
|
767
|
+
0,
|
|
768
|
+
0,
|
|
769
|
+
0,
|
|
770
|
+
0,
|
|
771
|
+
0
|
|
772
|
+
],
|
|
773
|
+
"energyPriceTempo": [
|
|
774
|
+
0,
|
|
775
|
+
0,
|
|
776
|
+
0,
|
|
777
|
+
0,
|
|
778
|
+
0,
|
|
779
|
+
0
|
|
780
|
+
],
|
|
781
|
+
"subscribedPowers": [
|
|
782
|
+
null,
|
|
783
|
+
null,
|
|
784
|
+
null,
|
|
785
|
+
null,
|
|
786
|
+
null
|
|
787
|
+
],
|
|
788
|
+
"priceBuilder": 0,
|
|
789
|
+
"offgrid": 1,
|
|
790
|
+
"isOffgrid": true,
|
|
791
|
+
"priceBuilderSlots": [],
|
|
792
|
+
"demandMultiplier": 1,
|
|
793
|
+
"includeTVA": 0,
|
|
794
|
+
"includeTURPE": 0,
|
|
795
|
+
"energyInflationRates": [
|
|
796
|
+
{
|
|
797
|
+
"id": "23f95398-1ae4-4733-90b2-ff1d37a87863",
|
|
798
|
+
"period": 1,
|
|
799
|
+
"energyInflationRate": 3.5
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"consumptionReference": "REFERENCE"
|
|
803
|
+
},
|
|
804
|
+
"paramsOptimization": {
|
|
805
|
+
"discountRate": 4,
|
|
806
|
+
"CO2ReductionRate": 0,
|
|
807
|
+
"fullBackup": 0,
|
|
808
|
+
"medianBackup": 0,
|
|
809
|
+
"onSiteProductionRate": 0,
|
|
810
|
+
"tailBackup": 0
|
|
811
|
+
},
|
|
812
|
+
"paramsPV": {
|
|
813
|
+
"tracker": {
|
|
814
|
+
"axisTilt": null,
|
|
815
|
+
"backtrack": false,
|
|
816
|
+
"id": "so6pa6n0F9",
|
|
817
|
+
"maxAngle": null,
|
|
818
|
+
"share": null,
|
|
819
|
+
"trackerType": "OFF"
|
|
820
|
+
},
|
|
821
|
+
"pvCapexTableA": [
|
|
822
|
+
2400,
|
|
823
|
+
2000,
|
|
824
|
+
1400,
|
|
825
|
+
1150,
|
|
826
|
+
1100,
|
|
827
|
+
1050
|
|
828
|
+
],
|
|
829
|
+
"pvCapexTableV": [
|
|
830
|
+
3,
|
|
831
|
+
9,
|
|
832
|
+
36,
|
|
833
|
+
100,
|
|
834
|
+
500,
|
|
835
|
+
10000
|
|
836
|
+
],
|
|
837
|
+
"pvOpex": [
|
|
838
|
+
0,
|
|
839
|
+
0,
|
|
840
|
+
8,
|
|
841
|
+
8,
|
|
842
|
+
7,
|
|
843
|
+
6
|
|
844
|
+
],
|
|
845
|
+
"pvSub": [
|
|
846
|
+
80,
|
|
847
|
+
80,
|
|
848
|
+
140,
|
|
849
|
+
70,
|
|
850
|
+
0,
|
|
851
|
+
0
|
|
852
|
+
],
|
|
853
|
+
"pvCapexTot": 0,
|
|
854
|
+
"pvOpexTot": 0,
|
|
855
|
+
"pvSubTot": 0,
|
|
856
|
+
"pvLeasingTot": false,
|
|
857
|
+
"pvLeasingRate": 0,
|
|
858
|
+
"pvSubDuration": 1,
|
|
859
|
+
"pvPurchasePrice": [
|
|
860
|
+
0,
|
|
861
|
+
0,
|
|
862
|
+
0,
|
|
863
|
+
0,
|
|
864
|
+
0
|
|
865
|
+
],
|
|
866
|
+
"useCase": "AOVS",
|
|
867
|
+
"orientation": [
|
|
868
|
+
0
|
|
869
|
+
],
|
|
870
|
+
"panelYield": 0.235,
|
|
871
|
+
"pvLifespan": 25,
|
|
872
|
+
"pvSystemLoss": 0.06,
|
|
873
|
+
"pvSurface": 0,
|
|
874
|
+
"pvLeasingLifespan": 25,
|
|
875
|
+
"tilt": [
|
|
876
|
+
15
|
|
877
|
+
],
|
|
878
|
+
"pvDegradRate": 0.4,
|
|
879
|
+
"pvPeakPower": 0,
|
|
880
|
+
"pvMinAutoConsoRate": 0,
|
|
881
|
+
"pvMaxAutoConsoRate": 100,
|
|
882
|
+
"pvUsefulArea": 0.8,
|
|
883
|
+
"addTurpePV": 0,
|
|
884
|
+
"pvExistingInstall": 0,
|
|
885
|
+
"roofTilt": 0,
|
|
886
|
+
"pvSellingPrice": [
|
|
887
|
+
4,
|
|
888
|
+
4,
|
|
889
|
+
5.36,
|
|
890
|
+
5.36,
|
|
891
|
+
8.86,
|
|
892
|
+
0
|
|
893
|
+
],
|
|
894
|
+
"pvPpaBuilderSlots": [],
|
|
895
|
+
"pvProductible": 0,
|
|
896
|
+
"pvPanelPeakPower": 400,
|
|
897
|
+
"pvShare": [
|
|
898
|
+
100
|
|
899
|
+
],
|
|
900
|
+
"pvAoBonus": 2.5,
|
|
901
|
+
"pvInvertorPowerRate": 1,
|
|
902
|
+
"pvDepreciationDuration": 25
|
|
903
|
+
},
|
|
904
|
+
"paramsPV2": {
|
|
905
|
+
"tracker": {
|
|
906
|
+
"axisTilt": null,
|
|
907
|
+
"backtrack": false,
|
|
908
|
+
"id": "so6pa6n0F9",
|
|
909
|
+
"maxAngle": null,
|
|
910
|
+
"share": null,
|
|
911
|
+
"trackerType": "OFF"
|
|
912
|
+
},
|
|
913
|
+
"pv2CapexTableA": [
|
|
914
|
+
2200,
|
|
915
|
+
1400,
|
|
916
|
+
1150,
|
|
917
|
+
1100,
|
|
918
|
+
1050
|
|
919
|
+
],
|
|
920
|
+
"pv2CapexTableV": [
|
|
921
|
+
9,
|
|
922
|
+
36,
|
|
923
|
+
100,
|
|
924
|
+
500,
|
|
925
|
+
10000
|
|
926
|
+
],
|
|
927
|
+
"pv2Opex": [
|
|
928
|
+
0,
|
|
929
|
+
8,
|
|
930
|
+
8,
|
|
931
|
+
7,
|
|
932
|
+
6
|
|
933
|
+
],
|
|
934
|
+
"pv2CapexTot": 0,
|
|
935
|
+
"pv2OpexTot": 0,
|
|
936
|
+
"pv2SubTot": 0,
|
|
937
|
+
"pv2LeasingTot": false,
|
|
938
|
+
"pv2LeasingRate": 0,
|
|
939
|
+
"useCase2": "AOVS",
|
|
940
|
+
"aoBonus2": 1.25,
|
|
941
|
+
"orientation2": [
|
|
942
|
+
0
|
|
943
|
+
],
|
|
944
|
+
"panelYield2": 0.22,
|
|
945
|
+
"pv2Lifespan": 25,
|
|
946
|
+
"pv2SystemLoss": 0.06,
|
|
947
|
+
"pv2Surface": 0,
|
|
948
|
+
"tilt2": [
|
|
949
|
+
15
|
|
950
|
+
],
|
|
951
|
+
"pv2DegradRate": 0.45,
|
|
952
|
+
"pv2PeakPower": 0,
|
|
953
|
+
"pv2MinAutoConsoRate": 0,
|
|
954
|
+
"pv2MaxAutoConsoRate": 100,
|
|
955
|
+
"pv2UsefulArea": 0.8,
|
|
956
|
+
"addTurpePV2": 0,
|
|
957
|
+
"pv2ExistingInstall": 0,
|
|
958
|
+
"roofTilt2": 0,
|
|
959
|
+
"pv2SellingPrice": [
|
|
960
|
+
4,
|
|
961
|
+
4,
|
|
962
|
+
5.36,
|
|
963
|
+
5.36,
|
|
964
|
+
8.86
|
|
965
|
+
],
|
|
966
|
+
"pv2PpaBuilderSlots": [],
|
|
967
|
+
"pv2Productible": 0,
|
|
968
|
+
"pv2PanelPeakPower": 0,
|
|
969
|
+
"pv2Share": [
|
|
970
|
+
100
|
|
971
|
+
],
|
|
972
|
+
"pv2Aobonus": 2.5,
|
|
973
|
+
"pv2InvertorPowerRate": 1,
|
|
974
|
+
"pv2Sub": [
|
|
975
|
+
0,
|
|
976
|
+
0,
|
|
977
|
+
0,
|
|
978
|
+
0,
|
|
979
|
+
0
|
|
980
|
+
],
|
|
981
|
+
"pv2SubDuration": 1,
|
|
982
|
+
"pv2PurchasePrice": [
|
|
983
|
+
0,
|
|
984
|
+
0,
|
|
985
|
+
0,
|
|
986
|
+
0,
|
|
987
|
+
0
|
|
988
|
+
],
|
|
989
|
+
"pv2LeasingLifespan": 25,
|
|
990
|
+
"pv2DepreciationDuration": 25
|
|
991
|
+
},
|
|
992
|
+
"paramsVS": {
|
|
993
|
+
"capexTableV": [
|
|
994
|
+
0,
|
|
995
|
+
20,
|
|
996
|
+
100,
|
|
997
|
+
300,
|
|
998
|
+
600,
|
|
999
|
+
900,
|
|
1000
|
+
1200,
|
|
1001
|
+
1800,
|
|
1002
|
+
3000,
|
|
1003
|
+
5000,
|
|
1004
|
+
10000
|
|
1005
|
+
],
|
|
1006
|
+
"opex": [
|
|
1007
|
+
0,
|
|
1008
|
+
155.88,
|
|
1009
|
+
203.88,
|
|
1010
|
+
323.88,
|
|
1011
|
+
419.88,
|
|
1012
|
+
479.88,
|
|
1013
|
+
539.88,
|
|
1014
|
+
683.88,
|
|
1015
|
+
1079.88,
|
|
1016
|
+
1619.88,
|
|
1017
|
+
2579.88
|
|
1018
|
+
],
|
|
1019
|
+
"vsEnergyRate": 0,
|
|
1020
|
+
"vsFixRate": 0,
|
|
1021
|
+
"vsOn": 0,
|
|
1022
|
+
"vsPVRate": 12,
|
|
1023
|
+
"vsConnectingRate": 249.17,
|
|
1024
|
+
"vsMaxCapacity": 10000,
|
|
1025
|
+
"vsTurpe": 0
|
|
1026
|
+
},
|
|
1027
|
+
"paramsWindTurbine": {
|
|
1028
|
+
"wtPower": 0,
|
|
1029
|
+
"wtCapexTableA": [
|
|
1030
|
+
3500,
|
|
1031
|
+
2500,
|
|
1032
|
+
1500
|
|
1033
|
+
],
|
|
1034
|
+
"wtCapexTableV": [
|
|
1035
|
+
35,
|
|
1036
|
+
350,
|
|
1037
|
+
5000
|
|
1038
|
+
],
|
|
1039
|
+
"wtOpex": [
|
|
1040
|
+
10,
|
|
1041
|
+
25,
|
|
1042
|
+
50
|
|
1043
|
+
],
|
|
1044
|
+
"wtSellingPrice": [
|
|
1045
|
+
8.2,
|
|
1046
|
+
8.2,
|
|
1047
|
+
8.2
|
|
1048
|
+
],
|
|
1049
|
+
"wtSub": [
|
|
1050
|
+
500,
|
|
1051
|
+
370,
|
|
1052
|
+
210
|
|
1053
|
+
],
|
|
1054
|
+
"wtCapexTot": 0,
|
|
1055
|
+
"wtOpexTot": 0,
|
|
1056
|
+
"wtSubTot": 0,
|
|
1057
|
+
"wtLeasingTot": false,
|
|
1058
|
+
"wtLeasingRate": 0,
|
|
1059
|
+
"wtSubDuration": 1,
|
|
1060
|
+
"wtLifespan": 25,
|
|
1061
|
+
"wtYield": 0.4,
|
|
1062
|
+
"wtHeight": 50,
|
|
1063
|
+
"wtAutoconsoRate": 0,
|
|
1064
|
+
"wtLeasingLifespan": 25,
|
|
1065
|
+
"addTurpeWT": 0,
|
|
1066
|
+
"wtPpaBuilderSlots": [],
|
|
1067
|
+
"wtDepreciationDuration": 25
|
|
1068
|
+
},
|
|
1069
|
+
"paramsElectrolyse": {
|
|
1070
|
+
"electrolysePower": 0,
|
|
1071
|
+
"electrolyseLifespan": 25,
|
|
1072
|
+
"electrolyseAverageConso": 65,
|
|
1073
|
+
"electrolyseCapexTot": 0,
|
|
1074
|
+
"electrolyseOpexTot": 0,
|
|
1075
|
+
"electrolyseCapexTableA": [
|
|
1076
|
+
1200,
|
|
1077
|
+
1000,
|
|
1078
|
+
800
|
|
1079
|
+
],
|
|
1080
|
+
"electrolyseCapexTableV": [
|
|
1081
|
+
100,
|
|
1082
|
+
1000,
|
|
1083
|
+
5000
|
|
1084
|
+
],
|
|
1085
|
+
"electrolyseOpex": [
|
|
1086
|
+
40,
|
|
1087
|
+
30,
|
|
1088
|
+
20
|
|
1089
|
+
],
|
|
1090
|
+
"electrolyseLeasingLifespan": 25,
|
|
1091
|
+
"electrolyseDepreciationDuration": 25
|
|
1092
|
+
},
|
|
1093
|
+
"paramsStockageH2": {
|
|
1094
|
+
"h2StorageCapacity": 0,
|
|
1095
|
+
"h2StorageLifespan": 25,
|
|
1096
|
+
"h2SellingPrice": 6,
|
|
1097
|
+
"h2StorageCapexTot": 0,
|
|
1098
|
+
"h2StorageOpexTot": 0,
|
|
1099
|
+
"h2StorageCapexTableA": [
|
|
1100
|
+
1900,
|
|
1101
|
+
1600,
|
|
1102
|
+
1300
|
|
1103
|
+
],
|
|
1104
|
+
"h2StorageCapexTableV": [
|
|
1105
|
+
100,
|
|
1106
|
+
500,
|
|
1107
|
+
5000
|
|
1108
|
+
],
|
|
1109
|
+
"h2StorageOpex": [
|
|
1110
|
+
19,
|
|
1111
|
+
16,
|
|
1112
|
+
13
|
|
1113
|
+
],
|
|
1114
|
+
"h2StorageLeasingLifespan": 25,
|
|
1115
|
+
"h2StorageDepreciationDuration": 25
|
|
1116
|
+
},
|
|
1117
|
+
"paramsECS": {
|
|
1118
|
+
"power": 0,
|
|
1119
|
+
"lifespan": 25,
|
|
1120
|
+
"capexTot": 0,
|
|
1121
|
+
"averageConso": 84,
|
|
1122
|
+
"opexTot": 0,
|
|
1123
|
+
"capexTableA": [
|
|
1124
|
+
500
|
|
1125
|
+
],
|
|
1126
|
+
"capexTableV": [
|
|
1127
|
+
100
|
|
1128
|
+
],
|
|
1129
|
+
"opex": [
|
|
1130
|
+
0
|
|
1131
|
+
],
|
|
1132
|
+
"leasingLifespan": 25,
|
|
1133
|
+
"depreciationDuration": 25
|
|
1134
|
+
},
|
|
1135
|
+
"paramsStockageThermal": {
|
|
1136
|
+
"capacity": 0,
|
|
1137
|
+
"lifespan": 25,
|
|
1138
|
+
"sellingPrice": 8,
|
|
1139
|
+
"capexTot": 0,
|
|
1140
|
+
"opexTot": 0,
|
|
1141
|
+
"capexTableA": [
|
|
1142
|
+
5000
|
|
1143
|
+
],
|
|
1144
|
+
"capexTableV": [
|
|
1145
|
+
100
|
|
1146
|
+
],
|
|
1147
|
+
"opex": [
|
|
1148
|
+
0
|
|
1149
|
+
],
|
|
1150
|
+
"depreciationDuration": 25
|
|
1151
|
+
},
|
|
1152
|
+
"paramsStation": {
|
|
1153
|
+
"stations": []
|
|
1154
|
+
},
|
|
1155
|
+
"paramsScenario": {
|
|
1156
|
+
"discountRate": 6,
|
|
1157
|
+
"taxRate": 0,
|
|
1158
|
+
"debtRatio": 0,
|
|
1159
|
+
"interestRate": 0,
|
|
1160
|
+
"debtDuration": 0,
|
|
1161
|
+
"opexInflation": 0,
|
|
1162
|
+
"sellingPriceInflation": 0
|
|
1163
|
+
},
|
|
1164
|
+
"consumerFiles": {
|
|
1165
|
+
"CONSO_DATA": "ConsoData.csv",
|
|
1166
|
+
"CONSO_DATA_2": "ConsoData2.csv",
|
|
1167
|
+
"CONSENT": "Consent.pdf",
|
|
1168
|
+
"PV_PROD": "pvPowers.csv",
|
|
1169
|
+
"PV2_PROD": "pv2Powers.csv",
|
|
1170
|
+
"PV_TMY": "pvTMY.csv",
|
|
1171
|
+
"WT_PROD": "windTurbinePowers.csv",
|
|
1172
|
+
"WT_TMY": "windTurbineTMY.csv",
|
|
1173
|
+
"ELECTROLYSIS_DEMAND": "h2Demand.csv",
|
|
1174
|
+
"ECS_DEMAND": "ecsDemand.csv",
|
|
1175
|
+
"DISTRIBKEYS": "distribKeys.csv"
|
|
1176
|
+
},
|
|
1177
|
+
"COSPHI": 0.93,
|
|
1178
|
+
"financingType": {
|
|
1179
|
+
"INVESTMENT": "Investissement",
|
|
1180
|
+
"LEASING": "Location",
|
|
1181
|
+
"PPA": "PPA"
|
|
1182
|
+
},
|
|
1183
|
+
"scenarioConfigSite": {
|
|
1184
|
+
"rateOfGrowth": [
|
|
1185
|
+
{
|
|
1186
|
+
"id": "so3pj6n0F9",
|
|
1187
|
+
"year": 1,
|
|
1188
|
+
"rate": 0
|
|
1189
|
+
}
|
|
1190
|
+
],
|
|
1191
|
+
"demandMultiplierSlots": [
|
|
1192
|
+
{
|
|
1193
|
+
"months": [
|
|
1194
|
+
{
|
|
1195
|
+
"month": 1,
|
|
1196
|
+
"year": 2020
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"month": 2,
|
|
1200
|
+
"year": 2020
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"month": 3,
|
|
1204
|
+
"year": 2020
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"month": 4,
|
|
1208
|
+
"year": 2020
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"month": 5,
|
|
1212
|
+
"year": 2020
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"month": 6,
|
|
1216
|
+
"year": 2020
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"month": 7,
|
|
1220
|
+
"year": 2020
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"month": 8,
|
|
1224
|
+
"year": 2020
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"month": 9,
|
|
1228
|
+
"year": 2020
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"month": 10,
|
|
1232
|
+
"year": 2020
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"month": 11,
|
|
1236
|
+
"year": 2020
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"month": 12,
|
|
1240
|
+
"year": 2020
|
|
1241
|
+
}
|
|
1242
|
+
],
|
|
1243
|
+
"id": "8cd19ff6-7489-4c62-9f81-fc88a564cb7b",
|
|
1244
|
+
"days": [
|
|
1245
|
+
1,
|
|
1246
|
+
2,
|
|
1247
|
+
3,
|
|
1248
|
+
4,
|
|
1249
|
+
5,
|
|
1250
|
+
6,
|
|
1251
|
+
7
|
|
1252
|
+
],
|
|
1253
|
+
"startHour": 0,
|
|
1254
|
+
"endHour": 24,
|
|
1255
|
+
"demandMultiplier": 0
|
|
1256
|
+
}
|
|
1257
|
+
],
|
|
1258
|
+
"consumptionReference": "REFERENCE"
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
506
1261
|
};
|