tool selection from the library - automatic cycle selection

tool selection from the library - automatic cycle selection

Tomas_V_cz
Advocate Advocate
775 Views
8 Replies
Message 1 of 9

tool selection from the library - automatic cycle selection

Tomas_V_cz
Advocate
Advocate

Hello, is there an option to set it to automatically select a thread cycle when selecting a tap from the Fusion library? Thanks

 

Edit:

so the solution is probably to modify the expression in the cycle selection, which is like this in the system settings, and I had that expression changed.

tool_isMill ? ('drilling') : ((tool_type == 'tap right hand' || tool_type == 'tap left hand') ? 'tapping' : ((tool_type == 'reamer')?('reaming'):'drilling '))

 

It selects taps well, but other tools not according to my requirements, so it needs to be adjusted...Hopefully it will work somehow. Does anyone have any experience with this, how to modify it?

Thanks

 

0 Likes
Accepted solutions (1)
776 Views
8 Replies
Replies (8)
Message 2 of 9

seth.madore
Community Manager
Community Manager

Sorry, no.


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 3 of 9

Tomas_V_cz
Advocate
Advocate

sorry, I didn't know from your answer if the cycle selection can be changed, or if you have experience with it.

0 Likes
Message 4 of 9

seth.madore
Community Manager
Community Manager
Accepted solution

The software is not designed to automatically switch cycles depending on what sort of tool is selected. 


Seth Madore
Customer Advocacy Manager - Manufacturing


Message 5 of 9

Tomas_V_cz
Advocate
Advocate

however, I made a small tweak and the milling tool selection will automatically select 'bore-milling'. And as a default cycle for drilling 'deep-drilling', which is a change against the system setting

Code:

tool_isMill ? ('bore-milling') : ((tool_type == 'tap right hand' || tool_type == 'tap left hand') ? 'tapping' : ((tool_type == 'reamer')?('reaming'):'deep-drilling'))

 

Edit: 

I think it's possible to change everything as needed - example:

tool_isMill ? ('bore-milling') : ((tool_type == 'tap right hand' || tool_type == 'tap left hand') ? 'tapping' : ((tool_type == 'reamer')?('reaming') : (tool_type == 'boring bar')?('boring'):'deep-drilling'))

0 Likes
Message 6 of 9

seth.madore
Community Manager
Community Manager

How are you making this change?


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 7 of 9

a.laasW8M6T
Mentor
Mentor

It's the (default) expression for the Cycle type Menu in drilling

 

alaasW8M6T_0-1708201279757.png

 

Andrew Laas
Senior Machinist, Scott Automation


EESignature

Message 8 of 9

seth.madore
Community Manager
Community Manager

ahh


Seth Madore
Customer Advocacy Manager - Manufacturing


0 Likes
Message 9 of 9

Tomas_V_cz
Advocate
Advocate

((tool_type == 'tap right hand' || tool_type == 'tap left hand') ? 'tapping' : ((tool_type == 'reamer')?('reaming') : (tool_type == 'boring bar')?('boring'): (tool_type == 'flat end mill')?('circular-pocket-milling'): (tool_type == 'bull nose end mill')?('bore-milling'):'deep-drilling'))

 

This code automatically selects the next cycles - flat end mill selects the circular-pocket-milling cycle for finish milling the holes, and the bull nose end mill (I have radiused blade tools defined here) selects the bore-milling cycle. Of course, reamers and a boring bar. The default drilling cycle is deep-drilling .

 It is difficult for me to understand that Autodesk is not able to automate the selection of cycles according to the tool in the basic settings.

0 Likes