Community
Fusion Manufacture
Talk shop with the Fusion (formerly Fusion 360) Manufacture Community. Share tool strategies, tips, get advice and solve problems together with the best minds in the industry.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Doosan VCF850lsr HH640, head tilts wrong direction for swarf toolpath

17 REPLIES 17
SOLVED
Reply
Message 1 of 18
cam4ADNY
725 Views, 17 Replies

Doosan VCF850lsr HH640, head tilts wrong direction for swarf toolpath

I'm trying to mill a 3mm x 30 degree chamfer on a rectangular block using a swarf tool path, but the head is tilting the opposite direction to what is shown in the simulation. Is there a way to invert the rotation direction in the post? I am using the stock heidenhain inspection post with B & C axis enabled.

17 REPLIES 17
Message 2 of 18

Hi @cam4ADNY 

 

In the post properties section, there is an option for preferred tilt side (negative or positive).  If you change this, does it do the trick for you?

 

2022-01-19_10-55-59.jpg

If you prefer the positive side, you can open the post and have this set as the default.

 

Navigate to the "preferTilt" section in the user-defined properties and change the -1 value to 1.

 

2022-01-19_10-59-04.jpg

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Message 3 of 18

Have tried that but it makes no difference to the code.

IMG_5635.jpg

Message 4 of 18

Hi @cam4ADNY 

 

Can you share the Fusion file?

 

Thanks,

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Message 5 of 18

Message 6 of 18

Hi @cam4ADNY 

 

I quickly outputted some code with the Heidenhain Inspection post from the Fusion 360 library. 

 

I also loaded in the default table/head machine sim to compare between the machine sim and the output code.

 

2022-01-19_17-07-24.jpg

 

You can see the B axis output is on the negative side in the code and on the machine sim.

 

On your machine, does the B axis need to be positive or negative to reach this angle?

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Message 7 of 18

B needs to be negative, the code you have posted is exactly what i'm after, obviously i have stuffed something up in the post.

Message 8 of 18

Ok so i have had several go's at setting up the post using the information here:

https://knowledge.autodesk.com/support/fusion-360/learn-explore/caas/sfdcarticles/sfdcarticles/How-t... 

But i keep getting the wrong B axis output (+ instead of -). below is a the area of the post i have made changes to to setup the post for B & C axis. from the above post its clear that i have something wrong but i cant work out what it is.

cam4ADNY_0-1642808314425.png

 

Message 9 of 18

HI @cam4ADNY 

 

Maybe you can add your post here so we can take a look.

 

Thanks,

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Message 10 of 18
a.laasW8M6T
in reply to: cam4ADNY

You have the B axis set to Table but it should be Head instead

 

Where it says table:true, should be table:false

 

hopefully that sorts you out

 

 

Message 11 of 18

@a.laasW8M6T 

 

Good catch on that.  That should do it!

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Message 12 of 18

I tried that but it didn't make any difference. post attached.

 

Message 13 of 18
a.laasW8M6T
in reply to: cam4ADNY

OK try changing the vector to -1 for the b axis

So [0,-1, 0] 

 

also I think you should have TCP enabled for the B axis too

 

var bAxis = createAxis({coordinate:1, table:false, axis:[0, -1, 0], range:[-120.0001, 120.0001], preference:1, tcp:useTCP});

I tried this out on your post and it correctly puts out B- angle for the head

 

Message 14 of 18
cam4ADNY
in reply to: a.laasW8M6T

I copied and pasted the changes into my post, and i'm still getting the B axis output as positive values. Is there any settings in fusion i could be getting wrong when i'm posting the code? I'm pretty new to fusion, giving it a go now that featurecam is pretty much dead.

Message 15 of 18
a.laasW8M6T
in reply to: cam4ADNY

ok I used you actual fusion setup, added a generic machine like the doosan with the standard unmodified post processor for machine simulation purposes.

 

you can see it simulates fine

then I post process but change to your post processor with the hard coded machine config with the modification I have made, then post process and you can see the output code is correct

 

https://autode.sk/3H7lhBr 

 

 

 

Message 16 of 18

Hi @cam4ADNY 

 

I made a slight change to your post and it seems like it is posting correctly.  Changes are in bold.

 

function defineMachine() {
var useTCP = true;
if (true) { // note: setup your machine here
//var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], range:[-120.0001, 120.0001], preference:getProperty("preferTilt"), tcp:useTCP});
var bAxis = createAxis({coordinate:1, table:false, axis:[0, -1, 0], range:[-120.0001, 120.0001], tcp:useTCP, preference:getProperty("preferTilt")});
var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], range:[0, 360], cyclic:true, tcp:useTCP, preference:getProperty("preferTilt")});
machineConfiguration = new MachineConfiguration(bAxis, cAxis);

 

I think the biggest culprit was the tcp info in the b axis designation and the negative vector.  I also placed the prefered tilt property in, but I don't think this really affects anything.

 

Please just carefully check everything before running on the machine.

 

On a side note, is there a reason you are not using a Machine Configuration.  To me, this is the easiest way to setup you machine kinematics and the ability to plug in machine simulation.

 

Post attached too!

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Message 17 of 18

Thankyou very much, that has fixed it. I Didn't really know about machine configuration, I'm just testing out fusion as it part of our featurcam license, to see if it will be suitable for 5axis work on our new machine, before we fork out a small fortune for a featurecam post.

Message 18 of 18

Hi @cam4ADNY 

 

Glad this worked for you!

 

Check your private messages too.

 

Thanks,

Christopher Marion
Technical Specialist - CAM
SolidCAD - Canada





Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report