I want to create a drilling tool in sheetcam, but my post processor is obviously designed for the plasma, my plan is to have a variable speed spindle that I can use to drill holes, I'd like to use sheetcam and Mach 3 (my current setup)
I made a drilling tool in sheetcam, and I am running simulations with the plasma head to judge the feasibility. but it's trying to probe and find the z depth before starting the downward Z movement
question#1 do I have to modify the post processor to eliminate this function? Or is there a tool setting that can be used to stop it from probing for z (when I set up the drill, I will be blocking the floating head and making it rigid) I might need a different method of zeroing machine, maybe a xyz probe?
Question #2: it keeps trying to fire the torch, that's not really to big a deal, I can just unplug the plasma, but I think it would be better for it to not send that command.
I guess what I want is to be able to swap heads on my machine, and not have to load a different post processor in sheetcam every time I want to drill some holes.
Or should I be looking into writing a completely new post processor for when I'm drilling? I would need some help for that one,
How to create drilling tool in sheetcam
-
- 2 Star Member
- Posts: 55
- Joined: Fri Nov 10, 2023 8:59 pm
-
- 2 Star Member
- Posts: 55
- Joined: Fri Nov 10, 2023 8:59 pm
Re: How to create drilling tool in sheetcam
Or should I just go and buy a small cnc router setup and use that for drilling holes?
- acourtjester
- 6 Star Elite Contributing Member
- Posts: 8182
- Joined: Sat Jun 02, 2012 6:04 pm
- Location: Pensacola, Fla
Re: How to create drilling tool in sheetcam
when you originally setup SheetCam did you check the box for rotary machine?? Also did you create rotary tools so you have then in the tool list??
You select them for planning your operations. Also select a generic PP with no plasma operations like floating head, ect.
You select them for planning your operations. Also select a generic PP with no plasma operations like floating head, ect.
DIY 4X4 Plasma/Router Table
Hypertherm PM65 Machine Torch
Drag Knife and Scribe
Miller Mig welder
13" metal lathe
Small Mill
Everlast PowerTig 255 EXT
Hypertherm PM65 Machine Torch
Drag Knife and Scribe
Miller Mig welder
13" metal lathe
Small Mill
Everlast PowerTig 255 EXT
-
- 2 Star Member
- Posts: 55
- Joined: Fri Nov 10, 2023 8:59 pm
Re: How to create drilling tool in sheetcam
I did enable the rotary tools function, and I made a drilling tool that appears in the tool list, can you choose a different PP for a specific tool?acourtjester wrote: ↑Sat Nov 09, 2024 1:32 pm when you originally setup SheetCam did you check the box for rotary machine?? Also did you create rotary tools so you have then in the tool list??
You select them for planning your operations. Also select a generic PP with no plasma operations like floating head, ect.
drilling.JPG
drilling 2.jpg
drilling 3.jpg
- sheetcamCS2
- 1 Star Member
- Posts: 17
- Joined: Tue Jul 09, 2024 6:08 pm
- Location: Raleigh, NC
- Contact:
Re: How to create drilling tool in sheetcam
If you want to mechanical drill and plasma cut using the same pp, that is possible. Do those things that @courtjester suggested first.
For mech drilling, you'll define and use a RotaryTool of type 'Drill', and you'll create a Drill Operation to use the tool. The drill operation will map to the function OnDrill() in the pp. Code/modify your own OnDrill() function, test for toolClass == "DrillTool" and perform all your mech drilling logic contained by that condition, that way you can also still use plasma to 'peck' or pierce a centerpoint if that's ever needed. OnDrill() function is usually quite customized, you can copy a mech drilling version from a Mach3 pp and drop it into your plasma pp, with modifications of course. Reply back if you need more assistance.
For mech drilling, you'll define and use a RotaryTool of type 'Drill', and you'll create a Drill Operation to use the tool. The drill operation will map to the function OnDrill() in the pp. Code/modify your own OnDrill() function, test for toolClass == "DrillTool" and perform all your mech drilling logic contained by that condition, that way you can also still use plasma to 'peck' or pierce a centerpoint if that's ever needed. OnDrill() function is usually quite customized, you can copy a mech drilling version from a Mach3 pp and drop it into your plasma pp, with modifications of course. Reply back if you need more assistance.
-
- 2 Star Member
- Posts: 55
- Joined: Fri Nov 10, 2023 8:59 pm
Re: How to create drilling tool in sheetcam
Illl check out my PP and see if it even has an on drill() function, it may not, thank you, I may need to ask more details about it when I start fiddling with itsheetcamCS2 wrote: ↑Sat Nov 09, 2024 2:27 pm If you want to mechanical drill and plasma cut using the same pp, that is possible. Do those things that @courtjester suggested first.
For mech drilling, you'll define and use a RotaryTool of type 'Drill', and you'll create a Drill Operation to use the tool. The drill operation will map to the function OnDrill() in the pp. Code/modify your own OnDrill() function, test for toolClass == "DrillTool" and perform all your mech drilling logic contained by that condition, that way you can also still use plasma to 'peck' or pierce a centerpoint if that's ever needed. OnDrill() function is usually quite customized, you can copy a mech drilling version from a Mach3 pp and drop it into your plasma pp, with modifications of course. Reply back if you need more assistance.