Sorry for the delay in response, it's been quite busy..
When does this error occur, right off the bat, or relatively later in the program?
There are substantial differences between the beginning lines of code in the two programs, and my suspicion lies there.
V-Carve:
N6 G00 G17 G71 G40 G49 G80 G90
N7 G54
N8 G53 Z0
N9 (Tool: 3/16 alm deco)
N10 T8 M06
N11 M03 S20000
N12 G43 H8 Z50.8000
N13 G00 X70.9667 Y56.3119 Z38.1000
Now, the code above is pretty darn close to what I would expect to see for a standard g-code based machine. Let's break it down a bit:
G00 G17 G71 G40 G49 G80 G90 these codes set the "safe" G values;
(G0) rapid,
(G17) workplane
(G71) Metric, (this isn't a standard milling g-code, so it's likely Laguna specific)
(G40) cancel cutter comp,
(G49) cancel tool length offset,
(G80) canned drill cycle cancel,
(G90) absolute position
Then it's followed by a G54, this sets the current work coordinate system (This is defined in the Setup, and you can have G54, G55, G56 etc etc)
G53 Z0, this sends the tool home in the Z, this is likely the top travel of your Z axis
T8 M06, this is your tool change
M03 S20000, this is spindle forward, rpm of 20000
G43 H8 Z50.8000
G00 X70.9667 etc etc, this is your first move to the part.
So, the above code is everything your V-carve post is giving you in the beginning of the toolpath. Now, let's contrast that with what the Fusion post is giving us:
N12 G17 G40 G90
N13 G70
N14 D0
N15 G00 Z0.
(2D CONTOUR2)
N16 G53
N17 G00 X0. M05
N18 G53
N19 G00 Y0.
N20 T4 M06
N21 G54
N22 M03 S18000
N23 G04 5
N24 G00 X13.1078 Y8.4547
G17 G40 G90, some of the same "safe" codes, but many are missing
G70 (this is like the G71, but G70 is Imperial for this machine)
D0 (I'm guessing this is supposed to cancel tool length, can you confirm that this is supported?)
G00 Z0, this is a rapid move to Z zero, but it's possible that your machine doesn't like this
G53, this is a machine coordinate system selection, but with no axis specified in this line, nothing should happen
G00 X0. M05, since the above G53 is "modal" (stays on until cancelled or RESET), the machine should now proceed to X zero (M05 is spindle off)
G53 (same as above)
G00 Y0 (now the Y axis should move home)
T4 M06 (tool change)
G54 (same as v-carve program)
M03 S18000 (same as v-carve)
G04 5, I'm guessing this is a dwell code?
G00 X13.1078 etc, this is the first move
So, as you can see there's substantial difference.
If I was to guess, I'd want to gut out the beginning of the Fusion posted code and replace this:
N12 G17 G40 G90
N13 G70
N14 D0
N15 G00 Z0.
(2D CONTOUR2)
N16 G53
N17 G00 X0. M05
N18 G53
N19 G00 Y0.
N20 T4 M06
N21 G54
N22 M03 S18000
N23 G04 5
With this:
N6 G00 G17 G70 G40 G49 G80 G90
N7 G54
N8 G53 Z0
N9 (Amana Tool 46415)
N10 T4 M06
N11 M03 S18000
N12 G43 H4 Z1.71
HOWEVER!
One thing I'd really like to confirm is this: there are machines that only use Metric code, is your machine one of them? Your Fusion file is in Imperial, but your V-carve is in Metric
Seth Madore
Customer Advocacy Manager - Manufacturing