Hello Guest it is March 28, 2024, 12:52:39 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - bryson

Pages: 1
1
General Mach Discussion / creating small circles
« on: November 20, 2009, 03:29:15 PM »
Hi all,

I wanted to know what the smallest circle mach3 can make. 

I used the command below and it made a circle of about 2" in diameter.

G02 I0 J.03

I need the circle to be .060" in diameter(.030" Radius).

my default units are inches.

Is there any setting that i can change to make the circle as small as i would like?

Thanks,

-Bryson

2
General Mach Discussion / dwell for the spindle
« on: November 13, 2009, 05:32:43 PM »
Hello all,

Its Bryson again.

As you have seen on my previous smoothness topic I have fixed the smoothness problem.  The CV rate was far too low and my program was acting like an exact stop program.

New Dilemma.

As you all know "I am a mechanical engineer working for a lighting company called LSGC.  Although i am a design engineer, I have been give the great task of sealing glass onto a fixture via silicone.
We have a standard XY table.  Attached to the XY table we have a syringe that dispenses silicone though means of a pneumatic air gun and we use a step peddle to activate the air gun.

I have written a program for the XY table to follow a simple rectangle with rounded edges to follow the profile of the fixture Using the G-code below and MACH3 software.    The clue dispensed is at a fixed amount and at each step the glue piles up."


I have kind of jimmy rigged a connection from the computer to the XY table in place of the foot step peddle.  I used the port for the spindle and have the commands M3 and M5 to start and stop the air gun in place of the spindle.

My problem is, at the end of the program when the M5 is called the dwell keeps the Air Gun(spindle) running for 1 sec or so and Glue piles up.  I need to reduce the 1 second into 0 seconds.  I want the M5 to stop on a dime.

Any suggestions?

Below is the code.  I already put dwell in milliseconds and it still doesn't work.

O1111 (DOES 1 COMPLETE 1 FT FIXTURE)
( W .020 RTV THICKNESS)
(X0 CENTERED ON LEFT RAIL OF FIXT.1)
(Y0 AT EDGE OF PART)
(Z0 AT HIGHEST POINT OF FIXTURE)
(DC 732 AT 45PSI,GREEN PLASTIC TIP)
(5-15-09 REV.= )
G0 G90 G17 G40 G54
(DISPENSING)
G0 X-7.0 Y3.0 Z.5
M00 (VERIFY DISPENSE)
G0 X-.0858 Y-.5
G0 Z0
G01 Z-.26 F20.0 (SET NEEDLE HEIGHT FOR 1)
M00
M98 P17
G90 G0 Z.5
X-7.0 Y3.0
M00 (WIPE TIP OF DISPENSER)
Y24.0(INSTALL GLASS)
M30
%

O17
G0 G91 G17 G40 G54 G64
M3 (Glue ON)
G01 Y12.23 F160
X.155 Y.155 r .175 F300
G01 X1.48 F160
Y-.155 X.155 r .175 F300
G01 Y-11.48 F160
X-.155 Y-.155 r .175 F300
G01 X-1.48 F160
X-.155 Y.155 r .175 F300
G4P0
M5 (Glue OFF)
G01 Z -.02
G01 X.1
G01 X-.1
G01 X.1
M99
%


Thanks,

-Bryson

3
General Mach Discussion / Smoothness EXTREME need of help
« on: November 12, 2009, 05:08:31 PM »
Hi all,

My name is Bryson Korsboen and I am a mechanical engineer working for a lighting company called LSGC.  Although i am a design engineer, I have been give the great task of sealing glass onto a fixture via silicone.
We have a standard XY table.  Attached to the XY table we have a syringe that dispenses silicone though means of a pneumatic air gun.

I have written a program for the XY table to follow a simple rectangle with rounded edges to follow the profile of the fixture Using the G-code below and MACH3 software.  In each step, the motors come to complete stop before the next step.  Is there any way for the steps to have no pause in between them.  The clue dispensed is at a fixed amount and at each step the glue piles up.  

Can someone please give me example code, MACH3 settings, or hardware/software that I need to get the machine to run through the entire rectangle without momentarily stopping?  Below is the code I'm using.

O1111 (DOES 1 COMPLETE 1 FT FIXTURE)
( W .020 RTV THICKNESS)
(X0 CENTERED ON LEFT RAIL OF FIXT.1)
(Y0 AT EDGE OF PART)
(Z0 AT HIGHEST POINT OF FIXTURE)
(DC 732 AT 45PSI,GREEN PLASTIC TIP)
(5-15-09 REV.= )
G0 G90 G17 G40 G54
(DISPENSING)
G0 X-7.0 Y3.0 Z.5
M00 (VERIFY DISPENSE)
G0 X-.0858 Y-.5
G0 Z0
G01 Z-.26 F20.0 (SET NEEDLE HEIGHT FOR 1)
M00
M98 P17
G90 G0 Z.5
X-7.0 Y3.0
M00 (WIPE TIP OF DISPENSER)
Y24.0(INSTALL GLASS)
M30
%

O17
G0 G91 G17 G40
G01 Y12.18 F180
X.155 Y.155 r .175 F180 (motor stops)
M01
G01 X1.48 F180
G17 G02 Y-.155 X.155 r .175 F180 (motor stops)
M01
G01 Y-11.50 F180
G17 G02 X-.155 Y-.155 r .175 F180 (motor stops)
M01
G01 X-1.48 F180
G17 G02 X-.155 Y.155 r .175 F180 (motor stops)
G4P0
G01 Z -.02
G01 X.1
G01 X-.1
G01 X.1
M99
%


Don't hesitate to email.

I need immediate help as this is quite frustrating and I have limited experience writing G-code.

thanks,

Bryson

bkorsboen@lsgc




Pages: 1