Gentlemen, thank you for taking the time to address my question.
What I am using is a CNC router (from K2CNC) which I am using to dispense glue on a board in a spiral manner.
I was able to correct the problem. It turned out that the speed was very hign and the acceleration low (set to 45 ...) When I increased it to 80, 90 and then 100, it worked.
Now, I have another problem, the G code I am using was written by this guy I no longer have the contact info for. I believe it was written using Master Cam (code listed below). The code was generated using a tool-size of 1.5 (with the assumption that the successive spirals - of dispensed glue - have a bleed of 1.5 inches, so that the successive spirals do not touch each other). The problem, however, is the "bleed" varies depending on the flow-rate, the height from which the glue is dropped, the viscosity, etc.
In short, what I need is code that I can run with different tool size (gap between successive spirals). How do I modify the G code and have versions for tool-sizes of .75, 1.0, 1.125, 1.25 and 1.5? I do not have the software to generate G code, what can I do?
I much appreciate your help. G-code is below:
%
O0000(14SPIRAL)
(DATE=DD-MM-YY - 24-03-09 TIME=HH:MM - 13:45)
(MCX FILE - T)
(NC FILE - C:\DOCUMENTS AND SETTINGS\DAGNEA\DESKTOP\14SPIRAL.NC)
(MATERIAL - ALUMINUM INCH - 2024)
( T244 | 1-1/2 FLAT ENDMILL | H244 )
(A is for Valve position -- 0=closed 1=fully open)
(F is for feed/speed, its modal command/persist until changed)
(G1 linear move with F requirement)
(G0 is rapid move at max speed)
N106 G1 G90 G54 X5.151 Y3.5397 A0 F400
F1200
G0 A.15
N112 G2 X6.25 Y0. R6.25
N114 X-6.25 R6.25
N116 X5.151 Y3.5397 R6.25 A.2
N118 X6.1875 Y0. R6.5625 A.6
N120 X-5.4375 R5.8125
N122 X4.6875 R5.0625
N124 X-3.9375 R4.3125
N126 X3.1875 R3.5625
N128 X-2.4375 R2.8125 F1075
N130 X1.6875 R2.0625 A.5 F1000
N132 X-.9375 R1.3125 A.4 F800
N134 X.1875 R.5625 A.3 F550
G1 A0 F100
N144 M30
%
Dan