What's new
What's new

Mastercam 2017 Feedrate Ooutput

OneWound

Aluminum
Joined
May 3, 2014
Location
Iowa
Does anyone know of a way to get Mastercam to output a feed rate for every G1/G2/G3 move? I've looked w/in the control definition but could not see anything. I know typically machines will remember a feed rate once given, but for the machine I am running that is not the case..
 
That link is now broken :(. However, using more google-fu, here is how to get feed rate to output on every line..

Find this portion in your post file:
plinout #Output to NC of linear movement - feed
pcan1, pbld, n$, sgfeed, sgplane, `sgcode, sgabsinc, pwcs, pccdia,
pxout, pyout, pzout, pcout, feed, strcantext, pscool, e$
#Modify following line to customize output for high-speed toolpath
#tool inspection/change points
if rpd_typ$ = 7, pbld, n$, "M00", "(TOOL INSPECTION POINT - POST CUSTOMIZATION REQUIRED)", e$

pcirout #Output to NC of circular interpolation
pcan1, pbld, n$, `sgfeed, sgplane, sgcode, sgabsinc, pwcs, pccdia,
pxout, pyout, pzout, pcout, parc, feed, strcantext, pscool, e$


Add an * to the highlighted portion to achieve this:


plinout #Output to NC of linear movement - feed
pcan1, pbld, n$, sgfeed, sgplane, `sgcode, sgabsinc, pwcs, pccdia,
pxout, pyout, pzout, pcout, *feed, strcantext, pscool, e$
#Modify following line to customize output for high-speed toolpath
#tool inspection/change points
if rpd_typ$ = 7, pbld, n$, "M00", "(TOOL INSPECTION POINT - POST CUSTOMIZATION REQUIRED)", e$

pcirout #Output to NC of circular interpolation
pcan1, pbld, n$, `sgfeed, sgplane, sgcode, sgabsinc, pwcs, pccdia,
pxout, pyout, pzout, pcout, parc, *feed, strcantext, pscool, e$
 








 
Back
Top