Skip to content

Commit d51eb8d

Browse files
Remove superfluous spaces from Wellbores parameters descriptions
1 parent e2c7bc9 commit d51eb8d

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

src/geophires_x/WellBores.py

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -749,17 +749,17 @@ def __init__(self, model: Model):
749749
CurrentUnits=LengthUnit.INCHES,
750750
Required=True,
751751
ErrMessage="assume default injection well diameter (8 inch)",
752-
ToolTipText="Inner diameter of production wellbore (assumed constant along the wellbore) to calculate \
753-
frictional pressure drop and wellbore heat transmission with Rameys model"
752+
ToolTipText="Inner diameter of production wellbore (assumed constant along the wellbore) to calculate "
753+
"frictional pressure drop and wellbore heat transmission with Rameys model"
754754
)
755755
self.rameyoptionprod = self.ParameterDict[self.rameyoptionprod.Name] = boolParameter(
756756
"Ramey Production Wellbore Model",
757757
DefaultValue=True,
758758
UnitType=Units.NONE,
759759
Required=True,
760760
ErrMessage="assume default production wellbore model (Ramey model active)",
761-
ToolTipText="Select whether to use Rameys model to estimate the geofluid temperature drop in the \
762-
production wells"
761+
ToolTipText="Select whether to use Rameys model to estimate the geofluid temperature drop in the "
762+
"production wells"
763763
)
764764
self.tempdropprod = self.ParameterDict[self.tempdropprod.Name] = floatParameter(
765765
"Production Wellbore Temperature Drop",
@@ -803,9 +803,9 @@ def __init__(self, model: Model):
803803
PreferredUnits=ImpedanceUnit.GPASPERM3,
804804
CurrentUnits=ImpedanceUnit.GPASPERM3,
805805
ErrMessage="assume default reservoir impedance (0.1 GPa*s/m^3)",
806-
ToolTipText="Reservoir resistance to flow per well-pair. For EGS-type reservoirs when the injection well \
807-
is in hydraulic communication with the production well, this parameter specifies the overall pressure drop \
808-
in the reservoir between injection well and production well (see docs)"
806+
ToolTipText="Reservoir resistance to flow per well-pair. For EGS-type reservoirs when the injection well "
807+
"is in hydraulic communication with the production well, this parameter specifies the overall "
808+
"pressure drop in the reservoir between injection well and production well (see docs)"
809809
)
810810
self.wellsep = self.ParameterDict[self.wellsep.Name] = floatParameter(
811811
"Well Separation",
@@ -839,8 +839,8 @@ def __init__(self, model: Model):
839839
PreferredUnits=PressureUnit.KPASCAL,
840840
CurrentUnits=PressureUnit.KPASCAL,
841841
ErrMessage="calculate reservoir hydrostatic pressure using built-in correlation",
842-
ToolTipText="Reservoir hydrostatic far-field pressure. Default value is calculated with built-in modified \
843-
Xie-Bloomfield-Shook equation (DOE, 2016)."
842+
ToolTipText="Reservoir hydrostatic far-field pressure. Default value is calculated with built-in modified "
843+
"Xie-Bloomfield-Shook equation (DOE, 2016)."
844844
)
845845
self.ppwellhead = self.ParameterDict[self.ppwellhead.Name] = floatParameter(
846846
"Production Wellhead Pressure",
@@ -862,8 +862,8 @@ def __init__(self, model: Model):
862862
PreferredUnits=InjectivityIndexUnit.KGPERSECPERBAR,
863863
CurrentUnits=InjectivityIndexUnit.KGPERSECPERBAR,
864864
ErrMessage="assume default injectivity index (10 kg/s/bar)",
865-
ToolTipText="Injectivity index defined as ratio of injection well flow rate over injection well outflow \
866-
pressure drop (flowing bottom hole pressure - hydrostatic reservoir pressure)."
865+
ToolTipText="Injectivity index defined as ratio of injection well flow rate over injection well outflow "
866+
"pressure drop (flowing bottom hole pressure - hydrostatic reservoir pressure)."
867867
)
868868
self.PI = self.ParameterDict[self.PI.Name] = floatParameter(
869869
"Productivity Index",
@@ -874,8 +874,8 @@ def __init__(self, model: Model):
874874
PreferredUnits=ProductivityIndexUnit.KGPERSECPERBAR,
875875
CurrentUnits=ProductivityIndexUnit.KGPERSECPERBAR,
876876
ErrMessage="assume default productivity index (10 kg/s/bar)",
877-
ToolTipText="Productivity index defined as ratio of production well flow rate over production well inflow \
878-
pressure drop (see docs)"
877+
ToolTipText="Productivity index defined as ratio of production well flow rate over production well inflow "
878+
"pressure drop (see docs)"
879879
)
880880
self.maxdrawdown = self.ParameterDict[self.maxdrawdown.Name] = floatParameter(
881881
"Maximum Drawdown",
@@ -886,10 +886,10 @@ def __init__(self, model: Model):
886886
PreferredUnits=PercentUnit.TENTH,
887887
CurrentUnits=PercentUnit.TENTH,
888888
ErrMessage="assume default maximum drawdown (1)",
889-
ToolTipText="Maximum allowable thermal drawdown before redrilling of all wells into new reservoir \
890-
(most applicable to EGS-type reservoirs with heat farming strategies). E.g. a value of 0.2 means that \
891-
all wells are redrilled after the production temperature (at the wellhead) has dropped by 20% of \
892-
its initial temperature"
889+
ToolTipText="Maximum allowable thermal drawdown before redrilling of all wells into new reservoir "
890+
"(most applicable to EGS-type reservoirs with heat farming strategies). E.g. a value of 0.2 "
891+
"means that all wells are redrilled after the production temperature (at the wellhead) has "
892+
"dropped by 20% of its initial temperature"
893893
)
894894
self.IsAGS = self.ParameterDict[self.IsAGS.Name] = boolParameter(
895895
"Is AGS",
@@ -946,7 +946,8 @@ def __init__(self, model: Model):
946946
PreferredUnits=PressureUnit.KPASCAL,
947947
CurrentUnits=PressureUnit.KPASCAL,
948948
Required=False,
949-
ErrMessage="assume there is not an injection reservoir, so there is no injection reservoir initial pressure",
949+
ErrMessage="assume there is not an injection reservoir, so there is no injection reservoir initial "
950+
"pressure",
950951
ToolTipText="enter the depth of the injection reservoir initial pressure (use lithostatic pressure)"
951952
)
952953
self.injection_reservoir_inflation_rate = self.ParameterDict[self.injection_reservoir_inflation_rate.Name] = floatParameter(
@@ -956,7 +957,8 @@ def __init__(self, model: Model):
956957
CurrentUnits=Inflation_RateUnit.KPASCALPERYEAR,
957958
Required=False,
958959
ErrMessage="assume there is not an injection reservoir, so there is no injection reservoir inflation rate",
959-
ToolTipText="enter the rate at which the pressure increases per year in the injection reservoir (1000 kPa/yr)"
960+
ToolTipText="enter the rate at which the pressure increases per year in the injection reservoir "
961+
"(1000 kPa/yr)"
960962
)
961963
# This is a alias for "Well Geometry Configuration" - putting it here for backwards compatibility
962964
self.Configuration = self.ParameterDict[self.Configuration.Name] = intParameter(

src/geophires_x_schema_generator/geophires-request.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@
621621
"maximum": 30.0
622622
},
623623
"Ramey Production Wellbore Model": {
624-
"description": "Select whether to use Rameys model to estimate the geofluid temperature drop in the production wells",
624+
"description": "Select whether to use Rameys model to estimate the geofluid temperature drop in the production wells",
625625
"type": "boolean",
626626
"units": null,
627627
"category": "Well Bores",
@@ -684,7 +684,7 @@
684684
"maximum": 200.0
685685
},
686686
"Reservoir Hydrostatic Pressure": {
687-
"description": "Reservoir hydrostatic far-field pressure. Default value is calculated with built-in modified Xie-Bloomfield-Shook equation (DOE, 2016).",
687+
"description": "Reservoir hydrostatic far-field pressure. Default value is calculated with built-in modified Xie-Bloomfield-Shook equation (DOE, 2016).",
688688
"type": "number",
689689
"units": "kPa",
690690
"category": "Well Bores",
@@ -702,7 +702,7 @@
702702
"maximum": 10000.0
703703
},
704704
"Injectivity Index": {
705-
"description": "Injectivity index defined as ratio of injection well flow rate over injection well outflow pressure drop (flowing bottom hole pressure - hydrostatic reservoir pressure).",
705+
"description": "Injectivity index defined as ratio of injection well flow rate over injection well outflow pressure drop (flowing bottom hole pressure - hydrostatic reservoir pressure).",
706706
"type": "number",
707707
"units": "kg/sec/bar",
708708
"category": "Well Bores",
@@ -711,7 +711,7 @@
711711
"maximum": 10000.0
712712
},
713713
"Productivity Index": {
714-
"description": "Productivity index defined as ratio of production well flow rate over production well inflow pressure drop (see docs)",
714+
"description": "Productivity index defined as ratio of production well flow rate over production well inflow pressure drop (see docs)",
715715
"type": "number",
716716
"units": "kg/sec/bar",
717717
"category": "Well Bores",
@@ -720,7 +720,7 @@
720720
"maximum": 10000.0
721721
},
722722
"Maximum Drawdown": {
723-
"description": "Maximum allowable thermal drawdown before redrilling of all wells into new reservoir (most applicable to EGS-type reservoirs with heat farming strategies). E.g. a value of 0.2 means that all wells are redrilled after the production temperature (at the wellhead) has dropped by 20% of its initial temperature",
723+
"description": "Maximum allowable thermal drawdown before redrilling of all wells into new reservoir (most applicable to EGS-type reservoirs with heat farming strategies). E.g. a value of 0.2 means that all wells are redrilled after the production temperature (at the wellhead) has dropped by 20% of its initial temperature",
724724
"type": "number",
725725
"units": "",
726726
"category": "Well Bores",

0 commit comments

Comments
 (0)