@@ -304,7 +304,7 @@ def _generate_one_fault_model_gravity(compute_model):
304304 )
305305
306306 interpolation_options = geo_model .interpolation_options
307- interpolation_options .mesh_extraction = True
307+ interpolation_options .mesh_extraction = False
308308 interpolation_options .kernel_options .range = .7
309309 interpolation_options .kernel_options .c_o = 3
310310 interpolation_options .kernel_options .compute_condition_number = True
@@ -388,7 +388,9 @@ def _generate_one_fault_model_gravity(compute_model):
388388 geo_model .update_transform (gp .data .GlobalAnisotropy .NONE )
389389
390390 interesting_columns = pd .DataFrame ()
391- x_vals = np .arange (20 , 191 , 10 )
391+ # x_vals = np.arange(20, 191, 10)
392+
393+ x_vals = np .linspace (20 , 191 , 6 )
392394 interesting_columns ['X' ] = x_vals
393395 interesting_columns ['Y' ] = np .zeros_like (x_vals )
394396
@@ -401,7 +403,7 @@ def _generate_one_fault_model_gravity(compute_model):
401403 gp .set_centered_grid (
402404 grid = geo_model .grid ,
403405 centers = device_location ,
404- resolution = np .array ([75 , 5 , 150 ]),
406+ resolution = np .array ([75 / 3 , 5 , 150 / 3 ]),
405407 radius = np .array ([150 , 10 , 300 ])
406408 )
407409
0 commit comments