File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -1509,6 +1509,15 @@ def __init__(self, model: Model):
1509
1509
ToolTipText = "Production tax credit inflation adjusted"
1510
1510
)
1511
1511
1512
+ self .jobs_created_per_MW_electricity = self .ParameterDict [
1513
+ self .jobs_created_per_MW_electricity .Name ] = floatParameter (
1514
+ "Estimated Jobs Created per MW of Electricity Produced" ,
1515
+ DefaultValue = 2.13 ,
1516
+ UnitType = Units .NONE ,
1517
+ Required = False ,
1518
+ ToolTipText = "Estimated jobs created per MW of electricity produced, per https://geothermal.org/resources/geothermal-basics"
1519
+ )
1520
+
1512
1521
# local variable initialization
1513
1522
self .CAPEX_cost_electricity_plant = 0.0
1514
1523
self .CAPEX_cost_heat_plant = 0.0
@@ -2896,7 +2905,8 @@ def Calculate(self, model: Model) -> None:
2896
2905
2897
2906
# https://github.com/NREL/GEOPHIRES-X/issues/232
2898
2907
self .jobs_created .value = round (
2899
- np .average (model .surfaceplant .ElectricityProduced .quantity ().to ('MW' ).magnitude * 2.13 ))
2908
+ np .average (model .surfaceplant .ElectricityProduced .quantity ().to (
2909
+ 'MW' ).magnitude * self .jobs_created_per_MW_electricity .value ))
2900
2910
2901
2911
model .logger .info (f'complete { __class__ !s} : { sys ._getframe ().f_code .co_name } ' )
2902
2912
You can’t perform that action at this time.
0 commit comments