Expression for different stepdown depending on tool type

Expression for different stepdown depending on tool type

sean.gorman
Explorer Explorer
403 Views
1 Reply
Message 1 of 2

Expression for different stepdown depending on tool type

sean.gorman
Explorer
Explorer

Hi, 

I am looking for a way to create an expression to drive the stepover of a toolpath depending on the tool type (i.e. using contour with a ball mill as opposed to a square end mill). This is for using toolpaths such as contour with different tool types. 

 

for example: 

 

if tool_type - ball mill, stepover = 0.1

else tool_diameter*0.25

Any help would be appreciated. 

 

Thanks, 

 

 

0 Likes
404 Views
1 Reply
Reply (1)
Message 2 of 2

kandennti
Mentor
Mentor

Hi @sean.gorman .

 

When I looked for it, the IF statement of expression looks like this.

<Evaluation expression> ? <Return_true> : <Return_false>

In this case.

tool_type == 'ball end mill' ? 0.1 : tool_diameter*0.25

I attached the file, please change the tool and try.

 

This link may be useful.

https://forums.autodesk.com/t5/fusion-360-manufacture/parameter-names-for-expressions/m-p/5956915#U5... 

https://forums.autodesk.com/t5/fusion-360-manufacture/community-resource-expressions-list/td-p/72289... 

https://forums.autodesk.com/t5/hsm-support-forum/if-then-expressions-for-stepdown/td-p/6088656 

 

0 Likes