View Full Version : Milling with a Citizen C16


Koalas
03-14-2005, 10:33 AM
Hello !

I've got a big problem. Right now I'm trying to program a pocket on a Citizen C16 type IX.
I'm working with the live tool position number T11.

The size of the pocket is 6mm bright and 10mm long. The problem I have is this one. The brithness is right after the machining but the lenth and the raduis are wrong, to small why ?? The size of my tool is 3mm.

M5
G98 M58 S3=5000
M28 S0
T1100(MILLING POCKET)
G0 X12.0 Y0. Z4.0 T11
G19
G1 X2.0 F80
G42 Y3.0 Z4.0 F150
G2 Y-3.0 Z4.0 R3.0
G1 Z8.0
G2 Y3.0 Z4.0 R3.0
G1 Z4.0
G2 Y-3.0 Z4.0 R3.0
G1 Y0 G40
G0 X12.0
G18
M60


Do I still have to enter something under the tool data ??

Please help

cogsman1
03-14-2005, 01:23 PM
Try this, OR add size of tool to the "R" on the tool data page (P=0)

M5
G98 M58 S3=5000
M28 S0
T1100(MILLING POCKET)
G0 X12.0 Y0. Z6.0 T11(*****)
G19
G1 X2.0 F80
G42 Y3.0 Z4.0 F150
G2 Y-3.0 Z4.0 R3.0
G1 Z11.0(*****)
G2 Y3.0 Z11.0 R3.0(*******)
G1 Z4.0
G2 Y-3.0 Z4.0 R3.0
G1 Y0 G40
G0 X12.0
G18
M60

Koalas
03-15-2005, 01:56 AM
I tried both solutions and it's not working. If I had the R in the tool data page
I get an alarm and if I change the program with the dimension you gave the radius is still wrong.......


Why ??

This is weird. I used to mill on the Fanuc CNC and I never got any problems

cogsman1
03-15-2005, 07:23 AM
What alarm did you get? What is the radius coming out as?

Koalas
03-15-2005, 11:49 AM
Alarm P153 !!

And I also tried to write 1.48 instat of 1.50 in my tool data !!

Well I think this CNC is not as powerfull as Fanuc for milling. What I don't get is why is the size 6mm bright ok but the radius 3.0 is to flat ?? The G42 seems to be fine the lenght and all the points too.......... Maybe the CNC cannot find the right point when the tool radius and the radius in the program are the same !!

Something is weird....

cogsman1
03-16-2005, 07:45 AM
The code below worked in my C16IX. This control is just TOO smart to accept any possible error. I had to convert to inch for my machine which gave me the following when converted back. I did not cut I just ran it through the motions and solved the alarms.

(TDATA= R=1.4986 P=0)
M5
G98 M58 S3=5000
M28 S0
T1100(MILLING POCKET)
G0 X12.0 Y0. Z10.16 T11
G19
G1 X2.0 F80
G42 Y3.0 Z5.9995 F150
Z4.0
G2 Y-3.0 Z4.0 R3.0
G1 Z11.0
G2 Y3.0 Z11.0 R3.0
G1 Z4.0
G2 Y-3.0 Z4.0 R3.0
G1 Y0 G40
G0 X12.0T0
G18
M60

Koalas
03-22-2005, 02:22 AM
Thanks for your help but it's still not working on my machine. Maybe the soft of my CNC is different. I'm looking further ....


Cédric