File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ class GeoModel(BaseModel):
71
71
72
72
# endregion
73
73
_solutions : Solutions = PrivateAttr (init = False , default = None ) #: The computed solutions of the geological model.
74
+ _taped_interpolation_input : InterpolationInput | None = PrivateAttr (default = None )
74
75
75
76
def __repr__ (self ):
76
77
# TODO: Improve this
@@ -220,6 +221,14 @@ def interpolation_input_copy(self):
220
221
def input_data_descriptor (self ) -> InputDataDescriptor :
221
222
# TODO: This should have the exact same dirty logic as interpolation_input
222
223
return self .structural_frame .input_data_descriptor
224
+
225
+ @property
226
+ def taped_interpolation_input (self ) -> InterpolationInput :
227
+ return self ._taped_interpolation_input
228
+
229
+ @taped_interpolation_input .setter
230
+ def taped_interpolation_input (self , value : InterpolationInput ):
231
+ self ._taped_interpolation_input = value
223
232
224
233
# endregion
225
234
# region Constructors
You can’t perform that action at this time.
0 commit comments