CAD CAM EDM DRO - Yahoo Group Archive

Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM

on 2001-12-16 11:01:23 UTC
--- In CAD_CAM_EDM_DRO@y..., "doug98105" <dougrasmussen@c...> wrote:
> John,
>
> Dolphin looks pretty straight forward. Obviously, the second
>screen
> shot you provided would be my favored way of doing the job >
(provided
> the CNC controller will support it).
>
> I looked over the generated code and noticed some things that may
>not
> work with all controllers. It appears the end mill goes to depth,
> then compensates (G41) while at depth with a feed rate of F12.
>Some
> controllers compensate at rapid rate which would not be a good
> situation if the cutter is already into the part. Likewise, the
>G40
> while the cutter is still at depth. In my shop I have 4 different
> controls, all have their own strange habits when it comes to CRC,
>so
> we make it a rule to always try to engage CRC with the cutter at
>Z.1
> above the part.
>
> Is there a way to "teach" Dolphin about the CRC quirks of different
> controllers?
>
> thanks,
>
Doug,

Yes in the post processor you can get it to check that CRC is on
before moving the Z. You can even force it to go to Z0.1 then engage
crc and carry on with the rest of the program.
Below is part of the post that needs to be altered:-
:GOTO = {
IF ($DELTAZ GT 0) THEN
#N #L #Z #F EOB
ENDIF
IF (($DELTAX NE 0) OR ($DELTAY NE 0)) THEN
#N #L #CRC #X #Y #F EOB
ENDIF
IF ($DELTAZ LT 0) THEN
#N #L #Z #F EOB
ENDIF }

The post is just a straight forward text file thatcan be edited with
notepad or wordpad.

John S.

Discussion Thread

glee@i... 2001-12-15 12:40:33 UTC I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM afogassa 2001-12-15 12:58:15 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM glee@i... 2001-12-15 13:29:48 UTC Re: [CAD_CAM_EDM_DRO] I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM doug98105 2001-12-15 15:57:20 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM stevenson_engineers 2001-12-16 03:32:32 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM doug98105 2001-12-16 10:20:32 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM stevenson_engineers 2001-12-16 11:01:23 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM Michael Milligan 2001-12-16 12:14:10 UTC RE: [CAD_CAM_EDM_DRO] Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM Tim Goldstein 2001-12-16 12:21:01 UTC RE: [CAD_CAM_EDM_DRO] Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM doug98105 2001-12-16 12:38:08 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM Michael Milligan 2001-12-16 13:57:14 UTC RE: [CAD_CAM_EDM_DRO] Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM Michael Milligan 2001-12-16 13:57:18 UTC RE: [CAD_CAM_EDM_DRO] Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM stevenson_engineers 2001-12-16 14:47:43 UTC Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM Tim Goldstein 2001-12-16 17:12:11 UTC RE: [CAD_CAM_EDM_DRO] Re: I need help defining cutter compensation (Offset?) in Dolphin CAD/CAM Chris Clough 2001-12-16 17:14:07 UTC Bridgeport