Hello Guest it is April 19, 2024, 09:21:32 AM

Author Topic: Plasma tube cutting  (Read 38018 times)

0 Members and 1 Guest are viewing this topic.

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Plasma tube cutting
« Reply #40 on: January 02, 2011, 03:39:21 PM »
Look in tool path config set it to be y/a or x/a depending on your setup.

(;-) TP

Offline geast

*
  •  50 50
    • View Profile
Re: Plasma tube cutting
« Reply #41 on: January 02, 2011, 04:24:43 PM »
It is y/a. How can i post a picture?

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Plasma tube cutting
« Reply #42 on: January 02, 2011, 04:31:53 PM »
Reply(not quick reply),  addition options, attach (select picture) Post

Offline geast

*
  •  50 50
    • View Profile
Re: Plasma tube cutting
« Reply #43 on: January 02, 2011, 04:35:20 PM »
Here is what i see in mach toolpath.

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Plasma tube cutting
« Reply #44 on: January 02, 2011, 04:40:21 PM »
Do you have A rotatons enabled ?

Offline geast

*
  •  50 50
    • View Profile
Re: Plasma tube cutting
« Reply #45 on: January 02, 2011, 04:43:51 PM »
Yes and 3d compass, tool position and show tool in z bar.
Also i give the DRO 825 the value of 1.25

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: Plasma tube cutting
« Reply #46 on: January 02, 2011, 05:01:22 PM »
With the posted code set it up to use X with A in tool path config.

Offline geast

*
  •  50 50
    • View Profile
Re: Plasma tube cutting
« Reply #47 on: January 02, 2011, 05:12:17 PM »
Yes it looks better now, thanks.
Re: Plasma tube cutting
« Reply #48 on: December 22, 2011, 09:56:56 AM »
Below is Dan's code with lines added (separated by space) to cut the other end of the tube.
It doesn't work properly cutting from 0,0 rather than the 5" offset.
Can someone please point out the error in my code?
I've tried absolute vs incremental mode.... and nothing seems to work.


(CNC A axis Plasma TUBE Coping routine)
(Math derivative by Dan Hopper Copyright 2006)
#100= 1.250       (CutTube Diameter)
#101= 1.250       (Uncut Tube Diameter)
#103= .095         ( Tube Thickness )
#104= 45             (Joint ANGLE)
#200 = [#100 / 2]         (RO)
#201 = [#101 / 2]         (RU)
#202 = [#200 - #103]  (RI)
#203 = #104                (AF)
#204 = 0                       (ID)
#300= 2                        (A step in deg)
G0 G40 G54 G90 G49 G17 G50 G64 G91.1 G94
G0 A0.000 x0.000 Z1.000 F500
Z0.000
M98 P01 L180


#104= -45             (Joint ANGLE)
#200 = [#100 / 2]         (RO)
#201 = [#101 / 2]         (RU)
#202 = [#200 - #103]  (RI)
#203 = #104                (AF)
#204 = 0                       (ID)
#300= 2                        (A step in deg)
G0 A0.000 x5.000 Z1.000 F500
Z0.000
M98 P01 L180


G0  A0.000 X0.000 Z1.000
M30
o01
G1  A#300 X  [sqrt [#201 **2 - [ [#202 * sin [#204]] **2]] /  sin[#203] -  tan [90-#203] * #202 * cos[#204]]
#204=[#204+2]
#300=[#300+2]
m99
%