Home
Downloads
Mach3
Plugins
CAM Post Processors
Screensets
Purchase
Support
Forum
Tutorial Videos
Documentation
Yahoo Group
Mach Wiki
Resources
Contact Us
Links
CNCZone
German Forum
Italian Forum
Korean Forum
Portugese (Brazil) Forum
Russian Forum (RSK CNCROUTER)
Thai Forum
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email?
May 27, 2012, 02:04:55 PM
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Search:
Advanced search
Select from and to languages
Chinese-simp to English
Chinese-trad to English
English to Chinese-simp
English to Chinese-trad
English to Dutch
English to French
English to German
English to Greek
English to Italian
English to Japanese
English to Korean
English to Portuguese
English to Russian
English to Spanish
Dutch to English
Dutch to French
French to English
French to German
French to Greek
French to Italian
French to Portuguese
French to Dutch
French to Spanish
German to English
German to French
Greek to English
Greek to French
Italian to English
Italian to French
Japanese to English
Korean to English
Portuguese to English
Portuguese to French
Russian to English
Spanish to English
Spanish to French
Machsupport Forum
Mach Discussion
General Mach Discussion
Plasma Z floating head
Pages:
1
2
»
Go Down
« previous
next »
Author
Topic: Plasma Z floating head (Read 1400 times)
0 Members and 1 Guest are viewing this topic.
happytriger2000
Active Member
Offline
Posts: 21
Plasma Z floating head
«
on:
January 11, 2011, 08:28:23 AM »
Hello,
This is my 1st post in Machsupport.
I have a 3 axis cnc router and I want to convert it to a plasma machine, so far this is what I have done:
http://s1220.photobucket.com/albums/dd459/happytriger2000/Machsupport/?action=view¤t=M4H02695.mp4
I wan the Z axis to do the same as in this video:
http://asooke.com/videos-cnc-plasma-with-thc-and-floating-%5Ban5HYBQWTpg%5D.cfm
Can anyone guide me from this point onwards?
thanks,
Logged
BR549
Active Member
Offline
Posts: 2,556
Re: Plasma Z floating head
«
Reply #1 on:
January 11, 2011, 11:31:18 AM »
You can set it up one of two ways using the G28.1 method OR use the G31 method.
With the G28.1 method you set up your floating head as the Z home and have it home toward the bed. Then the Cam that you use must generate the following type code.
N0120 G28.1 Z0.50
N0130 G92 Z0.0
N0140 G00 Z0.1370
N0150 G92 Z0.0
N0160 G00 Z0.2000
With the G31 method you setup the floating head as a Probe then you cam must generate code like
N0120 G31 Z -100 F19.685
N0130 G92 Z-0.0800
N0140 G00 X5.5505 Y9.8813
N0150 Z0.0000
Hope that helps, (;-) TP
Logged
happytriger2000
Active Member
Offline
Posts: 21
Re: Plasma Z floating head
«
Reply #2 on:
January 12, 2011, 02:51:39 AM »
Hi Br549,
Thanks.
I'm still hesitating on what the exact vulue should it be for the distance between the MicroSwitch and the Torch collar?
Currently is 13.7mm.
Should this distance be the thickness of the plate that going to be cut, 6mm,?
thanks,
Logged
BR549
Active Member
Offline
Posts: 2,556
Re: Plasma Z floating head
«
Reply #3 on:
January 12, 2011, 12:12:16 PM »
That distance PLUS the amount of travel in the switch is used to move the head BACK up so the tip of the torch is exactly at the top of the material.
Using the G28.1 method and assuming the distance + the travel equals .250" NOTE: your Cam program will have a place for THAT setting
G28.1 Z.50 ' references the head down until it trips the switch
G92 Z0.000 'Sets that point to ZERO
G0 Z0.250 ' Moves the head UP the amount of the head travel + switch movement
G92 Z0.000 ' Sets that position to ZERO, that will be TOP of the material,
G0 Z.100 ' Move the head up to a clearance position
NOW you head is referenced to the TOM and you are ready to start a cut.
Note that most CAMS rereference the TOM every so many inches of torch travel . If the setting is every 50" then the next torch start after the machine has cut 50" then it will ref the head before it cuts again.
Collar Distance?? Make it anything you like (;-) normally the closer the better.
Hope that helps (;-) TP
«
Last Edit: January 12, 2011, 12:18:35 PM by BR549
»
Logged
happytriger2000
Active Member
Offline
Posts: 21
Re: Plasma Z floating head
«
Reply #4 on:
January 12, 2011, 10:56:35 PM »
Thanks again BR549,
I'm new to Sheetcam, still using a demo version downloaded yesterday.
I was wondering if it's possible to use Mach 3 to do the Z axsi floating offset without Sheetcam?.
Like the Mach blue screenset that has the Autotool zero feature, Link:http://www.cnczone.com/forums/cnc_wood_router_project_log/36099-another_aussie_auto_tool_zero.html,
instead of touching the plate, Z home switch is tripped, reset Z DRO to zero, raise Z to Swtichoffset value so tip is setting on top of material, reset Z to zero as top of material, raise Z to pierce height, fire torch.
I haven't used a plasma machine before, only hand cut.
Logged
BR549
Active Member
Offline
Posts: 2,556
Re: Plasma Z floating head
«
Reply #5 on:
January 13, 2011, 11:54:22 AM »
It would be best to let the Gcode side drive that part and use Sheet Cam to post the code. At that point it is an automatic function.
(;-) TP
Logged
rrc1962
Active Member
Offline
Posts: 434
Re: Plasma Z floating head
«
Reply #6 on:
January 13, 2011, 04:31:59 PM »
I use a macro in Mach3 to handle the torch referencing. I use one of 3 methods for sensing. Ohmic, floating head or capacitance. The machine is set up with all 3 and I never really know which one I'll use, so in Sheetcam I just insert the M code for the macro. Each method uses a different offset. The macro looks at a few different parameters to determine which method is in use and runs the referencing routine. After the macro runs, M03 is called to fire the torch.
If pierceHeight <= 0 Then
MsgBox("Please enter a valid pierce height")
code "M30"
Else
code "F30"
code "G31 Z-1"
While ismoving
Wend
code "G92 Z" & offset
While ismoving
Wend
code "G00 Z" & pierceHeight
While ismoving
Wend
End If
Logged
happytriger2000
Active Member
Offline
Posts: 21
Re: Plasma Z floating head
«
Reply #7 on:
January 13, 2011, 11:01:41 PM »
rrc1962,
Will try your code, I kind of forgot how to edit the M03 code, please guide me,
Thanks,
Logged
happytriger2000
Active Member
Offline
Posts: 21
Re: Plasma Z floating head
«
Reply #8 on:
January 13, 2011, 11:09:39 PM »
Ok I think I know,
C:\Mach3\macros\Mach3Mill
Logged
happytriger2000
Active Member
Offline
Posts: 21
Re: Plasma Z floating head
«
Reply #9 on:
January 13, 2011, 11:31:19 PM »
rrc1962,
I entered the code in M03, when I test run .nc file, when M03 is called I was asked to enter a valid pierce geight, and where do I put this pierce height value?
Logged
Pages:
1
2
»
Go Up
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Mach Discussion
-----------------------------
=> General Mach Discussion
=> Mach3 under Vista
=> Quantum
=> Mach SDK plugin questions and answers.
===> Finished Plugins for Download
=> VB and the development of wizards
=> Brains Development
=> Video P*r*o*b*i*n*g
=> Mach Screens
===> Screen designer tips and tutorials
===> Works in progress
===> Finished Screens
===> Flash Screens
===> JetCam screen designer
===> Machscreen Screen Designer
===> CVI MachStdMill (MSM)
=> Feature Requests
=> Non English Forums
===> Italian
===> French
===> Spanish
===> Chinese
===> German
===> Russian
===> Romanian
===> Japanese
===> Vietnamese
=> FAQs
-----------------------------
*****VIDEOS*****
-----------------------------
=> *****VIDEOS*****
-----------------------------
General CNC Chat
-----------------------------
=> Share Your GCode
=> Show"N"Tell ( What you have made with your CNC machine.)
=> Building or Buying a Wood routing table.. Beginnners guide..
=> Show"N"Tell ( Your Machines)
-----------------------------
G-Code, CAD, and CAM
-----------------------------
=> G-Code, CAD, and CAM discussions
=> LazyCam (Beta)
-----------------------------
Third party software and hardware support forums.
-----------------------------
=> LazyTurn
=> GearoticMotion Preliminary testing
=> Tempest Trajectory Planner
=> Contec
=> dspMC/IP Motion Controller
=> HiCON Motion Controller
=> Third party software and hardware support forums.
=> Galil
=> Newfangled Solutions Wizards
=> Mach3 and G-Rex
=> Mesa
=> Modbus
=> NC Pod
=> PoKeys
=> SmoothStepper USB
=> Sieg Machines
=> Promote and discuss your product
-----------------------------
Tangent Corner
-----------------------------
=> Tangent Corner
=> Competitions
=> Polls
=> Bargain Basement
-----------------------------
Support
-----------------------------
=> Downloads
===> XML files
===> Post Processors
===> Macros
===> Tutorials
===> Others
===> Beta Brains
===> Screen Sets
===> Documents
===> MACH TOOL BOX
=> One on one phone support.
=> Forum suggestions and report forum problems.
-----------------------------
Mach4
-----------------------------
=> Mach4 pre-Alpha Testing
Loading...