@likewatt/models-front 1.49.0 → 1.51.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 +12 -3
- package/dist/core/SiteConstants.js +18 -3
- 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 -7
- package/package.json +1 -1
|
@@ -147,7 +147,10 @@ export declare const SiteConstants: {
|
|
|
147
147
|
pvExistingInstall: number;
|
|
148
148
|
roofTilt: number;
|
|
149
149
|
pvSellingPrice: number[];
|
|
150
|
-
pvPpaBuilderSlots:
|
|
150
|
+
pvPpaBuilderSlots: {
|
|
151
|
+
ppaPrice: number;
|
|
152
|
+
addTVA: boolean;
|
|
153
|
+
}[];
|
|
151
154
|
pvProductible: number;
|
|
152
155
|
pvPanelPeakPower: number;
|
|
153
156
|
pvShare: number[];
|
|
@@ -189,7 +192,10 @@ export declare const SiteConstants: {
|
|
|
189
192
|
pv2ExistingInstall: number;
|
|
190
193
|
roofTilt2: number;
|
|
191
194
|
pv2SellingPrice: number[];
|
|
192
|
-
pv2PpaBuilderSlots:
|
|
195
|
+
pv2PpaBuilderSlots: {
|
|
196
|
+
ppaPrice: number;
|
|
197
|
+
addTVA: boolean;
|
|
198
|
+
}[];
|
|
193
199
|
pv2Productible: number;
|
|
194
200
|
pv2PanelPeakPower: number;
|
|
195
201
|
pv2Share: number[];
|
|
@@ -231,7 +237,10 @@ export declare const SiteConstants: {
|
|
|
231
237
|
wtAutoconsoRate: number;
|
|
232
238
|
wtLeasingLifespan: number;
|
|
233
239
|
addTurpeWT: number;
|
|
234
|
-
wtPpaBuilderSlots:
|
|
240
|
+
wtPpaBuilderSlots: {
|
|
241
|
+
ppaPrice: number;
|
|
242
|
+
addTVA: boolean;
|
|
243
|
+
}[];
|
|
235
244
|
wtDepreciationDuration: number;
|
|
236
245
|
};
|
|
237
246
|
readonly paramsElectrolyse: {
|
|
@@ -780,7 +780,12 @@ exports.SiteConstants = {
|
|
|
780
780
|
pvExistingInstall: 0,
|
|
781
781
|
roofTilt: 0,
|
|
782
782
|
pvSellingPrice: [4, 4, 5.36, 5.36, 8.86, 0],
|
|
783
|
-
pvPpaBuilderSlots: [
|
|
783
|
+
pvPpaBuilderSlots: [
|
|
784
|
+
{
|
|
785
|
+
ppaPrice: 0,
|
|
786
|
+
addTVA: false,
|
|
787
|
+
},
|
|
788
|
+
],
|
|
784
789
|
pvProductible: 0,
|
|
785
790
|
pvPanelPeakPower: 400,
|
|
786
791
|
pvShare: [100],
|
|
@@ -822,7 +827,12 @@ exports.SiteConstants = {
|
|
|
822
827
|
pv2ExistingInstall: 0,
|
|
823
828
|
roofTilt2: 0,
|
|
824
829
|
pv2SellingPrice: [4, 4, 5.36, 5.36, 8.86],
|
|
825
|
-
pv2PpaBuilderSlots: [
|
|
830
|
+
pv2PpaBuilderSlots: [
|
|
831
|
+
{
|
|
832
|
+
ppaPrice: 0,
|
|
833
|
+
addTVA: false,
|
|
834
|
+
},
|
|
835
|
+
],
|
|
826
836
|
pv2Productible: 0,
|
|
827
837
|
pv2PanelPeakPower: 0,
|
|
828
838
|
pv2Share: [100],
|
|
@@ -867,7 +877,12 @@ exports.SiteConstants = {
|
|
|
867
877
|
wtAutoconsoRate: 0,
|
|
868
878
|
wtLeasingLifespan: 25,
|
|
869
879
|
addTurpeWT: 0,
|
|
870
|
-
wtPpaBuilderSlots: [
|
|
880
|
+
wtPpaBuilderSlots: [
|
|
881
|
+
{
|
|
882
|
+
ppaPrice: 0,
|
|
883
|
+
addTVA: false,
|
|
884
|
+
},
|
|
885
|
+
],
|
|
871
886
|
wtDepreciationDuration: 25,
|
|
872
887
|
},
|
|
873
888
|
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,13 +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
|
-
ppaTarifs: PpaTarif[];
|
|
22
22
|
}
|
|
23
|
-
interface PpaTarif {
|
|
24
|
-
ppaPrice: number;
|
|
25
|
-
addTurpe: boolean;
|
|
26
|
-
}
|
|
27
|
-
export {};
|