Hello Guest it is April 26, 2024, 10:25:22 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.


Messages - Fastest1

861
General Mach Discussion / Re: Gcode questions pt2
« on: October 18, 2009, 12:26:52 AM »
 I just measured the part We all just made at my house, and I had intended it to be 1.20" wide on both x & y axis' it is 1.2065! on both planes. Looks like there is room for a finish pass or 2 maybe presenting the work to the tool from the other direction.

862
General Mach Discussion / Re: Gcode questions pt2
« on: October 18, 2009, 12:11:39 AM »
On another note Ray recommended stepping down in Z instead of the side milling approach I was using. Much better and faster and I am sure cutter wear is minimized to a degree. I never really thought about it but I guess pushing down on the end mill is much more rigid if the proper feedrate is used or a conservative 1 anyway.

863
General Mach Discussion / Re: Gcode questions pt2
« on: October 18, 2009, 12:08:31 AM »
 
put the revised # value in square brackets -

#100 =[#100+0.010]

this should work now ;)

Blue, Thank You also ! It took me a while to figure out what brackets and where they were. I figured out something and it worked pretty well. Could be better and will be but I was very satisfied. It took over a month to see motion in my machine after building the driver board (Btw with no experience there either, just ask the Hobby CNC forum LOL)I ended up using 2 different codes that all i can see different are the feedrates but the results seemed different. I do want to cut the other direction on a finish pass if I run this code again but otherwise it was fine.

M3
G0 Z1
G0 X0 Y0
M98 P0001 L86
G1 X0 Y-1.4480 F5
G1 Z0 F5
G1 X7.4155 F5
G1 Y-4.537 F5
M30
O0001
G0 Z#100 F5
#100=[#100+.005]
G1 Z#100 F5
G1 X0 Y-1.453 F5
G1 X7.4405 F5
G1 Y-4.537 F5
M99
M30
%
&
%
M3
G0 Z1
G0 X0 Y0
M98 P0001 L86
G1 X0 Y-1.4480 F16
G1 Z0 F16
G1 X7.4155 F16
G1 Y-4.537 F16
M30
O0001
G0 Z#100 F16
#100=[#100-.005]
G1 Z#100 F16
G1 X0 Y-1.453 F16
G1 X7.4405 F16
G1 Y-4.537 F16
M99
M30
%

I was constantly seeing ways of improving it in flight.

864
General Mach Discussion / Re: Gcode questions pt2
« on: October 17, 2009, 02:18:21 AM »
Wiow what you showed me helped immensely. I could see some form of pattern that I could maniplate the figures enough to tinker. Too bad I didnt read your post as I was playing. I was just going to come back and ask about linking x and y moves as I see you did in your last post. Btw I just thought I should side mill cause I dont now any better. The way for the best results is to step down and then finish pass? Anyway I took your suggestion and changed it based on what I thought. It worked fair. At least directionally it was accurate.
G90
G0 X0 Y0
G0 Z0.000
G0 Z-4.85
M98 P0001 L25
M30
O0001
G91 (Set incremental mode)
G1 X0.005 F7 (Step over +0.005)
G90 (Set absolute mode)
G1 Y0 F5  (Cut from Y0 to Y-3)
G1 Y-3 (Return to Y0)
M99 (Return)
M30
It was getting closer to what I wanted at this point however what decides when the tool advances ideeper into the part? I am going to look at your last code and vary it some tonight. It should be much easier since I am the coolant and spindle! LOL Again THANK YOU. It made my night just to do what you taught me. Of course now I have to figure why there is a little bit of chatter in the corner when it meets at X&Y  though that might go away stepping down and or cutting a fluid 2 sides each pass. Also on the above Gcode if I followed the G1 Y-3 with an F3 would the tool advance in another .005? So many questions now.

865
General Mach Discussion / Re: Gcode questions pt2
« on: October 16, 2009, 11:05:54 PM »
Even though I am just cutting air as of the moment it sure is easier than MDI!

866
General Mach Discussion / Re: Gcode questions pt2
« on: October 16, 2009, 11:04:39 PM »
That looks alot better, thank you. How could I implement the same cut being done along Y during each pass the same cut amount of .005 ?

867
General Mach Discussion / Re: Gcode questions pt2
« on: October 16, 2009, 10:57:30 PM »
I thought I had seen that m code before. Btw thanks for being awake!

868
General Mach Discussion / Re: Gcode questions pt2
« on: October 16, 2009, 10:56:33 PM »
You ask about Y cuts, I was settling for repetition on any axis. If I could cut both From X0 to X7 say .005 a pass and then Y0 to Y2.5 at the same rate .005 that would be great but as you can see I dont really have an idea how to implement it. I would think there has to be a final destination though 50 passes @.005 indicates 1/4".  
 

869
General Mach Discussion / Re: Gcode questions pt2
« on: October 16, 2009, 10:42:32 PM »
That is part of where I am confused. I wanted the cuts to happen along x but adding to Y. Such as the first cut starting at Y0 & X0 cutting to X7 returning to X0 then stepping over to Y.005 cutting from X0 to X7 and so on. Dont mind if it cut both ways until the finish pass. Btw the feedrate would have been fast for my sherline but who could wait to see what it was going to do? Thanks again Ray, your not going to be awake til I understand are you ? LOL

870
General Mach Discussion / Re: Gcode questions pt2
« on: October 16, 2009, 10:09:01 PM »
Ok this is what I entered
G90
G0 Z0.000
G98 P0001 L50
G0 Z-2
O0001
G91 (Set incremental mode)
G17 X0.005 F25 (Step down 0.005 in Z)
G90
G1 X1
G17 X7
G99 (Return)
M30


It ran in the right direction, spindle stayed where I wanted it (or at least I put it where I wanted for this test) though I dont understand why it only made 1 pass? I am trying to cut along the x travel X0 thru X7 stepping .005 into the piece each pass. It didnt cycle at all.