Questions about tool# and H#

More
28 Apr 2023 19:29 - 28 Apr 2023 19:35 #270128 by Vmax549
Hi Guys, I have a couple of questions. I am working on a couple of functions that require me to know the current  H#.

I do not see any reference to extract the Current H#. I can get the Z offset that is applied but not the current H#. And yes I do know that the H# is not really a number but a process. But having the actual current H# would be handy.

Any Ideas ???

(;-) TP
Last edit: 28 Apr 2023 19:35 by Vmax549.

Please Log in or Create an account to join the conversation.

More
30 Apr 2023 21:12 #270339 by snowgoer540
I'm not sure it's just sitting there like you might be thinking.

I suppose you have two options:

1. You can assume that the Tool Number = the H number. I am not sure I know the use case for having a tool number and an offset number be different. That seems like a terrible idea, but I'm open to someone's explaination.

B. You could take the offset length, open tool.table, and search for that length in the table to find the corresponding tool number. That would then be your H number for that offset length.

It might be more helpful to know what you are using the H number for, and then maybe a better solution could be suggested.

Please Log in or Create an account to join the conversation.

More
01 May 2023 02:08 - 01 May 2023 02:10 #270367 by spumco
Replied by spumco on topic Questions about tool# and H#

I am not sure I know the use case for having a tool number and an offset number be different. That seems like a terrible idea, but I'm open to someone's explaination.


 
 

This doesn't apply to LCNC (yet), but other controls permit calling different offsets for a given tool number.  Different controls handle this in various ways, but my Fanuc 21T has 12 tool slots, but 16 offsets available in the table.  And the 'extra' offsets aren't just X or Z, there are also tool tip orientation and a matching wear offset.

The most frequent example of this is on lathes.

Case 1:
You can install a gang-style tool block on a turret position, such as a spot/drill/tap combo.  In my case the gcode would call T1212 for the spot, T1213 for the drill, and T1214 for the tap.

Case 2:
You want different offsets for a multi-function tool.  Generally, a drill/tap/reamer is set (on my lathe) to X0 offset.  Boring bars are not - they're set by the cutting tip.  In the case of multifunction tools (insert drills with boring capabilities), CAM programs aren't always able to handle them gracefully and you have to fudge it by defining two separate tools with the same tool number - but different offsets.

I'm sure there are other examples - perhaps with subspindle lathes where a rear turret position has the same tool (indexing) number, but a different offset.  I know Siemens 840 has 9 "tool correction" slots available.
Last edit: 01 May 2023 02:10 by spumco. Reason: Fatfingered
The following user(s) said Thank You: snowgoer540

Please Log in or Create an account to join the conversation.

More
01 May 2023 02:16 #270370 by snowgoer540
I think I’m picking up what you’re putting down.

I don’t follow the use case for case 1 since they are 3 different tools. But I do follow having the same tool with different features at different Z offsets.

Linuxcnc can do that.

T1 M6 G43 H1
T1 M6 G43 H2
T1 M6 G43 H3

Would be tool 1 at three different offsets. But if I understand it correctly, it’s still not exactly what you’d be after since H2 and H3 correspond to T2 and T3’s offsets.

Unless I’m completely misinterpreting it. Admittedly I didn’t spend a ton of time on researching it …

Please Log in or Create an account to join the conversation.

More
01 May 2023 05:00 #270379 by scotth
Replied by scotth on topic Questions about tool# and H#
Why bother with H# if it is always tied to the same T#?

Please Log in or Create an account to join the conversation.

More
01 May 2023 07:23 #270384 by Vmax549
A case comes to mind where the OP is doing prototype work and using a lot of tools NOT in the tool changer. Instead of unloading the ATC and reloading with the correct tools the OP simply manually changes tools and assigns the tool length offsets by changing the H#. The tool number stays the same and just the H# changes. This can save a ton of time when working on an unknwn prototype.

SO IF you knew the last H# and stored it away in a #param when it comes time to restart with the tool changer simply put back in the last Tool the ATC ran and input the saved H# and you are back in business. I know simply write it down ?? Yes but that is me working for the machine I prefere it the other way around (;-)

(;-) TP

Please Log in or Create an account to join the conversation.

More
01 May 2023 19:25 #270421 by footpetaljones
Sounds like a recipe for a crash. What is wrong with Pathpilot's handling of tools not in the ATC as is?
The following user(s) said Thank You: snowgoer540

Please Log in or Create an account to join the conversation.

More
01 May 2023 21:24 #270431 by spumco
Replied by spumco on topic Questions about tool# and H#

I think I’m picking up what you’re putting down.

I don’t follow the use case for case 1 since they are 3 different tools. But I do follow having the same tool with different features at different Z offsets.

Linuxcnc can do that.

T1 M6 G43 H1
T1 M6 G43 H2
T1 M6 G43 H3

Would be tool 1 at three different offsets. But if I understand it correctly, it’s still not exactly what you’d be after since H2 and H3 correspond to T2 and T3’s offsets.

Unless I’m completely misinterpreting it. Admittedly I didn’t spend a ton of time on researching it …
 

[apologies to the OP if this side conversation is going off-track]

On a turret lathe the tool number is the pocket or index number.  Yes, there are three different tools - but you still have to command the lathe to rotate the turret to the correct position.

And once there you need different X/Z offsets for each tool in the gang block.

I'm not super familiar with LCNC's G43, but a quick read of the manual indicates you're absolutely correct on the "H" word after a G43.  It's not clear to me if that's just the Z offset, or all the offsets in the table for that tool number.  But I think you're right.

Having an H2, H3, Hn loaded in the tool table is exactly the right way to handle gang tools on a single turret position.  "Tool 1" corresponds with "turret position 1", and I suspect one would set up their table with tools #1 to #n corresponding with turret positions.  Tools after the highest turret position could be numbered #101-#199, #201-299, ect. for a somewhat logical brain-prompt. i.e.

T1 M6 G43 H101 calls turret position #1, with tool #101's offset.
T1 M6 G43 H102 switches to another tool in the same gang block.

Or some other scheme using variables/parameters might be set up in a remap.  A post processor might need some fairly significant tweaking so the CAM program makes sense to the user... but F360 (sort-of) permits calling tools using offsets which are not the tool number.


 

Please Log in or Create an account to join the conversation.

More
01 May 2023 21:36 #270432 by snowgoer540
Lathe work is definitely not my strong suit, but I think I follow what you're explaining. I appreciate the extra effort on my behalf. I do have a Slant Pro, but I rarely use it.

I do still struggle to see the application in a mill, more specifically a Tormach one.
 

Please Log in or Create an account to join the conversation.

More
01 May 2023 21:42 #270433 by snowgoer540

A case comes to mind where the OP is doing prototype work and using a lot of tools NOT in the tool changer. Instead of unloading the ATC and reloading with the correct tools the OP simply manually changes tools and assigns the tool length offsets by changing the H#. The tool number stays the same and just the H# changes. This can save a ton of time when working on an unknwn prototype.

SO IF you knew the last H# and stored it away in a #param when it comes time to restart with the tool changer simply put back in the last Tool the ATC ran and input the saved H# and you are back in business. I know simply write it down ?? Yes but that is me working for the machine I prefere it the other way around (;-)

(;-) TP


I just don't follow the logic here on why you'd want to do that. You still have to enter the offset length into the offset table. The tool table has 1000 slots available, the ATC only holds 10. I think having the same tool with different H (offset length) numbers is a recipe for disaster. Perhaps I'm missing something?

I dont have a tool changer anymore (I found it to be unreliable and after dropping the third tool onto the table and shattering it, I decided to sell it), so all of my tool changes are manual. It's pretty simple to keep it straight, I set up my job ahead of time, most of my tools are reused, and any new ones, I prepare and plan for. I never mix T and H numbers, they always stay together. I have literally no idea how you'd keep it straight otherwise.

Please Log in or Create an account to join the conversation.

Moderators: cncbasher
Time to create page: 0.105 seconds
Powered by Kunena Forum