jcoldon wrote: โSun Dec 12, 2021 12:57 pm
the only problem. Is Acorn plasma took the setting power of sheet cam . Away . they only using it for x y axis . all the other speeds are in the screen
and only 1 x y speed in acorn plasma. so there no way to layer mutli speeds or do other settings that are in sheet cam. i been using sheet cam for 10 years
it does a lot more then just set start points lead in . dun right you can realy fine tune cuts with the propper settings and turn on codes in controller
Air plasma one setting does not fit all . you guys see that once you start cutting
Jeff,
did some testing of slow down in arcs etc......we inherently support other feedrates other than the profile feedrate in the part program G code.
To slow down an arc or group of arcs, all you have to do is insert the feed rate you want that is different from the profile feedrate.
For example. Say the Profile feedrate is 200 ipm.....but we want 100 ipm in the circles...
;Filename: Centroid_test_hook.tap
;Post processor: Centroid Plasma THC (1) (1).scpost
;Date: 01/10/2021
G20 ;Units: Inches
G90
M65
;Part: Metric Hook
;Operation: Inside Offset, Inside Circles, T2: Plasma, 1.501 mm kerf
G0 X2.5312 Y0.7983
M61
; < M61 picks up the feedrate data from the profile that is currently loaded>
G3 X2.6516 Y0.7178 I0.1004 J0.02
F100 ;<Feedrate for small arc came from Sheetcam, Profile feedrate was 200 but is now changed to 100 for this arc and the arcs below it>
G3 I-0.0696 J0.0696
G3 X2.5711 Y0.8382 I-0.1004 J0.02
M62
G0 X4.1172 Y0.7983
M61
< M61 picks up the feedrate data from the profile that is currently loaded, feedrate is now changed from F100 back to the Profile feed rate (200 ipm for this example)>
G3 X4.2376 Y0.7178 I0.1004 J0.02
G3 I-0.0696 J0.0696
G3 X4.1571 Y0.8382 I-0.1004 J0.02
;Operation: Outside Offset, Outside Edge, T2: Plasma, 1.501 mm kerf
M62
This works as is right now....You can do it as a test.... just hand edit the g code and put the F commands where you want them....
____________________
Now to automate it using the post processor to reset the profile feedrate after selected geometry slow down....This is how we would go about it..
see the g code example below with different feedrates on just sections of the whole path. effectively slowing down only in the cad/cam selected sections of the part path. but then returning to the profile feedrate for the sections that we don't want to slow down.
G0 X1.8424 Y0.1258
M61
;< M61 picks up the feedrate data from the profile that is currently loaded>
G3 X1.8515 Y0.3066 I-0.0859 J0.0949
F100 ; < F command inserted by Sheetcam to slow down this arc to 100 ipm>
G2 X1.7421 Y0.5906 I0.3139 J0.2839
G1 Y0.748
F<FEEDRATE> ; <F command inserted by Sheetcam returns Feedrate to Profile specified feedrate so all g code below, where F<FEEDRATE> is the current loaded Profile feedrate >
G3 X1.378 Y1.1122 I-0.3642 J0
F100
G1 X0.7874
F<FEEDRATE>
G3 X0.4626 Y0.7874 I0 J-0.3248
G1 Y0.5906
G2 X0.1673 I-0.1477 J0
G1 Y0.7874
G2 X0.7874 Y1.4075 I0.6201 J0
F100
G1 X3.9679
F<FEEDRATE>
G2 Y0.1673 I0 J-0.6201
F100
G1 X2.1527
F<FEEDRATE>
G2 X2.1505 Y0.1674 I0 J0.0295
G1 X2.1238 Y0.1694
G1 X2.123
G2 X1.8515 Y0.3066 I0.0423 J0.4211
G3 X1.6707 Y0.3157 I-0.0949 J-0.0859
F100
M62
the post processor will have to be edited to support slower feedrate insertion for selected geometry and return the feedrate to the profile settings using the F<FEEDRATE> command. so that will be the next iteration.
Best regards,
Keith