@@ -161,10 +161,10 @@ def setup(self):
161
161
self .log (
162
162
f"Skipped { skipped } points to avoid overlap with container" , LOG_LVL_DEBUG
163
163
)
164
+ self .log (f"Setup with settings: \n { self .settings } " , LOG_LVL_INFO )
164
165
self .log (f"Number of objects: { self .n_objs } " , LOG_LVL_INFO )
165
166
166
167
object_rotations = np .random .uniform (- np .pi , np .pi , (self .n_objs , 3 ))
167
- self .padding = 0.01
168
168
169
169
# SET TRANSFORM DATA
170
170
self .tf_arrays = np .empty ((self .n_objs , 7 ))
@@ -250,6 +250,9 @@ def resample_meshes(self, scale_factor):
250
250
self .curr_sample_rate = self .sample_rate_mesh (scale_factor )
251
251
self .shape = resample_pyvista_mesh (self .shape0 , self .curr_sample_rate )
252
252
self .container = resample_mesh_by_triangle_area (self .shape , self .container0 )
253
+ assert self .shape .is_manifold
254
+ assert self .container .is_manifold
255
+
253
256
self .log (f"container: n_faces: { self .container .n_faces } [sampled]/{ self .container0 .n_faces } [original]" , LOG_LVL_INFO )
254
257
self .log (f"mesh: n_faces: { self .curr_sample_rate } [sampled]/{ self .shape0 .n_faces } [original]" , LOG_LVL_INFO )
255
258
# self.padding = avg_mesh_area**(0.5) / 4 # This doenst help
@@ -353,8 +356,17 @@ def process_iteration(self, ib, i):
353
356
cat_viols , con_viols , collisions = compute_all_collisions (p_meshes , cat_meshes , self .container , set_contacts = False )
354
357
self .log_violations ((cat_viols , con_viols , collisions ))
355
358
359
+ violating_ids = set ([i for i , v in cat_viols ] + [i for i , v in con_viols ])
360
+
361
+ self .log ("reducing scale for violating objects: " + str (violating_ids ), LOG_LVL_INFO )
362
+ for id in violating_ids :
363
+ self .reduce_scale (id )
364
+
356
365
self .update_data (ib , i , (cat_viols , con_viols , collisions ))
357
366
367
+ def reduce_scale (self , id ):
368
+ self .tf_arrays [id ][0 ] *= 0.95
369
+
358
370
def check_closed_cells (self ):
359
371
cat_cells = [
360
372
PolyData (* cat .face_coord_to_points_and_faces (self .cat_data , obj_id ))
@@ -379,7 +391,7 @@ def log_violations(self, violations):
379
391
def default_setup () -> "Optimizer" :
380
392
DATA_FOLDER = "./../../data/mesh/"
381
393
382
- mesh_volume = 0.3
394
+ mesh_volume = 0.2
383
395
container_volume = 10
384
396
385
397
loaded_mesh = pv .read (DATA_FOLDER + "RBC_normal.stl" )
@@ -401,7 +413,7 @@ def default_setup() -> "Optimizer":
401
413
# padding=1e-3,
402
414
# sample_rate=1000,
403
415
dynamic_simplification = True ,
404
- alpha = 0.25 ,
416
+ alpha = 0.2 ,
405
417
beta = 0.5 ,
406
418
)
407
419
plotter = None
@@ -459,23 +471,25 @@ def simple_shapes_setup() -> "Optimizer":
459
471
460
472
# %%
461
473
474
+ reload (plots )
475
+
462
476
463
477
def plot_step (optimizer , step ):
464
478
plotter = pv .Plotter ()
465
479
meshes , cat_meshes , container = optimizer .recreate_scene (step )
466
- plots .plot_simulation_scene (plotter , meshes , cat_meshes , container )
480
+ plots .plot_simulation_scene (plotter , meshes , cat_meshes , container , c_kwargs = { "show_edges" : True , "edge_color" : "purple" } )
467
481
plotter .add_text (optimizer .status (step ).table_str , position = "upper_left" )
468
482
469
483
plotter .show ()
470
484
return plotter
471
485
472
486
473
- plot_step (optimizer , 6 )
487
+ plot_step (optimizer , 33 )
474
488
475
489
476
490
# %%
477
- obj_i , step = 10 , 5
478
- meshes , cat_meshes , container = optimizer .recreate_scene (step )
491
+ obj_i , step = 6 , 31
492
+ meshes_before , meshes_after , cat_meshes , container = optimizer .recreate_scene (step )
479
493
# plots.plot_step_comparison(
480
494
# optimizer.mesh_before,
481
495
# optimizer.mesh_after(step, obj_i),
@@ -484,8 +498,13 @@ def plot_step(optimizer, step):
484
498
# )
485
499
# %%
486
500
reload (plots )
487
-
488
- plotter = plots .plot_step_single (meshes [obj_i ], cat_meshes [obj_i ], cat_opacity = 0.7 , mesh_opacity = 1 , clipped = True , title = "cat overlap" )
501
+ obj_i = 6
502
+ plotter = plots .plot_step_single (
503
+ meshes_before [obj_i ], cat_meshes [obj_i ], container = container , cat_opacity = 0.7 , mesh_opacity = 1 , clipped = True , title = "cat overlap" ,
504
+ c_kwargs = {"show_edges" : True , "edge_color" : "purple" , "show_vertices" : True , "point_size" : 10 },
505
+ m_kwargs = {"show_edges" : True , "show_vertices" : True , "point_size" : 10 , },
506
+ cat_kwargs = {"show_edges" : True , "show_vertices" : True , "point_size" : 5 , },
507
+ )
489
508
490
509
# %%
491
510
# store cat mesh in file
@@ -534,4 +553,5 @@ def profile_optimizer():
534
553
print (f"{ ai } { bi } `" )
535
554
ax .plot (mesh_simplification_condition (x , ai , bi ), label = f"a:{ ai :.2f} , b:{ bi :.2f} " )
536
555
ax .legend ()
556
+
537
557
# %%
0 commit comments