Selections
You can create selections of geometric entities such as domains, boundaries, edges, or points. These selections can be accessed during the modeling process with the advantage of not having to select the same entities several times.
1
To create a domain selection corresponding to the titanium bolts, named
Ti bolts
, enter:
sel1 = comp1.selection.create('sel1');
sel1.set([2 3 4 5 6 7]);
sel1.label('Ti bolts');
2
To visualize the selection in a MATLAB figure, enter:
mphviewselection(model,'sel1');