-
Content Count
2540 -
Joined
-
Last visited
-
Days Won
207
tinh last won the day on February 22
tinh had the most liked content!
About tinh
-
Rank
Super User
Contact Methods
-
Website URL
http://tinh411@gmail.com
Profile Information
-
Gender
Male
-
Country
Vietnam
-
Interests
Meshing-checking tools tcl/tk
-
Are you University user?
Yes
Recent Profile Visitors
-
GAJENDRA KUMAR NHAICHANIYA started following tinh
-
GAJENDRA KUMAR NHAICHANIYA liked a post in a topic: What are the units used in otpistruct?
-
brahmadev liked a post in a topic: Find the edges of hole
-
brahmadev liked a post in a topic: Find the edges of hole
-
brahmadev liked a post in a topic: Find the edges of hole
-
vipin liked a post in a topic: Matrix Browser
-
tinh liked a post in a topic: Filling the holes with mesh
-
HOW TO FIND INTERNAL FREE EDGES IN HYPERMESH BY MACRO
tinh replied to sonu kumar's topic in HyperWorks Scripts & Customization
Above sample script can detect holes and internal free edges, too. From each node list of hole you can close it. -
Punith liked a post in a topic: Matrix Browser
-
How to use Multiple load steps in a single objective?
tinh replied to Aishwarya Patwardhan's topic in Altair OptiStruct
min disp objective is just counted for 1 case if you want to incorporate more cases, use min weighted compliance objective -
because surfaces do not have data name 'area', so you must calculate it. populate a column with data name 'surfaces' create a user data with type "procedure" and calculate area as: set col_data {} foreach surf_list [::MatrixBrowser::getColumn surfaces] { set area 0 foreach surf_id $surf_list {set area [expr $area+[hm_getareaofsurface surfs $surf_id]]} lappend col_data $area } return $col_data
-
Do you have any demostration clip?
-
Checking Whether all nodes in model having "TEMPERATURE" load or not
tinh replied to Vikas Kumar's topic in HyperWorks Scripts & Customization
Hi, don't need *findmark try this *nodecleartempmark *createmark loads 1 "by config" temperature *createmark nodes 1 "by loads" {*}[hm_getmark loads 1] *createmark nodes 1 reverse *nodemarkaddtempmark 1 -
tinh liked a post in a topic: HOW TO FIND INTERNAL FREE EDGES IN HYPERMESH BY MACRO
-
HOW TO FIND INTERNAL FREE EDGES IN HYPERMESH BY MACRO
tinh replied to sonu kumar's topic in HyperWorks Scripts & Customization
Hi Look it up in hypermesh reference help There is an example there Some posts on this forum talk about it also, please search. -
Customizing the output of a loadstep
tinh replied to Bachelor22's topic in HyperWorks Scripts & Customization
Try removing the commands? I recommend not to use *setvalue It is new command and i think it's just a wrapping of native *attributeupdate commands, means that bug and bug when dev writes it. Can't trust new dev team so it's better to use native api! -
Log off then log on again Or restart pc Windows is sometime very fool!
-
Can you tell purpose of matrix browser?
-
Just rotate viewport before use hidden line
-
HOW TO FIND INTERNAL FREE EDGES IN HYPERMESH BY MACRO
tinh replied to sonu kumar's topic in HyperWorks Scripts & Customization
Use hm_holedetectioninit Then use ruled mesh to fill holes -
brahmadev liked a post in a topic: GUI for HyperMesh Script
-
Creating Assembly Hierarchy in new top level window
tinh replied to MOHAMMED ABDULLA T's topic in HyperWorks Scripts & Customization
And to bring assemlist to a toplevel, use hwtk::treectrl widget -
Creating Assembly Hierarchy in new top level window
tinh replied to MOHAMMED ABDULLA T's topic in HyperWorks Scripts & Customization
Use hm_assemlist -
Select elements by configuration
tinh replied to sanket_patil's topic in HyperWorks Scripts & Customization
It looks incorrect but somehow it worked! Good job -
tinh liked a post in a topic: Select elements by configuration
-
There is a private hm proc to call that GUI. I don't have hypermesh here to check it.plz wait till Monday You can make a similar GUI using hwtk::selectlist combine a wait mechanizm to configure it as a modal dialog