HAAS Failed while processing onLinear5D() for record 509.

HAAS Failed while processing onLinear5D() for record 509.

seanGPDQR
Contributor Contributor
331 Views
3 Replies
Message 1 of 4

HAAS Failed while processing onLinear5D() for record 509.

seanGPDQR
Contributor
Contributor

Hi

 

i am having a problem posting simultaneous 5axis in my haas vm3 with trt160

 

i get the following error

 

Information: Configuration: HAAS - Next Generation Control
Information: Vendor: Haas Automation
Information: Posting intermediate data to 'C:\Users\Richard\Desktop\f360 prog\1001.nc'
Information: Total number of warnings: 1
Error: Failed to post process. See below for details.
...
Code page changed to '1252  (ANSI - Latin I)'
Start time: Monday, April 262021 9:13:30 AM
Code page changed to '20127 (US-ASCII)'
Post processor engine: 4.5754.0
Configuration path: C:/Users/Richard/AppData/Roaming/Autodesk/Fusion 360 CAM/Posts/haas next generation (1).cps
Security level: 1000
Include paths: C:/Users/Richard/AppData/Roaming/Autodesk/Fusion 360 CAM/Posts
Configuration modification date: Tuesday, October 222019 1:05:44 PM
Output path: C:\Users\Richard\Desktop\f360 prog\1001.nc
Checksum of intermediate NC data: 116ff3229e36d37eae0fb876cd8062fc
Checksum of configuration: bc13888604de00330476bde826ecfaf5
Legal: Copyright (C) 2012-2019 by Autodesk, Inc.
Generated by: Fusion 360 CAM 2.0.10032
...
Warning: Work offset has not been specified. Using G54 as WCS.

###############################################################################
Error: REWIND: Rewind of machine is required for simultaneous multi-axis toolpath and has been disabled.
Error at line: 2954
Error in operation: 'Multi-Axis Contour2'
Failed while processing onLinear5D() for record 509.
###############################################################################

Error: Failed to invoke function 'onRewindMachine'.
Error: Failed to invoke 'onRewindMachine' in the post configuration.
Error: Failed to execute configuration.
Stop time: Monday, April 262021 9:13:30 AM
Post processing failed.
 
can anyone please help i have not touched the post nor am i confident in doing so.
 
i have attached what program it did post i had two multi contours but it only posted one

 

0 Likes
332 Views
3 Replies
Replies (3)
Message 2 of 4

boopathi.sivakumar
Autodesk
Autodesk

Hi @seanGPDQR 

it seems the error is due to the axis limitation.
I think you are using haas next gen post i believe. and while post processing are using any properties like has A axis or Has B axis or machine model? also If you could let me know what machine you have in real. I can help you let you know what's exactly wrong .


Boopathi Sivakumar
Senior Technology Consultant

0 Likes
Message 3 of 4

seanGPDQR
Contributor
Contributor

i have attached pics of machine and trunion.

 

i dont have correct model for these in fusion i dont think and dont know where to get them

0 Likes
Message 4 of 4

boopathi.sivakumar
Autodesk
Autodesk

Edit the haas next gen post in any editor and find for this line 

defineMachine();
you get to see codes something like this 
 } else {
    defineMachine();
  }

  if (!machineConfiguration.isMachineCoordinate(0)) {
    aOutput.disable();
  }

add the codes as mentioned below

 } else {
    defineMachine();
  }
  //add from here 
  if (true) {
    var axis1 = createAxis({coordinate:0, table:true, axis:[1, 0, 0], range:[-100, 0], preference:-1});
    var axis2 = createAxis({coordinate:2, table:true, axis:[0, 0, 1], cyclic:true, preference:0, reset:1});
    machineConfiguration = new MachineConfiguration(axis1, axis2);
    setMachineConfiguration(machineConfiguration);
    optimizeMachineAngles2(getProperty("useTCPC") ? 0 : 1); // map tip mode
  }
// to here
  if (!machineConfiguration.isMachineCoordinate(0)) {
    aOutput.disable();
  }

save the post and test it carefully. 

 


Boopathi Sivakumar
Senior Technology Consultant

0 Likes