Hello,
Does anyone know how to alter a post that uses M13 as "spindle on flood coolant" to output an M03 and M08 instead? Then use an M09 to stop the coolant at the end of the event? I have attached the post processor for review.
Thanks,
Brandon
Hello,
Does anyone know how to alter a post that uses M13 as "spindle on flood coolant" to output an M03 and M08 instead? Then use an M09 to stop the coolant at the end of the event? I have attached the post processor for review.
Thanks,
Brandon
Are you sure it is a Post item? Coolant and what type is usually in the CAM portion of setting up the job. There is usually a choice of what kind of coolant. Mist, flood, in tool.
I am pretty sure its in the post because when I select no coolant I get an M3 and when I select flood coolant I get an M13.
Hi BEEZERLM,
I think if you change M13 in this post on the spindle codes section to M03 and save file it should work.
I'm not a post programmer but from doing some minor modifying to some of mine I think it should fix the problem.
always be sure to make a backup before changing or modifying your post just incase you screw it up you have something to go back to : )
if that doesn't fix it send me a pm and I will look at your post more in detail
Tmills
# --------------------------------------------------------------------------
# Spindle codes
sm04 M04 # Spindle reverse - no coolant
sm05 M05 # Spindle off - no coolant
sm03 M03 # Spindle forward - no coolant
sm04f M14 # Spindle reverse - flood
sm05f M05 # Spindle off - flood
sm03f M13 # Spindle forward - flood (Replace M13 with M03)
sm04m M04 # Spindle reverse - mist (off if not supported)
sm05m M05 # Spindle off - mist
sm03m M03 # Spindle forward - mist (off if not supported)
sm04t M04 # Spindle reverse - tool (off if not supported)
sm05t M05 # Spindle off - tool
sm03t M03 # Spindle forward - tool (off if not supported)
spdlon # Target Spindle-on M-string
spdlsel = fsg2(coolant) * 3 + fsg3(ss) # Spindle on selector based on coolant
# 0 = off, 1 = flood, 2 = mist,
# 3 = thru spindle-tool
fstrsel sm04 spdlsel spdlon
# --------------------------------------------------------------------------
Last edited by TMILLS; 10-21-2010 at 06:26 PM.