Hello,
Hoping someone can help me find the most efficient way to select elements with multiple selection criteria -
i.e. I want to select all of the elements within a specific component, then further refine the selection to only select the quad4 elements.
I don't think hm_createmark can take multiple arguments, but if it could, an ideal solution would look something like:
hm_createmark elements 1 "by config" "quad4" "by comp" ID#...etc
I'm getting by with this, but this is rather slow for large models and seems limited in the number of conditions:
hm_createmark elements 1 "by config" "quad4"
hm_createmark elements 2 "by comp" $comp
*markintersection elements 1 elements 2
Thanks in advance!