[solved]reaming a hole

CADCAM machining solution: mill-turn centers, milling and turning, kinematics, fixtures, topology recognition, tool library, manufacturing schedules, realistic simulation, workshop sheets, post-processors and DNC...

Moderators: remi77, jacs, Daniel

corne

[solved]reaming a hole

Unread post by corne »

hi
when a reaming a hole a want that the F feetrate down is slow and the feetrate up is high fore the mazak is feetrate up E
i do not know howe make this possible in the post

here are the lines what about reaming

// **************** CYCLI *****************
[DEFINE_CYCLE,CALL,BORING]
#bloc = SUB,[DEFINE_CYCLE,CALL,BORING,FINISH][?IS_TOOL_CLASS=BORE REAM];
#bloc = YES,[#CYCLE=85][#CYC_RETRACT_TYPE][GOTO_X][GOTO_Y][GOTO_Z][GOTO_C][#CYC_APPROACH][FEEDRATE];
Last edited by corne on Tue Apr 06, 2010 8:39 am, edited 3 times in total.
User avatar
flavio_ruivo
Master Corporal
Master Corporal
Posts: 32
Joined: Thu Mar 01, 2007 12:09 pm
TopSolid Module: TopSolid'Cam
TopSolid Version: 7.6
Location: Leiria-Portugal
Contact:

Unread post by flavio_ruivo »

Hi,


You look in the Machine Manual if it's possible? and How is the Cycle Format?
Can you post here the machine cycle to do that?

Best regards
Flávio Ruivo
http://www.photoniko.blogspot.com
corne

Unread post by corne »

the code is

G85 x0 y0 z-50 r2 f30 E300

E is feetrate up
User avatar
flavio_ruivo
Master Corporal
Master Corporal
Posts: 32
Joined: Thu Mar 01, 2007 12:09 pm
TopSolid Module: TopSolid'Cam
TopSolid Version: 7.6
Location: Leiria-Portugal
Contact:

Unread post by flavio_ruivo »

Hi,

If you put [#SPECIFIC=E300] in the end of line, you have this value, but is always E300, it's this what you want?


[DEFINE_CYCLE,CALL,BORING]
#bloc = SUB,[DEFINE_CYCLE,CALL,BORING,FINISH][?IS_TOOL_CLASS=BORE REAM];
#bloc = YES,[#CYCLE=85][#CYC_RETRACT_TYPE][GOTO_X][GOTO_Y][GOTO_Z][GOTO_C][#CYC_APPROACH][FEEDRATE][SPECIFIC=E300];


Best Regards
Flávio Ruivo
http://www.photoniko.blogspot.com
corne

Unread post by corne »

Yes

thank you
corne

Unread post by corne »

hi
when i ream one hole it work good.
But now i want to ream two holes with two different dept.
the second hole goes with a feedrade of 300
look to the example

(VASTE RUIMER 10H7)
T24T00M06
G91G28Z0
G90
M03S223

N30
X85.Y33.M08
G43Z15.H24
X85.Y33.
X85.Y33.Z2.
G85G99Z-27.242R2.F33E300
Y-33.
G80

N40
G00X14.Y33.
G85G99Z-27.78R2.E300
Y-33.
G80

N50
G00X-85.Y33.
G85G99Z-26.345R2.E300
Y-33.
G80
G00Z15.M09
G91G28Z100M05

in the second ream cyclus is the "F" gone
is there a way to set alwasy a feedrate of "F"?


this is the line in the post.
#bloc = YES,[#CYCLE=85][#CYC_RETRACT_TYPE][GOTO_X][GOTO_Y][GOTO_Z][GOTO_C][#CYC_APPROACH][FEEDRATE][SPECIFIC=E300];
User avatar
flavio_ruivo
Master Corporal
Master Corporal
Posts: 32
Joined: Thu Mar 01, 2007 12:09 pm
TopSolid Module: TopSolid'Cam
TopSolid Version: 7.6
Location: Leiria-Portugal
Contact:

hi

Unread post by flavio_ruivo »

Hi Corne,

If you put # before FEEDRATE you force the Pp:
[#FEEDRATE]

#bloc = YES,[#CYCLE=85][#CYC_RETRACT_TYPE][GOTO_X][GOTO_Y][GOTO_Z][GOTO_C][#CYC_APPROACH][#FEEDRATE][SPECIFIC=E300];

Tell me if this it´s ok for you?

Best regards
Flávio Ruivo
corne

Unread post by corne »

Yes it works
Post Reply