Post Processor for a 4th axis cr onsrud fanuc 31i.cps with c axis

Post Processor for a 4th axis cr onsrud fanuc 31i.cps with c axis

tdtcps
Participant Participant
545 Views
3 Replies
Message 1 of 4

Post Processor for a 4th axis cr onsrud fanuc 31i.cps with c axis

tdtcps
Participant
Participant

Would anyone be able to help me edit post processor for 4th axis machine?

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

KrupalVala
Autodesk
Autodesk

Hi @tdtcps,

 

Please click on the following link to set-up a 4/5 axis machine configuration in the post

 

Link :  https://forums.autodesk.com/t5/hsm-post-processor-forum/how-to-set-up-a-4-5-axis-machine-configurati... 

 

Thanks,

 



Krupal Vala
Senior Technology Consultant - Post Processor & Machine Simulation
0 Likes
Message 3 of 4

tdtcps
Participant
Participant

My machine cant read 5 axis code, it only has a c axis  sometimes referred to an A axis that rotates 360 degrees around the z axis. For a 90 degree tool holder or aggregate.

0 Likes
Message 4 of 4

KrupalVala
Autodesk
Autodesk

HI @tdtcps ,

 

Yes, You can configure the post to 4 axis also. Just change the codes as shown below.

if (properties.has5Axis) { // note: setup your machine here
     var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], range:[-115, 115], cyclic:true});
   // var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], range:[-115, 300], cyclic:true, preference:1});
    machineConfiguration = new MachineConfiguration(aAxis);
   // machineConfiguration = new MachineConfiguration(cAxis);
    
   setMachineConfiguration(machineConfiguration);
    optimizeMachineAngles2(1); // TCP mode
  }

 

 Also change has5Axis as true or You can select/change it while post processing the codes from post Properties.  

has5Axis: true, // specifies if multi-axis toolpath should be output

 

But If you go through "How to set up a 4/5 axis machine configuration link" then you will know how each code plays its role and where to modify it.

 

thanks,



Krupal Vala
Senior Technology Consultant - Post Processor & Machine Simulation
0 Likes