File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1714,7 +1714,7 @@ def __init__(self, model: Model):
17141714 )
17151715
17161716 stimulation_contingency_and_indirect_costs_tooltip = (
1717- f'plus 15% contingency ' # TODO https://github.com/NREL/GEOPHIRES-X/issues/383
1717+ f'plus { self . contingency_percentage . quantity (). to ( convertible_unit ( "%" )). magnitude :g } % contingency '
17181718 f'plus { self .stimulation_indirect_capital_cost_percentage .quantity ().to (convertible_unit ("%" )).magnitude } % '
17191719 f'indirect costs'
17201720 )
@@ -1736,8 +1736,9 @@ def __init__(self, model: Model):
17361736 )
17371737
17381738 contingency_and_indirect_costs_tooltip = (
1739- f'plus 15% contingency ' # TODO https://github.com/NREL/GEOPHIRES-X/issues/383
1740- f'plus { self .indirect_capital_cost_percentage .quantity ().to (convertible_unit ("%" )).magnitude } % indirect costs'
1739+ f'plus { self .contingency_percentage .quantity ().to (convertible_unit ("%" )).magnitude :g} % contingency '
1740+ f'plus { self .indirect_capital_cost_percentage .quantity ().to (convertible_unit ("%" )).magnitude } % '
1741+ f'indirect costs'
17411742 )
17421743
17431744 self .Cexpl = self .OutputParameterDict [self .Cexpl .Name ] = OutputParameter (
You can’t perform that action at this time.
0 commit comments