You are not logged in.
Pages: 1
Why can only get vericut to change tools by either LOADTL/ OR M06?
I've tried VERICUT-TC and /VERICUT-TOOLID and i cant seem to get it to accept the tools.
Any one else have this problem and know a fix?
Thanks
Offline
There are several ways Vericut can toolchange.
VERICUT-TC needs something in the nc code to define the tool eg. (VERICUT-TC SHANK, PTS,0,0,0.5,0,0.5,0.5,0,0.5) defines a holder.
What are you trying to achieve ?
Tony
Offline
this is what i got from the help file, but if i switch anything besides "tool number" which requires a LOADTL or M06, it wont run any of my tools.
Tool Change By — Controls how VERICUT receives descriptions of cutting tools.
Cutter Desc. — Process parametric cutter descriptions in the NC program file. Examples:
CUTTER and VERICUT-TC comment records.
VERICUT TC — Process by PPRINT/VERICUT-TC cutter statements in the NC program
file.
Tool Number — Process NC program records that reference tool or pocket numbers and
retrieve associated tools from a Tool Library file. Examples: TnM6 (G-Code NC programs),
LOADTL or LOAD TOOL, and TURRET. When using Tool Change by Tool Number, The
tool number is matched with the pocket number (ex: tool #5 in pocket #5).
List — Refer to a list of tool change event-to-tool ID references that retrieve associated tools
from a Tool Library file. The list is accessed via the Optional Tool Assignment List feature,
as described later in this section.
File Name — Use a tool from a Tool Library file as specified for each NC program file in
the list.
Tool Name — This option is only applicable when NC Program Type is set to NX CLS.
Tool Name refers to the tool identifier in the TOOL PATH/ statement in the NX CLS file.
Offline
Can you post some sample nc code that shows a toolchange
Tony
Offline
here is an example. I cant get it to accept the "vericut id"
T21
M06
N21G90G54G00X.0Y.0B.0C.0W.0S1000M04
G43.4G00H21Z3.0
M08
(/VERICUT-TOOLID 21.0000)
Offline
Stupid question, why do you need it to accept the (/VERICUT-TOOLID 21.0000) when you have T21 & M6 ?
Tony
Offline
Because some of our CNC machines don not have a tool changer and it gets deleted out on the shop floor. i just want a way to verify the proven program again through vericut.
Offline
A better solution might be to add the toolchange as a comment :-
T21
M06
(**T21 M6**)
N21G90G54G00X.0Y.0B.0C.0W.0S1000M04
G43.4G00H21Z3.0
M08
You could then substitute (**T for T and **) for nothing, this then does a normal toolchange and the motion on the work offset line is processed normally.
VERICUT-TOOLID should only really be used for Verification only. Using it in Machine Simulation results in an incorrectly positioned tool display only in a Workpiece View.
Tony
Offline
Pages: 1