Skip to content

Commit a61e544

Browse files
clean up tooltip text line breaks, concatenation
1 parent 009c85a commit a61e544

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/geophires_x/Economics.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,8 +1001,8 @@ def __init__(self, model: Model):
10011001
PreferredUnits=CostPerDistanceUnit.DOLLARSPERM,
10021002
CurrentUnits=CostPerDistanceUnit.DOLLARSPERM,
10031003
ErrMessage="assume default all-in cost for drill vertical well segment(s) (1000 $/m)",
1004-
ToolTipText="Set user specified all-in cost per meter of vertical drilling," +
1005-
" including drilling, casing, cement, insulated insert"
1004+
ToolTipText="Set user specified all-in cost per meter of vertical drilling, including drilling, casing, "
1005+
"cement, insulated insert"
10061006
)
10071007
self.Nonvertical_drilling_cost_per_m = self.ParameterDict[
10081008
self.Nonvertical_drilling_cost_per_m.Name] = floatParameter(
@@ -1013,9 +1013,9 @@ def __init__(self, model: Model):
10131013
UnitType=Units.COSTPERDISTANCE,
10141014
PreferredUnits=CostPerDistanceUnit.DOLLARSPERM,
10151015
CurrentUnits=CostPerDistanceUnit.DOLLARSPERM,
1016-
ErrMessage="assume default all-in cost for drill non-vertical well segment(s) (1300 $/m)",
1017-
ToolTipText="Set user specified all-in cost per meter of non-vertical drilling, including" +
1018-
" drilling, casing, cement, insulated insert"
1016+
ErrMessage="assume default all-in cost for drill non-vertical well segment(s) ($1300/m)",
1017+
ToolTipText="Set user specified all-in cost per meter of non-vertical drilling, including drilling, "
1018+
"casing, cement, insulated insert"
10191019
)
10201020

10211021
# absorption chiller

src/geophires_x/Reservoir.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ def __init__(self, model: Model):
8080
CurrentUnits=TemperatureUnit.CELSIUS,
8181
Required=True,
8282
ErrMessage="assume default maximum temperature (400 deg.C)",
83-
ToolTipText="Maximum allowable reservoir temperature (e.g. due to drill bit or logging tools constraints). \
84-
GEOPHIRES will cap the drilling depth to stay below this maximum temperature."
83+
ToolTipText="Maximum allowable reservoir temperature (e.g. due to drill bit or logging tools constraints). "
84+
"GEOPHIRES will cap the drilling depth to stay below this maximum temperature."
8585
)
8686

8787
self.numseg = self.ParameterDict[self.numseg.Name] = intParameter(

src/geophires_x_schema_generator/geophires-request.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"maximum": 15
108108
},
109109
"Maximum Temperature": {
110-
"description": "Maximum allowable reservoir temperature (e.g. due to drill bit or logging tools constraints). GEOPHIRES will cap the drilling depth to stay below this maximum temperature.",
110+
"description": "Maximum allowable reservoir temperature (e.g. due to drill bit or logging tools constraints). GEOPHIRES will cap the drilling depth to stay below this maximum temperature.",
111111
"type": "number",
112112
"units": "degC",
113113
"category": "Reservoir",

0 commit comments

Comments
 (0)