Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

Fanuc 0i VMC - Set tool length automatically clears H+D wear parameter


Recommended Posts

Hi All,

On our VMC's, when we set a tool length (input C), it automatically clears the H wear value (which we like :D ).

But it doesn't clear the D wear (which we don't like).

So if we set the next job up and forget to manually clear the wear value, the part is wrong.

So does anyone know a parameter that automatically clears H+D wear values when setting the tool length?

Cheers

Link to comment
Share on other sites
Guest CNC Apps Guy 1

Hi All,

On our VMC's, when we set a tool length (input C), it automatically clears the H wear value (which we like :D ).

But it doesn't clear the D wear (which we don't like).

So if we set the next job up and forget to manually clear the wear value, the part is wrong.

So does anyone know a parameter that automatically clears H+D wear values when setting the tool length?

Cheers

 

#10000(or #2000)+Tool Number = 0 (H Wear) Look for a line that contains

#11000(or #2200)+Tool Number = 0 (H Geometry)

#12000+Tool Number = 0 (D Wear)

#13000+Tool Number = 0 (D Geometry)

 

This will clear the offending offset completely (geometry and wear). There's not a single magic parameter that clears it AFAIK. You're going ot have to go into the MACRO call and find the line that references and clears them and add another line that clears the D stuff.

 

 

HTH

Link to comment
Share on other sites

James,

We're setting the tool length manually onto a clock (DTI).

We're not using probing so there is no macro, or am I miss-understanding you?

 

I went through the big yellow book and couldn't find anything, but I suppose the question could be 'why have length offset clear diameter register?' because they are separate things. So I don't think there is a parameter, but I have our MTB looking at it...

Thanks

Link to comment
Share on other sites
Guest CNC Apps Guy 1

Ahhhh. RIF (for me). AFAIK ther is no parameter that clears the D when you r press the INP. C.

 

I was thinking Tool Measurement System (laser/touch). SOrry.

Link to comment
Share on other sites

As long as you do remove all tools from setup to setup, you can always hit the soft key under the screen for clear all, I think I remember you would press the right soft arrow once or twice once you are on the tool offsets screen and then it will show you the key Im talking about.Once you clear them all up you should be fine to start setting up the new tools offsets.

Link to comment
Share on other sites

In the past I had a macro I would use to set the tool height. I would bring the tool down to the top of a '123' block, then go to program 08000 and press the start button. This would input the machine Z value plus 2.0" (a variable that was previously set and could be changed) into the height offset for that tool. This would effectively set the tool to the top of the table. Then it would retract the machine to the home position. I'm sure a macro like this could also be used to clear the D value at the same time.

 

Matt.

Link to comment
Share on other sites

In the past I had a macro I would use to set the tool height. I would bring the tool down to the top of a '123' block, then go to program 08000 and press the start button. This would input the machine Z value plus 2.0" (a variable that was previously set and could be changed) into the height offset for that tool. This would effectively set the tool to the top of the table. Then it would retract the machine to the home position. I'm sure a macro like this could also be used to clear the D value at the same time.

 

Matt.

 

 

I do something similar to this with the probe for picking up .5" dowel holes on fixtures on the fms. Move the probe to the dowel hole sitting flush with the face. Then the machine will probe the face next the hole followed by probing the hole and setting it to G54 for me to write down and G10 into a program.

Link to comment
Share on other sites

Here's what we do to clear offsets...

 

%
O9026(M501 -- TOOL OFFSET REMOVAL PROGRAM)
(PARAMETER 6086)

(A = FIRST TOOL TO REMOVE, DEFAULTS TO 6)
(B = LAST TOOL TO REMOVE, DEFAULTS TO 200)

IF[#1EQ#0]THEN#1=6
IF[#2EQ#0]THEN#2=200

WHILE[#1LE#2]DO1
#3=10000+#1
#4=11000+#1
#5=12000+#1
#6=13000+#1
IF[#1EQ4]GOTO1
#[#3]=88.8888
#[#4]=0
#[#5]=0
#[#6]=0
N1
#1=#1+1
END1
M30
%

 

Note: the 88.8888 length eliminates the potential crash if a tool length is missed.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...