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! > MetalWorking Machines > CNC Plasma and Waterjet Machines


CNC Plasma and Waterjet Machines Discuss building, operating CNC Plasma, waterjet and EDM machines here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 08-24-2006, 10:52 AM
Redline's Avatar  
Join Date: Oct 2004
Location: US
Posts: 85
Redline is on a distinguished road
Floating Head Switch?

Does any one have a picture of what a floating head W/probe switch looks like.I have an idea but I think it is wrong.The way I have it now is as follows. When the Z-axis probes down to find the top of the material, it will go down till the torch tip touches the material?As soon as it touches the floating head will make the probe switch (it will be NC or NO ?) It will continue until it reaches the set probing distance? Then it will back away to the material surface? Then it steps back whatever distance I have set for the pierce height?

Does this sound correct? I,m new and I don,t know what to do.
Tweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 08-24-2006, 09:13 PM
 
Join Date: Jul 2005
Location: USA
Posts: 1,834
Torchhead is on a distinguished road
There are some pictures on the CNCMANUALPLASMA yahoo group and on CandCNCSupport.

The basic concept is that the tip touches the material wich moves the torch holder and torch upwards. A switch (roller type lever switch work good) is mounted so that as the torch holder does move up it rolls past the switch and the switch is activated. The switch is hooked to the Z home input. At the point the switch is activated, the tip is actually sitting on the surface and you have run past the actual zero point. The home move will back the Z up some but not enough to actually leave the tip at precisely the top of the surface. That is where the switchoffset value is used. It is the net value between where the swtich is tripped minus the home "backoff" and the actually Z distance to move the tip to just (.005 or less) above the material

Here is how to calibrate it:

Make sure Homing is working on the Z axis and it moves in the right direction (down) on a home move and hits the switch and stops. You should be able to reach over and slide the torch and holder up with your hand and manually trip the Z home and see it in the Diagnostics page of MACH.
Now load some material and hit the reference button for Z (next to the DRO). The head will move down, push the torch holder up, the torch holder strikes the roller of the switch and the switch stops the Z axis. Next without moving the Z, hit the Z Zero and zero the DRO. Now, carefully jog Z up until you can just slip a piece of paper between the tip and the material. Read the value on the Z DRO....that is your "switch offset value". Do the calibration a couple of times to make sure it's repeatable.

There are two ways to use the value. If you are NOT using SheetCAM and it's special THC300 Plasma POst or the MP1000THC post (both do automatic "touch-n-go"), then put the switch offset value into MACH3 in the Homing/Limits (Home Off) as a NEGATIVE number. Thus when you home the DRO for Z will show you are actually below the plate and compensate the Z axis that amount. It does not automatically back off to zero but when you tell it to retract it adds the distance to the move.

The other way. is to use SheetCAM, and simply open the post and find the "Switchoffset = xx" statement in the post (where xx is a number) and put your value for switchoffset there. From that point on it will stuff that value in the g-code and automatically back the head off to true surface zero and reset the Z DRO.

Either method works. Just do do both!

The advantage of using SHeetCAM and the listed posts is that it puts in the Z reference moves for you and has a distance traveled value (default 20 inches) that is used to trigger a new reference move before pierce. Most THC's not under control of the toolpath software simple reference every pierce since they don't maintain an actual Z height. Using the Sheetcam and triggred reference approach you only reference every "X" pierces. You still get the advantage of being able to cut warped and buckled material but without the delay of probe-pierce, probe-pierce, etc.

The type of swtich (NO or NC) does not matter since you can use either as a a Home swtich. Most common is NO.

It's the actual movement UP of the floatinghead that trips the swtich. It can be .020 of movement up to an inch as long as it says consistant and you can put it in the switch offset value.

I have a mechanical drawing of a floating head (soemwhere) and I will try to get it posted on my support site.

Tom Caudle
www.CandCNC.com
Tweet this Post!Share on Facebook
Reply With Quote

  #3   Ban this user!
Old 08-24-2006, 09:16 PM
 
Join Date: Jul 2005
Location: USA
Posts: 1,834
Torchhead is on a distinguished road
"Either method works. Just do do both!"

I meant to say: "Either method works, Just DON'T do both!"
Tweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 08-25-2006, 11:41 PM
Redline's Avatar  
Join Date: Oct 2004
Location: US
Posts: 85
Redline is on a distinguished road
Ok . Thanks again torchhead!
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 09-03-2006, 08:29 AM
Redline's Avatar  
Join Date: Oct 2004
Location: US
Posts: 85
Redline is on a distinguished road
Torchhead could you give me a sample program to show me how this should work.It doesn't have to be a part or anything .I just want to see how to program all of my z-axis moves. I figured out my touch off distance it is .1166
.
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 09-03-2006, 11:10 AM
Redline's Avatar  
Join Date: Oct 2004
Location: US
Posts: 85
Redline is on a distinguished road
I figured it out, I had to cut and paste this into the macros for the M3:

rem modified 02/04/2004 by Jim Cullins
Option Explicit
Dim TorchHeight, SwitchTravel, PierceDelay,TCutHeight
PierceDelay = getUserDRO (1001)

code "g31z-1"
While IsMoving()
wend
TorchHeight = GetUserDRO(1000)
SwitchTravel = GetUserDRO(1002)

TCutHeight = (getUserDRO (1003) + SwitchTravel)
code "G92Z0"
code "G1Z" & (SwitchTravel + TorchHeight)
While IsMoving()
wend
DoSpinCW()
code "G4 P" & (PierceDelay)
code "G1Z" & (TCutHeight )
TorchHeight = 0
SwitchTravel = 0
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 09-03-2006, 12:30 PM
 
Join Date: Jul 2005
Location: USA
Posts: 1,834
Torchhead is on a distinguished road
This does a reference on every pierce. That works but on a decorative piece with 50 pierces it is a waste of time. The THC post in SheetCAM has an automatic reference that will only reference Z every 500mm (default) of XY movement. It does the Z reference in g-code so the stock M03 macro is used for everything. Since one of the advantages of using MACH to control Z is it's knowing the height at all times, you can do multiple non-referenced pierces as long as the metal is flat in the area.

I urge you to consider upgrading to MACH3 and to the development version. We have found and solved several THC bugs and issues that are present in MACH2; one as recently as last month. I found that if you use an aggressive Input Debounce parameter (>500) to debounce the noise off inputs in MACH it also effects the response loop of the UP and DOWN inputs and causes the THC to do a vertical "sawtooth" cut with overshoots. Looks like a basketball going down the court! In severe cases it can cause the torch to loose arc. The latest development release has the debounce setting ignored by the Torch UP and DOWN input signals that are used by the THC300

There are other small problems that have been solved as well.
Tweet this Post!Share on Facebook
Reply With Quote

  #8   Ban this user!
Old 09-03-2006, 01:04 PM
Redline's Avatar  
Join Date: Oct 2004
Location: US
Posts: 85
Redline is on a distinguished road
I tried to download Mach3 today with no luck.I did the re-boot,but it kept locking up when I would try to open it afterwards.
Tweet this Post!Share on Facebook
Reply With Quote

  #9   Ban this user!
Old 09-17-2006, 03:51 PM
 
Join Date: May 2005
Location: usa
Posts: 149
dgalaxy is on a distinguished road
i havent got to the sitch yet but here is the one im working . this is just my opinion but if your kinda new at this stuf as i am. i would highly recommend dealing with Tom over at candcnc he is a great guy and offers awsome products
John
st.louis
Attached Thumbnails
Click image for larger version

Name:	SUPERMAN 001.jpg‎
Views:	331
Size:	113.2 KB
ID:	22903  
Tweet this Post!Share on Facebook
Reply With Quote

  #10   Ban this user!
Old 09-18-2006, 09:21 AM
smilewizard's Avatar  
Join Date: Nov 2005
Location: usa
Posts: 74
smilewizard is on a distinguished road
hehehe, your table looks like mine. Partially cut material, tools everywhere, some instructions, and a Garage door. My kind of people.
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
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 On
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 02:12 AM.





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