*solidmap_solids_end
Ends a multiple-solid solidmap command block.
Syntax
*solidmap_solids_end
Type
HyperMesh Tcl Modify
Description
This command is used by the multi-solid mapping algorithm to indicate the end of a solid mapping command block. It must be paired with a *solidmap_solids_begin command.
The commands below can appear in a multi-solids solidmap command block between
*solidmap_solids_begin and
*solidmap_solids_end:
*solidmap_solids_set_density
*solidmap_solids_set_elemsize
*solidmap_solids_set_face_params
*solidmap_solids_set_mapface
Example
To mesh solids 32 and 41 with a default elem size of 2.0 except on edges 2 and 4 which should have an elem size of 1.0:
*createmark solids 1 32 41
*solidmap_solid_begin 1 0 2.0
*createmark lines 1 2 4
*solidmap_solids_set_elemsize 1 1.0
*solidmap_solid_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
10.0