Meldas 4 axis post

Meldas 4 axis post

pgoodson
Explorer Explorer
1,321 Views
4 Replies
Message 1 of 5

Meldas 4 axis post

pgoodson
Explorer
Explorer

Hi I am trying to configure a Meldas post to accept a 4th axis I have got to a issue which I cannot get past. I have followed the instructions from Autodesk but the post keeps failing with the error below.

 

 

Error: REWIND: Rewind of machine is required for simultaneous multi-axis toolpath and has been disabled.

As this is my 1st attempt at post manipulation I am struggling to get past this. HELP!!

 

Standard post taken from  Autodesk HSM post library.

0 Likes
Accepted solutions (2)
1,322 Views
4 Replies
Replies (4)
Message 2 of 5

Arun.rs
Autodesk
Autodesk

Hi @pgoodson 

 

Thanks for raising your concern via Forum.

 

Could you please share your model file and the .cps file? so that I can have a look on it.  

 

File>Export>.F3d save the file and attach the file to this thread. 

 

Regards

 

If my post answers your question, please click the 'Accept Solution' button. This helps everyone find answers more quickly!



Arun.RS
Senior Technology Consultant

0 Likes
Message 3 of 5

Arun.rs
Autodesk
Autodesk
Accepted solution

Hi @pgoodson 

 

The attached image shows the error for rewind, this is happening due to rotary limits mentioned in the post is reached so it tries to retract to the home position.  Mostly the 4 axis machines allows the cyclic motion it doesn't need to be retract and reconfigure. To rectify the error follow below method.

 

Change this : 

var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], range:[-360, 360], preference:1});    
machineConfiguration = new MachineConfiguration(aAxis);

 

To this :

var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], cycle:true, preference:1});    
machineConfiguration = new MachineConfiguration(aAxis);

Save the file and test nc output carefully.

 

Regards

If my post answers your question, please click the 'Accept Solution' button. This helps everyone find answers more quickly!



Arun.RS
Senior Technology Consultant

0 Likes
Message 4 of 5

pgoodson
Explorer
Explorer
Accepted solution

That works perfectly ! thank you so much!!

Message 5 of 5

Arun.rs
Autodesk
Autodesk

HI @pgoodson 

 

Thanks for the feedback.

 

Regards

If my post answers your question, please click the 'Accept Solution' button. This helps everyone find answers more quickly!



Arun.RS
Senior Technology Consultant

0 Likes