CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > Mach Software (ArtSoft software) > Mach Wizards, Macros, & Addons



This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 09-30-2009, 03:10 PM
 
Join Date: Jul 2008
Location: UK
Posts: 135
HankMcSpank is on a distinguished road
Wizard to find centre of circular bit of metal?

I've had a quick google about without much luck - most circle related wizards see to focus on touching the inner eges of a hollow circle (eg pipe/tube) , but what I seek is a Mach3 Mill wizard where it'll find the centre of a piece of circular material by probing the outside edges of the material in a few places.

Does such a wizard exist?

Last edited by HankMcSpank; 09-30-2009 at 05:01 PM.
Reply With Quote

  #2   Ban this user!
Old 10-05-2009, 02:11 AM
ataxy's Avatar  
Join Date: Jul 2005
Location: canada
Posts: 969
ataxy is on a distinguished road

check hoss probe script i am sure it can do it
__________________
The opinions expressed in this post are my own. -Les opinions exprimé dans ce messages sont les mienne
Reply With Quote

  #3   Ban this user!
Old 10-05-2009, 08:12 AM
 
Join Date: Jul 2006
Location: USA
Posts: 40
Art Pentz is on a distinguished road

Hi Hank,

A Tormach owner, Maurice Proulx posted a wizard (Circular Boss Center Point)on the Yahoo Tormach group (files section).

This add on for Mach 3 is increadibly useful.

It is compressed using RAR compresssion - so you have to have a RAR extract utility to open it.

Once I downloaded this utility, I found all kinds of uses for it.

Best regards;

Art Pentz
Reply With Quote

  #4   Ban this user!
Old 10-18-2009, 07:32 AM
 
Join Date: Dec 2007
Location: Italy
Posts: 9
Tiziano Deodato is on a distinguished road

Originally Posted by HankMcSpank View Post
...., but what I seek is a Mach3 Mill wizard where it'll find the centre of a piece of circular material by probing the outside edges of the material in a few places.

Does such a wizard exist?
I do not know if a wizard exist, i made a macro that does many functions.
This is the "Shaft" extract
To run it you have to link to a user button or include in yours other functions.

Take care, when you run the shaft procedure, a check is made to be sure that the gauge is not already engaged, than to continue the operation you must engage it (ground it like a push button).

'find shaft center and calculate diameter
Sub Shaft
Option Explicit

Dim TS As Single
Dim FeedCurrent, Xcurrent, Ycurrent , Zcurrent As Single
Dim XCenter, YCenter, XPos1, XPos2, YPos1, YPos2, XNew, YNew, ZNew, ZPos1,ZSafe As Single
Dim responce As Integer
Dim Max_move , Shaft_D As Double

Const ZClear = 10 'Safe Z
Const XMove = 4 'Max probe search
Const YMove = 4 'Max probe search
Const FSlow = 50 'edje search speed
Const Tout = 15 'Time out in seconds

Const Probe_Radius = 3.15 '

If GetOemLed (825) <> 0 Then 'Check to see if the probe is already grounded or faulty
Code "(Probe grounded, check connection and try again)"
responce = MsgBox ("Probe grounded, check connection and try again" , 0 , "Probe **ERROR**" )
Exit Sub
End If

Rem VBScript To shaft center

Max_move = Question ("Enter max shaft diameter, min value 1 mm")
If Max_move < 1 Then
Code "(Diameter < 1, Function abort)"
Exit Sub
End If

If Touch ("(Touch the Probe to start Shaft center function)") Then Exit Sub

Code "F" & FSlow

Rem Probe up

YNew = YCurrent + Max_move
Code "G31 Y" &YNew
While IsMoving()
sleep 100
Wend
YPos1 = GetVar(2001)

YNew = YPos1 - 0.5
Code "G0 Y" &YNew
ZNew = ZCurrent + ZClear
Code "G0 Z" &ZNew
YNew = YPos1 + Max_move + (Probe_Radius * 2) + 2
Code "G0 Y" &YNew
Code "G0 Z" &ZCurrent

Rem Probe down

YNew = YNew - Max_move - Probe_Radius
Code "G31 Y" &YNew
While IsMoving()
sleep 100
Wend
YPos2 = GetVar(2001)

YNew = YPos2 + 0.5
Code "G0 Y" &YNew
ZNew = ZCurrent + ZClear
Code "G0 Z" &ZNew
YCenter = (YPos1 + YPos2) / 2
Code "G0 Y" &YCenter

Rem Probe Left

XNew = XCurrent - Max_move - (Probe_Radius * 2) 'probe to left
Code "G0 X" &XNew
Code "G0 Z" &ZCurrent
XNew = XNew + Max_move + Probe_Radius
Code "G31 X" &XNew
While IsMoving() 'wait for the move to finish
sleep 100
Wend
XPos1 = GetVar(2000) 'get the probe touch location

XNew = XPos1 - 0.5
Code "G0 X" &XNew
ZNew = ZCurrent + ZClear
Code "G0 Z" &ZNew

Rem Probe Right

XNew = XPos1 + Max_move + (Probe_Radius * 2) + 2 'probe to right
Code "G0 X" &XNew
Code "G0 Z" &ZCurrent
XNew = XNew - Max_move - Probe_Radius
Code "G31 X" &XNew
While IsMoving()
sleep 100
Wend
XPos2 = GetVar(2000)

XNew = XPos2 + 0.5
Code "G0 X" &XNew
ZNew = ZCurrent + ZClear
Code "G0 Z" &ZNew
XCenter = (XPos1 + XPos2) / 2 'center is midway between XPos1 and XPos2
Code "G0 X" &XCenter 'rapid move to the x center location
While IsMoving ()
sleep 100
Wend

Shaft_D = (XPos2 - XPos1) - (2 * Probe_Radius)
Code "(Shaft diameter = " & Shaft_D & " mm)"
Code "F" &FeedCurrent 'restore starting feed rate
End Sub


'Wait for a probe touch - untouch
Function Touch (Tshow As String) As Integer

Code Tshow

'wait probe touch
TS = Timer
Do
If Timer - TS > Tout Then
Code "(Function Time Out, no probe touch detected)"
responce = MsgBox ("Function Time Out, no probe touch detected" , 0 , "Probe **ERROR**" )
Touch = 1
Exit Function
End If
sleep 100
Loop Until GetOemLed (825) <> 0

'short delay
sleep 1000 'let user to untouch probe

'Wait for probe untouch
TS = Timer
Do
If Timer - TS > 2 Then
Code "(Function Time Out, continuous probe touch detected)"
responce = MsgBox ("Function Time Out, continuous probe touch detected" , 0 , "Probe **ERROR**" )
Touch = 1
Exit Function
End If
sleep 100
Loop Until GetOemLed (825) = 0
Touch = 0
End Function


Regards
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem- tip not at the centre david_geng Digitizing and Laser Digitizing 1 02-26-2009 09:03 AM
Looking for 3 pins metal circular connector rainman Want To Buy...Need help! 0 02-08-2009 07:59 PM
Need Help!- Finding the centre of an arc Robin Hewitt G-Code Programing 15 03-28-2008 08:02 AM
Nesting Wizard, Mach3 internal wizard. thuffner3 Mach Software (ArtSoft software) 1 03-04-2007 08:38 PM
Where can i find metal lathe spare parts in brisbane? rhino Australia, New Zealand Club house 6 05-09-2006 02:02 AM




All times are GMT -5. The time now is 03:15 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361