File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,10 @@ export const ResultsExport = (props: Props) => {
71
71
props . teaInputs . ElectricalFuelBaseYear . NetStationEfficiency
72
72
)
73
73
] ,
74
+ [
75
+ 'Annual Generation (kWh)' ,
76
+ formatNumber ( props . allYearResults . annualGeneration )
77
+ ] ,
74
78
[
75
79
'Capacity Factor (%)' ,
76
80
formatNumber ( props . teaInputs . ElectricalFuelBaseYear . CapacityFactor )
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export const ResultsTable = (props: Props) => {
26
26
x => x . id === props . frcsInputs . treatmentid
27
27
) ;
28
28
const treatmentName = Treatments [ treatmentIndex ] . name ;
29
+
29
30
const renderTechnicalPerformanceTable = ( ) => {
30
31
return (
31
32
< Table responsive bordered hover >
@@ -69,6 +70,12 @@ export const ResultsTable = (props: Props) => {
69
70
</ td >
70
71
</ tr >
71
72
) }
73
+ < tr >
74
+ < td > Annual Generation (kWh)</ td >
75
+ < td >
76
+ { formatNumber ( props . allYearResults . annualGeneration ) }
77
+ </ td >
78
+ </ tr >
72
79
< tr >
73
80
< td > Capacity Factor (%)</ td >
74
81
< td > { props . teaInputs . ElectricalFuelBaseYear . CapacityFactor } </ td >
You can’t perform that action at this time.
0 commit comments