Create macro for Automesh(F12) with "elem" selection entities
Hi everyone,
When I use Automesh(F12) to create FE modeling, I always have to switch b/w Elem and Surf.
I already checked *.cmf command but could not find the default setting for this to make macro.
I would like to create 2 shortcutkey: 'E' >> Automesh with element(remesh). 'S' >> Automesh for surface(new mesh).
Since I am newbies at TCL, hope any one can help on this TCL macro.
Thanks a lot!
Find more posts tagged with
Sort by:
1 - 8 of
81
Heeeee
The number is sometimes changed a bit although same version. I don't know why
my hm12 is 18
to get it exactly => you can dump the panel by
hm_dumppanel automesh
and looking for the number fore (ENTITY_COLLECTOR)
from hm12, panels seem respond better. with hm11 i usually have to set timer when customize panels
Hello
as in hm12:
proc press_E {} {
hm_setcollector automesh 18 elems
hm_pushpanel automesh
}
proc press_S {} {
hm_setcollector automesh 18 surfs
hm_pushpanel automesh
}