Skip to content

Commit 2eddbb4

Browse files
committed
setting nobisect=True and order=1 to default domain.py to process without surface modifications and linear tetrahedra generation
1 parent 106100c commit 2eddbb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

svv/domain/domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def get_interior(self, verbose=False, **kwargs):
554554
self.area = _mesh.area
555555
self.volume = 0.0
556556
elif self.points.shape[1] == 3:
557-
_mesh, nodes, vertices = tetrahedralize(self.boundary, verbose=verbose, **kwargs)
557+
_mesh, nodes, vertices = tetrahedralize(self.boundary, order=1, nobisect=True, verbose=verbose, **kwargs)
558558
_mesh = _mesh.compute_cell_sizes()
559559
_mesh.cell_data['Normalized_Volume'] = (_mesh.cell_data['Volume'] / sum(_mesh.cell_data['Volume']))
560560
self.all_mesh_cells = list(range(_mesh.n_cells))

0 commit comments

Comments
 (0)