Plasma pierce hole not working (where is my mistake?)

Having problems with or questions about SheetCam? Post them here.
Post Reply
ROTM
Posts: 19
Joined: Fri Sep 30, 2022 1:22 am

Plasma pierce hole not working (where is my mistake?)

Post by ROTM »

Good day.
I would like to pierce single points into metal, I reviewed this video > https://www.youtube.com/watch?v=pPwvYN_Hn6s
I imported a file with 2 points (use point for drill box selected)
created a new jet tool (attached)
select a drill operation with the new plasma tool (attached)
but the 2 points have S1 and S2 with a big X in the middle.(attached)

Where is my mistake and how can I fix it?

Thank you!
Attachments
drill hole1.JPG
drill hole1.JPG (52.29 KiB) Viewed 200 times
drill hole2.JPG
drill hole2.JPG (30.73 KiB) Viewed 200 times
drill hole.JPG
drill hole.JPG (14.19 KiB) Viewed 200 times
User avatar
bLouChip
Posts: 133
Joined: Tue Nov 09, 2021 4:58 pm
Location: Raleigh, NC
Contact:

Re: Plasma pierce hole not working (where is my mistake?)

Post by bLouChip »

could be any number of things.
does your .scpost have OnDrill() customized ?
pierce delay is 0. Does the torch fire at all ?
pierce hight - cut height is only 0.020", that's going to be quick.

best if you post your .job file and .scpost file, and the .nc file you're getting. Easier to diagnose than Q & A back and forth.
MillRight CNC MegaV XL XYZA Tri-CAM Mill/Plasma/Laser
grbl 1.1i, UGS, Win 11, LightBurn, SC, Aspire, and sometimes [con]Fusion360
my youtube channel
User avatar
bLouChip
Posts: 133
Joined: Tue Nov 09, 2021 4:58 pm
Location: Raleigh, NC
Contact:

Re: Plasma pierce hole not working (where is my mistake?)

Post by bLouChip »

you also have the first "shape" at 0,0 it appears. I seem to recall some obscure SC bug a few months ago when the first start point is at 0,0, and that was about the time I was customizing my OnDrill() function and testing it. Try moving the part off 0,0 origin before we go to far down this diag road.
MillRight CNC MegaV XL XYZA Tri-CAM Mill/Plasma/Laser
grbl 1.1i, UGS, Win 11, LightBurn, SC, Aspire, and sometimes [con]Fusion360
my youtube channel
ROTM
Posts: 19
Joined: Fri Sep 30, 2022 1:22 am

Re: Plasma pierce hole not working (where is my mistake?)

Post by ROTM »

Good day.
I moved the points that was not 0,0...same results.
I changed the pierce delay and nothing.
When I run it in Mach4 it just lifts the z ...cycle thru the code and there it sits
Postp attached, job file attached
Attachments
drillfail.JPG
drillfail.JPG (35.26 KiB) Viewed 176 times
Drillfail.job
(20.17 KiB) Downloaded 7 times
Avid CNC Mach4.scpost
(13.81 KiB) Downloaded 8 times
ROTM
Posts: 19
Joined: Fri Sep 30, 2022 1:22 am

Re: Plasma pierce hole not working (where is my mistake?)

Post by ROTM »

Attached the tap file.
What is a NC file ?

Thank you!
Attachments
pointsss.tap
(530 Bytes) Downloaded 11 times
mancavedweller
Posts: 162
Joined: Tue Feb 25, 2014 6:53 am

Re: Plasma pierce hole not working (where is my mistake?)

Post by mancavedweller »

I've never used points for doing this before.

I've always used a circle of any size (so could be tiny circles), and then you need to ensure the "min. hole size" and "max. hole size" values are smaller and larger respectively than the circle diameter.

See if that works.
User avatar
bLouChip
Posts: 133
Joined: Tue Nov 09, 2021 4:58 pm
Location: Raleigh, NC
Contact:

Re: Plasma pierce hole not working (where is my mistake?)

Post by bLouChip »

it appears the problem is that there is no OnDrill() function defined in the .scpost.
I'll put a basic version of OnDrill() in and see how it goes.

btw- I like the coded model to define external vars and custom options, well done. I saw one a few ago similar, or may have been the same one.
MillRight CNC MegaV XL XYZA Tri-CAM Mill/Plasma/Laser
grbl 1.1i, UGS, Win 11, LightBurn, SC, Aspire, and sometimes [con]Fusion360
my youtube channel
User avatar
bLouChip
Posts: 133
Joined: Tue Nov 09, 2021 4:58 pm
Location: Raleigh, NC
Contact:

Re: Plasma pierce hole not working (where is my mistake?)

Post by bLouChip »

so I simply added this simple template example of OnDrill() and it produced gcode, however I don't know the gcode stmts for this controller so I don't know if its correct. But you can tweak the OnDrill() function if need be at this point.

Code: Select all

function OnDrill()
   OnRapid()
   OnPenDown()
   endZ = drillZ
   OnMove()
   OnPenUp()
   endZ = safeZ
   OnRapid()
end
Attachments
Drillfail.tap
(1.39 KiB) Downloaded 8 times
Avid CNC Mach4 w OnDrill.scpost
(13.94 KiB) Downloaded 7 times
MillRight CNC MegaV XL XYZA Tri-CAM Mill/Plasma/Laser
grbl 1.1i, UGS, Win 11, LightBurn, SC, Aspire, and sometimes [con]Fusion360
my youtube channel
ROTM
Posts: 19
Joined: Fri Sep 30, 2022 1:22 am

Re: Plasma pierce hole not working (where is my mistake?)

Post by ROTM »

Man that updated postp did it!!!!!! Thank you! bLouChip!!!!!
I would have never figured it out.

@mancavedweller..I tried it but it did not work.

3 years messing with this machine I am almost were I want to be.

I can move on and be productive. Thanks!!!!
Post Reply