root писал(а):Hmmmm...
It goes from 20mm to Zcut position with the penetration speed. It's set so because it could be unsafe to go toward the surface at rapid speed.
You can reduce safe distance to reduce the time it takes to penetrate. Or make an replace
"G01 Z[0-9\-\.]+ F100.0" to "G00 Z0 \n \0" using regex.
Also you cat automate this procedure by using post-processor.
Hummm .. If i regex like you say... all the G01 in the ngc code were change...
And i'll go to plunge to the G00 speed... ok it's what i want, but the tool don't go to cut the material
because it's in Z -5...
Gcodetools seem to don't make the difference between the heigh of the material and the heigh of the Z safe zone because juste one Gcode line is set for the tool to go to the Top Zsafe to the end Plunge ....
So i ask me if postprocessor is able to work ? I have start to see in the postprocessor post.
And I must regex about like thats...
"G01 Z[0-9\-\.]+ F100.0" to "G00 Z0 \n \0 + G01 Z[-5]+ F100.0 "
thank's.