*voxel_lattice_hex_mesh_fill_voids

Sets the mode for filling closed volumes during voxel creation.

Syntax

*voxel_lattice_hex_mesh_fill_voids mode

Type

HyperMesh Tcl Modify Command

Description

Sets the mode for filling closed volumes during voxel creation.

This must be preceeded by a call to *voxel_lattice_hex_mesh_init and must be followed by a call to *voxel_lattice_hex_mesh_create.

Inputs

mode
0 - Only intersected voxels are considered for computing the volumes.
1 - All the voxels are considered for computing the volumes.

Example

To create voxels of size 10 for include components 100-110 and exclude components 200-203:

*voxel_lattice_hex_mesh_init 10
*voxel_lattice_hex_mesh_fill_voids 0
*createmark comps 1 100-110
*voxel_lattice_hex_mesh_add_entities comps 1 1
*createmark comps 2 200-203
*voxel_lattice_hex_mesh_remove_entities comps 2 1
*voxel_lattice_hex_mesh_create
*voxel_lattice_hex_mesh end

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}

Version History

2019.1