@likewatt/models-front 1.50.0 → 1.52.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 +16 -4
- package/dist/core/SiteConstants.js +24 -4
- package/dist/scenario/GridParams.types.d.ts +2 -1
- package/dist/scenario/PV2Params.types.d.ts +2 -1
- package/dist/scenario/PVParams.types.d.ts +7 -1
- package/dist/scenario/WindTurbineParams.types.d.ts +2 -1
- package/package.json +1 -1
|
@@ -91,7 +91,10 @@ export declare const SiteConstants: {
|
|
|
91
91
|
priceBuilder: number;
|
|
92
92
|
offgrid: number;
|
|
93
93
|
isOffgrid: boolean;
|
|
94
|
-
priceBuilderSlots:
|
|
94
|
+
priceBuilderSlots: {
|
|
95
|
+
ppaPrice: number;
|
|
96
|
+
addTVA: boolean;
|
|
97
|
+
}[];
|
|
95
98
|
demandMultiplier: number;
|
|
96
99
|
includeTVA: number;
|
|
97
100
|
includeTURPE: number;
|
|
@@ -147,7 +150,10 @@ export declare const SiteConstants: {
|
|
|
147
150
|
pvExistingInstall: number;
|
|
148
151
|
roofTilt: number;
|
|
149
152
|
pvSellingPrice: number[];
|
|
150
|
-
pvPpaBuilderSlots:
|
|
153
|
+
pvPpaBuilderSlots: {
|
|
154
|
+
ppaPrice: number;
|
|
155
|
+
addTVA: boolean;
|
|
156
|
+
}[];
|
|
151
157
|
pvProductible: number;
|
|
152
158
|
pvPanelPeakPower: number;
|
|
153
159
|
pvShare: number[];
|
|
@@ -189,7 +195,10 @@ export declare const SiteConstants: {
|
|
|
189
195
|
pv2ExistingInstall: number;
|
|
190
196
|
roofTilt2: number;
|
|
191
197
|
pv2SellingPrice: number[];
|
|
192
|
-
pv2PpaBuilderSlots:
|
|
198
|
+
pv2PpaBuilderSlots: {
|
|
199
|
+
ppaPrice: number;
|
|
200
|
+
addTVA: boolean;
|
|
201
|
+
}[];
|
|
193
202
|
pv2Productible: number;
|
|
194
203
|
pv2PanelPeakPower: number;
|
|
195
204
|
pv2Share: number[];
|
|
@@ -231,7 +240,10 @@ export declare const SiteConstants: {
|
|
|
231
240
|
wtAutoconsoRate: number;
|
|
232
241
|
wtLeasingLifespan: number;
|
|
233
242
|
addTurpeWT: number;
|
|
234
|
-
wtPpaBuilderSlots:
|
|
243
|
+
wtPpaBuilderSlots: {
|
|
244
|
+
ppaPrice: number;
|
|
245
|
+
addTVA: boolean;
|
|
246
|
+
}[];
|
|
235
247
|
wtDepreciationDuration: number;
|
|
236
248
|
};
|
|
237
249
|
readonly paramsElectrolyse: {
|
|
@@ -722,7 +722,12 @@ exports.SiteConstants = {
|
|
|
722
722
|
priceBuilder: 0,
|
|
723
723
|
offgrid: 1,
|
|
724
724
|
isOffgrid: true,
|
|
725
|
-
priceBuilderSlots: [
|
|
725
|
+
priceBuilderSlots: [
|
|
726
|
+
{
|
|
727
|
+
ppaPrice: 0,
|
|
728
|
+
addTVA: false,
|
|
729
|
+
},
|
|
730
|
+
],
|
|
726
731
|
demandMultiplier: 1,
|
|
727
732
|
includeTVA: 0,
|
|
728
733
|
includeTURPE: 0,
|
|
@@ -780,7 +785,12 @@ exports.SiteConstants = {
|
|
|
780
785
|
pvExistingInstall: 0,
|
|
781
786
|
roofTilt: 0,
|
|
782
787
|
pvSellingPrice: [4, 4, 5.36, 5.36, 8.86, 0],
|
|
783
|
-
pvPpaBuilderSlots: [
|
|
788
|
+
pvPpaBuilderSlots: [
|
|
789
|
+
{
|
|
790
|
+
ppaPrice: 0,
|
|
791
|
+
addTVA: false,
|
|
792
|
+
},
|
|
793
|
+
],
|
|
784
794
|
pvProductible: 0,
|
|
785
795
|
pvPanelPeakPower: 400,
|
|
786
796
|
pvShare: [100],
|
|
@@ -822,7 +832,12 @@ exports.SiteConstants = {
|
|
|
822
832
|
pv2ExistingInstall: 0,
|
|
823
833
|
roofTilt2: 0,
|
|
824
834
|
pv2SellingPrice: [4, 4, 5.36, 5.36, 8.86],
|
|
825
|
-
pv2PpaBuilderSlots: [
|
|
835
|
+
pv2PpaBuilderSlots: [
|
|
836
|
+
{
|
|
837
|
+
ppaPrice: 0,
|
|
838
|
+
addTVA: false,
|
|
839
|
+
},
|
|
840
|
+
],
|
|
826
841
|
pv2Productible: 0,
|
|
827
842
|
pv2PanelPeakPower: 0,
|
|
828
843
|
pv2Share: [100],
|
|
@@ -867,7 +882,12 @@ exports.SiteConstants = {
|
|
|
867
882
|
wtAutoconsoRate: 0,
|
|
868
883
|
wtLeasingLifespan: 25,
|
|
869
884
|
addTurpeWT: 0,
|
|
870
|
-
wtPpaBuilderSlots: [
|
|
885
|
+
wtPpaBuilderSlots: [
|
|
886
|
+
{
|
|
887
|
+
ppaPrice: 0,
|
|
888
|
+
addTVA: false,
|
|
889
|
+
},
|
|
890
|
+
],
|
|
871
891
|
wtDepreciationDuration: 25,
|
|
872
892
|
},
|
|
873
893
|
paramsElectrolyse: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EnergyInflationRates } from './EnergyInflationRates.types';
|
|
2
|
+
import { PpaBuilderSlot } from './PVParams.types';
|
|
2
3
|
export interface GridParams {
|
|
3
4
|
ACI: number;
|
|
4
5
|
energyInflation: number;
|
|
@@ -10,7 +11,7 @@ export interface GridParams {
|
|
|
10
11
|
priceBuilder: number;
|
|
11
12
|
offgrid: number;
|
|
12
13
|
isOffgrid: boolean;
|
|
13
|
-
priceBuilderSlots:
|
|
14
|
+
priceBuilderSlots: PpaBuilderSlot[];
|
|
14
15
|
demandMultiplier: number;
|
|
15
16
|
includeTVA: number;
|
|
16
17
|
includeTURPE: number;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseCase } from '../site/enums.types';
|
|
2
|
+
import { PpaBuilderSlot } from './PVParams.types';
|
|
2
3
|
import { Tracker } from './Tracker.types';
|
|
3
4
|
export interface PV2Params {
|
|
4
5
|
tracker: Tracker;
|
|
@@ -25,7 +26,7 @@ export interface PV2Params {
|
|
|
25
26
|
pv2ExistingInstall: number;
|
|
26
27
|
roofTilt2: number;
|
|
27
28
|
pv2SellingPrice: number[];
|
|
28
|
-
pv2PpaBuilderSlots:
|
|
29
|
+
pv2PpaBuilderSlots: PpaBuilderSlot[];
|
|
29
30
|
pv2Productible: number;
|
|
30
31
|
pv2PanelPeakPower: number;
|
|
31
32
|
pv2Share: number[];
|
|
@@ -28,7 +28,7 @@ export interface PVParams {
|
|
|
28
28
|
pvExistingInstall: number;
|
|
29
29
|
roofTilt: number;
|
|
30
30
|
pvSellingPrice: number[];
|
|
31
|
-
pvPpaBuilderSlots:
|
|
31
|
+
pvPpaBuilderSlots: PpaBuilderSlot[];
|
|
32
32
|
pvProductible: number;
|
|
33
33
|
pvPanelPeakPower: number;
|
|
34
34
|
pvShare: number[];
|
|
@@ -37,3 +37,9 @@ export interface PVParams {
|
|
|
37
37
|
pvDepreciationDuration: number;
|
|
38
38
|
iskWh: boolean;
|
|
39
39
|
}
|
|
40
|
+
export interface PpaBuilderSlot {
|
|
41
|
+
name?: string;
|
|
42
|
+
siteId?: string;
|
|
43
|
+
ppaPrice: number;
|
|
44
|
+
addTVA: boolean;
|
|
45
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PpaBuilderSlot } from './PVParams.types';
|
|
1
2
|
export interface WindTurbineParams {
|
|
2
3
|
wtPower: number;
|
|
3
4
|
wtCapexTableA: number[];
|
|
@@ -15,7 +16,7 @@ export interface WindTurbineParams {
|
|
|
15
16
|
wtAutoconsoRate: number;
|
|
16
17
|
wtLeasingLifespan: number;
|
|
17
18
|
addTurpeWT: number;
|
|
18
|
-
wtPpaBuilderSlots:
|
|
19
|
+
wtPpaBuilderSlots: PpaBuilderSlot[];
|
|
19
20
|
wtDepreciationDuration: number;
|
|
20
21
|
wtLeasingRate: number;
|
|
21
22
|
}
|