All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM: To create macro for locator, writing and reading node data. PROCEDURE: CODE: *clearmarkall 1 ; *clearmarkall 2set a .connectors catch [destroy $a]toplevel $awm title $a "CONNECTORS"wm geometry $a 200x210+100+300;wm resizable $a 0 0wm deiconify $a#buttons button $a.01 -text "Collectors" -command collectors…
Vivek Sant
updated on 02 Feb 2022
AIM: To create macro for locator, writing and reading node data.
PROCEDURE:
CODE:
*clearmarkall 1 ; *clearmarkall 2
set a .connectors
catch [destroy $a]
toplevel $a
wm title $a "CONNECTORS"
wm geometry $a 200x210+100+300;
wm resizable $a 0 0
wm deiconify $a
#buttons
button $a.01 -text "Collectors" -command collectors ; place $a.01 -x 10 -y 10 -width 180 -height 30
button $a.02 -text "X locator" -command X_loc ; place $a.02 -x 10 -y 50 -width 180 -height 30
button $a.03 -text "Y locator" -command Y_loc ; place $a.03 -x 10 -y 90 -width 180 -height 30
button $a.04 -text "Z locator" -command Z_loc ; place $a.04 -x 10 -y 130 -width 180 -height 30
button $a.05 -text "Z locator" -command Weld ; place $a.05 -x 10 -y 170 -width 180 -height 30
proc collectors {} {
*createmark components 1 "Weld" ;if {[hm_marklength comp 1] == 0} {*createentity components name = Weld}
*createmark components 1 "X_loc" ;if {[hm_marklength comp 1] == 0} {*createentity components name = X_loc}
*createmark components 1 "Y_loc" ;if {[hm_marklength comp 1] == 0} {*createentity components name = Y_loc}
*createmark components 1 "Z_loc" ;if {[hm_marklength comp 1] == 0} {*createentity components name = Z_loc}
}
proc Weld {} {
*clearmarkall 1
*clearmarkall 2
*currentcollector comp "Weld"
*createmarkpanel nodes 1 "select the nodes for spider web rep"
*rigidlinkinodecalandcreate 1 0 0 123456
}
proc X_loc {} {
*clearmarkall 1
*clearmarkall 2
*currentcollector comp "X_loc"
*createmarkpanel nodes 1 "select the primary node "
set prim_node [hm_getmark node 1]
*createmarkpanel nodes 1 "select the target node "
set targ_node [hm_getmark node 1]
*rigid $prim_node $targ_node 156
}
proc Y_loc {} {
*clearmarkall 1
*clearmarkall 2
*currentcollector comp "Y_loc"
*createmarkpanel nodes 1 "select the primary node "
set prim_node [hm_getmark node 1]
*createmarkpanel nodes 1 "select the target node "
set targ_node [hm_getmark node 1]
*rigid $prim_node $targ_node 246
}
proc Z_loc {} {
*clearmarkall 1
*clearmarkall 2
*currentcollector comp "Z_loc"
*createmarkpanel nodes 1 "select the primary node "
set prim_node [hm_getmark node 1]
*createmarkpanel nodes 1 "select the target node "
set targ_node [hm_getmark node 1]
*rigid $prim_node $targ_node 345
}
Reading nodes from a file
proc read_nodes {} {
set filename [tk_getOpenFile -title "Select note info file"]
set fileChanne1Id [open $filename r]
while {[eof $fileChanne1Id] == 0} {
puts [set 1st_nodeCord [gets $fileChannelId]]
*createnode [1index $1st_nodeCord 0] [1index $1st_nodeCord 1] [1index $1st_nodeCord 2];
}
close $fileChannelId
}
read_nodes;
OUTPUT
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Project - 2 - Generating the report for hypermesh file
AIM: To create a macro for generating the report for hypermesh file. CODE: # getting username, date and time!*clearmarkall 1*clearmarkall 2set filename [open Output.csv w]set systemname "$env(COMPUTERNAME)"puts $filename "USERNAME-$systemname"puts $filename [clock format [clock seconds]] # finding the number of component,…
07 Feb 2022 11:52 AM IST
Project 1- Building a Master TCL/TK Macro
AIM: To create a master macro using previous challenge PROCEDURE: CODE: #setting up the windowset a .master catch {destroy $a}toplevel $a -class TopLevelwm title $a "Master Macro" #size of a window tab is defined:wm geometry $a 660x515+0+0; update wm resizable $a 0 0wm deiconify $a #creating label label $a.001 -text…
02 Feb 2022 04:53 PM IST
Week - 12 - Creating the locator, writing and reading the node data
AIM: To create macro for locator, writing and reading node data. PROCEDURE: CODE: *clearmarkall 1 ; *clearmarkall 2set a .connectors catch [destroy $a]toplevel $awm title $a "CONNECTORS"wm geometry $a 200x210+100+300;wm resizable $a 0 0wm deiconify $a#buttons button $a.01 -text "Collectors" -command collectors…
02 Feb 2022 11:02 AM IST
Week - 11 - Element quality check
AIM: To create a macro for element quality check. PROCEDURE: CODE: #setting up the windowset a .element catch {destroy $a}toplevel $a -class TopLevelwm title $a "Quality Check" #size of a window tab is defined:wm geometry $a 390x500+50+50; update wm resizable $a 0 0wm deiconify $a #creating label label $a.001…
01 Feb 2022 03:22 PM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.