Skip to content

Commit

Permalink
fix formatting issues in Economics.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kfbeckers committed Nov 17, 2023
1 parent 40b0e63 commit 94e72de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/geophires_x/Economics.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ def __init__(self, model: Model):
self.ngprice = self.ParameterDict[self.ngprice.Name] = floatParameter(
"Peaking Fuel Cost Rate",
value=0.034,
DefaultValue =0.034,
DefaultValue=0.034,
Min=0.0,
Max=1.0,
UnitType=Units.ENERGYCOST,
Expand All @@ -864,7 +864,7 @@ def __init__(self, model: Model):
self.peakingboilerefficiency = self.ParameterDict[self.peakingboilerefficiency.Name] = floatParameter(
"Peaking Boiler Efficiency",
value=0.85,
DefaultValue = 0.85,
DefaultValue=0.85,
Min=0,
Max=1,
UnitType=Units.PERCENT,
Expand Down Expand Up @@ -918,7 +918,7 @@ def __init__(self, model: Model):
self.dhpipinglength = self.ParameterDict[self.dhpipinglength.Name] = floatParameter(
"District Heating Network Piping Length",
value=10.0,
DefaultValue = 10.0,
DefaultValue=10.0,
Min=0,
Max=1000,
UnitType=Units.LENGTH,
Expand All @@ -930,7 +930,7 @@ def __init__(self, model: Model):
self.dhroadlength = self.ParameterDict[self.dhroadlength.Name] = floatParameter(
"District Heating Road Length",
value=10.0,
DefaultValue = 10.0,
DefaultValue=10.0,
Min=0,
Max=1000,
UnitType=Units.LENGTH,
Expand Down

0 comments on commit 94e72de

Please sign in to comment.