Skip to content

Commit 24806d9

Browse files
Document capital cost spread over construction years.
1 parent bcc9de4 commit 24806d9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/geophires_x/SurfacePlant.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,10 @@ def __init__(self, model: Model):
410410
AllowableRange=list(range(1, 15, 1)),
411411
UnitType=Units.NONE,
412412
ErrMessage="assume default number of years in construction (1)",
413-
ToolTipText="Number of years spent in construction (assumes whole years, no fractions)"
413+
ToolTipText='Number of years spent in construction (assumes whole years, no fractions). '
414+
'Capital costs are spread evenly over constructions years e.g. if total capital costs are '
415+
'$500M and there are 2 construction years, '
416+
'then $250M will be spent in both the first and second construction years.'
414417
)
415418
self.cp_fluid = self.ParameterDict[self.cp_fluid.Name] = floatParameter(
416419
"Working Fluid Heat Capacity",

src/geophires_x_schema_generator/geophires-request.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,7 @@
12441244
"maximum": 1.0
12451245
},
12461246
"Construction Years": {
1247-
"description": "Number of years spent in construction (assumes whole years, no fractions)",
1247+
"description": "Number of years spent in construction (assumes whole years, no fractions). Capital costs are spread evenly over constructions years e.g. if total capital costs are $500M and there are 2 construction years, then $250M will be spent in both the first and second construction years.",
12481248
"type": "integer",
12491249
"units": null,
12501250
"category": "Surface Plant",

0 commit comments

Comments
 (0)