Back
[01:03:56] <Ziegler> bahh..
[01:04:10] <Ziegler> got an error that says file ended with program end...
[01:04:14] <Ziegler> but at the end I hae a m30
[01:04:27] <SWPadnos> did you use a % at the beginning?
[01:04:41] <Ziegler> begining of the file?
[01:04:46] <SWPadnos> yes
[01:04:51] <Ziegler> no... should I have?
[01:05:00] <SWPadnos> if you did, then you need to end the file with % also, I think
[01:05:01] <SWPadnos> no
[01:05:03] <Ziegler> ok
[01:05:12] <SWPadnos> make sure there's a CR on the line with M30
[01:05:17] <SWPadnos> (carriage return)
[01:05:56] <Ziegler> hmmm... seems its not a problem with the end of the file... but the if statement I just added
[01:06:04] <Ziegler> o302 if [#19 lt #4-#5]
[01:06:04] <Ziegler> #20 = [#5*#9]*360
[01:06:04] <Ziegler> #16 = [#1+COS[#20]*#15]
[01:06:04] <Ziegler> #17 = [#2+SIN[#20]*#15]
[01:06:04] <Ziegler> #19 = [#4-#5]
[01:06:04] <Ziegler> 0302 endif
[01:06:10] <SWPadnos> oh. then I'd fix the if statement ;)
[01:06:11] <Ziegler> bah
[01:06:12] <Ziegler> I see it
[01:06:23] <SWPadnos> o, not 0 ;)
[01:06:31] <Ziegler> hehe
[02:12:55] <CIA-8> 03jepler 07TRUNK * 10emc2/docs/src/lyxtree.py: make include and input inset types work
[02:18:23] <Ziegler> Are variables pass values outside of if statments?
[02:18:44] <Ziegler> can*
[02:20:22] <jepler> Ziegler: yes, parameters above #30 are "global" to all parts of a .ngc file, while parameters from #1 to #30 are "local" to a sub
[02:20:30] <Ziegler> right...
[02:20:34] <Ziegler> im in the same sub...
[02:21:08] <Ziegler> but specifically from an if statment.. one sec paste bin
[02:22:20] <SWPadnos> I don't believe the concept of "passing variables" has anything to do with if statements. there should be no locals to an if
[02:22:45] <Ziegler> http://pastebin.ca/732539
[02:23:02] <Ziegler> alright thats what I figgured...
[02:23:25] <Ziegler> for whatever reason I am getting arc errors after 303 sets the variables
[02:23:38] <Jymmm> gcode has a local scope?!
[02:23:46] <Ziegler> (lines 28-33)
[02:23:49] <SWPadnos> yes, subroutines do
[02:24:06] <jepler> I'd add brackets here: o303 if [#19 lt #4-#5]
[02:24:10] <jepler> [#19 lt [#4-#5]]
[02:24:20] <jepler> not sure if this is a cause of any problem
[02:24:27] <Jymmm> SWPadnos: well subroutines are like functions I'd hope ;)
[02:24:59] <SWPadnos> yes, but they have both locally- and globally-scoped variables
[02:25:04] <Ziegler> no change jepler
[02:25:07] <SWPadnos> and you don't get to choose which are which ;)
[02:25:24] <Jymmm> global gobals!!!
[02:25:28] <Ziegler> I manually calculated the number
[02:25:32] <Jymmm> global globals!!!
[02:26:06] <jepler> Radius to end of arc differs from radius to start: start=(X0.2722,Y0.2722) center=(X0.3085,Y0.6555) end=(X-0.0362,Y-0.3833) r1=0.3850 r2=1.0945
[02:26:38] <SWPadnos> aren't I and J always relative?
[02:26:50] <Ziegler> ahh... I J is center from start of curve isnt it
[02:26:51] <cradek> yes in emc
[02:26:51] <SWPadnos> meaning that you don't want to add #1 ad #2 to the calculated endpoint
[02:26:58] <SWPadnos> s/ad/and/
[02:27:01] <Jymmm> SWPadnos: only if you live in the ozarks
[02:27:16] <SWPadnos> relative, not relatives! ;)
[02:27:37] <Ziegler> ok.. I was doing distance from end point... which did not matter with the rest of the routine because it began end ended at the same point!
[02:27:42] <SWPadnos> hmmm.
[02:27:47] <Jymmm> SWPadnos: your uncle is your father, mkay!
[02:27:55] <SWPadnos> the sign may be wrong actually
[02:28:12] <SWPadnos> you do need to add in #1 and $2, because they're subtracted out in the G2/G3 lines
[02:28:44] <SWPadnos> but you may want to change the sign of either the entire equation (multiply by -1) or just subtract the COS/SIN terms instead of adding them
[02:28:54] <SWPadnos> on lines 30 and 31
[02:29:15] <Ziegler> and 8 and 9 (did you mean I "dont need"
[02:29:41] <SWPadnos> hmmm. no, I'm just looking in that if statement
[02:29:52] <SWPadnos> but now that you mention it, it would make sense for the equations to be the same ;)
[02:29:59] <Ziegler> if statement is fine
[02:31:02] <SWPadnos> ok, let me rephrase. I was only looking at the final endpoint calculation
[02:31:12] <Ziegler> yeah I think I am going to do it different
[02:31:37] <Ziegler> go from "start degrees" to "end degrees first" and then finish the rest of the arcs to the bottom
[02:31:57] <SWPadnos> that should be an infinite loop
[02:32:32] <SWPadnos> as long as #19 is >= [#4-#5] ... if #19 < [#4-#5] #19 = [#4-#5] ... endwhile
[02:32:35] <Ziegler> well... maybe the way I explained it... but I let me re-do the code to see if that makes sense
[02:32:51] <Ziegler> (degrees != depth)
[02:33:41] <cradek> what's this program do?
[02:33:47] <SWPadnos> thread milling
[02:33:49] <Ziegler> thread milling
[02:33:53] <cradek> ah
[02:34:08] <Ziegler> or it will... at some point
[02:34:14] <SWPadnos> I don't see how that loop can exit, unless there's some infinite loop detection code in there
[02:34:31] <cradek> I wish we had a way to do more than one turn of a helix at a time
[02:34:52] <Ziegler> SWPadnos: let me fix the code
[02:34:55] <SWPadnos> canon has a number of turns parameter in the helix call
[02:35:05] <SWPadnos> but I don't think the interp uses it (or can with G-code as input)
[02:35:25] <cradek> yeah I think there's support in the low levels (like a lot of things)
[02:35:28] <cradek> but gcode...
[02:35:34] <SWPadnos> heh
[02:36:30] <SWPadnos> it shouldn't be to hard to add that though - throw in a K parameter like threading has, and - err - step 2 ... and it's done :)
[02:37:05] <cradek> ... profit!
[02:37:11] <SWPadnos> right!
[02:38:32] <SWPadnos> I'm thinking of this:
http://www.sciencecartoonsplus.com/gallery.htm
[02:40:11] <cradek> http://en.wikipedia.org/wiki/Underpants_Gnomes
[02:41:18] <cradek> under 'The Underpants Gnomes have a three-phase business plan, consisting of:'
[02:41:38] <SWPadnos> yes. ever popular on Slashdot
[02:42:31] <cradek> oh ok, I didn't know whether or not you use the internets
[02:42:47] <SWPadnos> i has herd tell of tha intarwebb
[02:42:49] <cradek> ouch, $50-60 for a shell mill
[02:42:58] <SWPadnos> cheap!
[02:43:04] <cradek> yeah probably so
[02:43:09] <SWPadnos> and inexpensive!
[02:43:13] <cradek> a few "cheap!" things add up to actual money
[02:43:15] <jmkasunich_> why do you want to mill shells?
[02:43:19] <SWPadnos> I sure know that
[02:43:22] <cradek> hi jmk!
[02:43:25] <SWPadnos> because they're so hard
[02:43:27] <jmkasunich_> hi!
[02:43:33] <SWPadnos> hi jmk :)
[02:43:49] <cradek> I have several decent shell mills, but the one that fits the arbor I have doesn't end-cut (and that's what I want to use it for)
[02:44:38] <SWPadnos> Ziegler, the end angle calculation is probably wrong, but there should be no number that can be given to the endpoint calculation to cause a radius error
[02:45:11] <SWPadnos> the sin/cos functions will always give you a sine and cosine of a point on the circle - they do modulo on the angle
[02:45:23] <Ziegler> right...
[02:45:47] <jmkasunich_> cradek: I'm sure you can find one in here:
http://www.hgrindustrialsurplus.com/search-products/product-detail.aspx?id=10-287-004&searchtable=2&sortExpression=&SortASC=&pageSize=50¤tPageIndex=0
[02:46:07] <cradek> counting gas I'd probably be over $60.
[02:46:16] <Ziegler> my I and J were the distance from end point to center... instead of start point to center
[02:46:16] <jmkasunich_> lol
[02:46:47] <jmkasunich_> better box:
http://www.hgrindustrialsurplus.com/search-products/product-detail.aspx?id=12-247-052&searchtable=2&sortExpression=&SortASC=&pageSize=50¤tPageIndex=1
[02:46:53] <jmkasunich_> how soon do you need it
[02:47:06] <cradek> whenever
[02:47:26] <cradek> I'll get back over that way sometime :-)
[02:47:30] <jmkasunich_> oct 20 is their saturday this month, and I was planning a visit
[02:47:35] <jmkasunich_> I can poke around
[02:47:44] <cradek> that would be cool, but it's a pain to ship stuff like that
[02:47:58] <cradek> (just to save me a few bucks)
[02:47:59] <jmkasunich_> one cutter isn't a pain
[02:48:18] <jmkasunich_> (I wasn't suggesting buying the whole tub)
[02:48:27] <cradek> sure I understand
[02:49:00] <cradek> my arbor requires a 1" hole in the shell, and I just want something good to square up blocks with
[02:49:15] <cradek> (so it has to cut on the end, but of course not plunge)
[02:49:31] <jmkasunich_> like a smaller version of my big one
[02:51:07] <cradek> http://www.use-enco.com/CGI/INSRIT?PMAKA=320-4370&PMPXNO=950861&PARTPG=INLMK32
[02:51:40] <cradek> hard to tell if those teeth have bottom relief
[02:52:18] <cradek> http://www.use-enco.com/CGI/INSRIT?PMAKA=320-4845&PMPXNO=951479&PARTPG=INLMK32
[02:52:26] <cradek> this one sure does but $108 and discontinued
[02:52:40] <jmkasunich_> you really want a face mill, not a shell mill
[02:53:03] <cradek> hmm...
[02:53:10] <jmkasunich_> http://www.use-enco.com/CGI/INSRIT?PMAKA=365-4020&PMPXNO=951538&PARTPG=INLMK3
[02:53:11] <cradek> seems like those are all indexable
[02:53:10] <skinnypuppy34> You can often find resharps like that on ebay reasonably priced
[02:53:41] <toast> (shell mills are for horizontal milling machines)
[02:54:29] <cradek> face mill + 1" hole = all discontinued
[02:54:51] <Ziegler> SWPadnos: this works now:
http://pastebin.ca/732579
[02:55:19] <SWPadnos> does it exit from the loop?
[02:55:23] <SWPadnos> duh - nevermind
[02:55:36] <Ziegler> need to check what happens if #19 happens to be equal to #4-#5
[02:55:37] <jmkasunich_> http://cgi.ebay.com/2-1-2-INDEXABLE-SHELL-FACE-MILL-4-FLUTE-SD-322P-753-4_W0QQitemZ130161391481QQihZ003QQcategoryZ25260QQssPageNameZWDVWQQrdZ1QQcmdZViewItem
[02:55:55] <SWPadnos> the loop should never execute in that case
[02:56:21] <SWPadnos> but roundoff error might cause an extra loop on occasion - probably with no Z motion, but definitely not helical
[02:56:31] <Ziegler> right... but trying to decided if it needed to run one more time after line 26
[02:56:34] <Ziegler> (I think it does)
[02:56:34] <toast> cradek:
[02:56:38] <toast> msc has a bunch of them
[02:56:50] <toast> also a question for you, how big is your mill
[02:57:19] <jmkasunich_> bport
[02:57:25] <toast> cool
[02:57:28] <cradek> 2hp and "rigid ram"
[02:57:42] <Ziegler> SWPadnos: can I exit the while statment early??
[02:57:52] <toast> you do mostly alum right?
[02:58:02] <cradek> yes right now
[02:58:17] <SWPadnos> Ziegler, I don't know. you can certainly stick an if statement in to conditionally do the "rest of the loop", and insure that the next check will exit
[02:58:17] <Ziegler> put another o301 endwhile inside of o303
[02:58:26] <SWPadnos> no, I don't think so
[02:58:42] <toast> cradek: what are you looking for in your face mill
[02:58:46] <toast> a specific cutting dia, etc?
[02:58:52] <cradek> just wishing there's a faster way to square up work than a fly cutter
[02:58:52] <toast> anything a flycutter won't do?
[02:59:07] <cradek> I want a flycutter with 10 teeth or so :-)
[02:59:21] <SWPadnos> sounds like a 6" face mill
[02:59:32] <toast> that might be a bit heavy
[02:59:40] <jepler> O-
http://linuxcnc.org/docs/devel/html/gcode_main.html#r5_2 "Inside a while loop, O- break immediately exits the loop, and O- continue immediately skips to the next evaluation of the while condition."
[02:59:44] <cradek> 2.5 or 3" would be very nice
[02:59:51] <toast> 3" is a good size for bport
[02:59:58] <toast> 4-5 teeth in alum
[03:00:05] <toast> maybe 3
[03:00:11] <SWPadnos> Ziegler, you could just not set 19 to 4-5
[03:00:32] <SWPadnos> remove line 32, change lines 35 and 37 to use Z[#4-#5]
[03:00:45] <SWPadnos> and the loop will exit
[03:00:50] <Ziegler> ah
[03:01:38] <SWPadnos> also, here's a sneaky thing. set parameter 21 to 2 or 3, and use G#21 for the circles - gets rid of the ifs :)
[03:01:39] <toast> cradek: i actually put a negative radial, positive axial rake on a flycutter
[03:02:03] <toast> and that kind of grind will whomp material off, especially aluminum
[03:02:05] <SWPadnos> err - 22, 21 is in use
[03:02:08] <SWPadnos> no, 23
[03:02:11] <Ziegler> that works?
[03:02:13] <SWPadnos> you know ;)
[03:02:16] <SWPadnos> I think so
[03:02:15] <toast> without giving the machine the brigeport shakes
[03:02:40] <Ziegler> so I can do G#11
[03:02:42] <SWPadnos> so a single if at the beginning to choose between left/right, and then all G#23
[03:02:52] <SWPadnos> no, you want to be sure it's going to be an arc move ;)
[03:03:01] <SWPadnos> so check for it at the beginning
[03:03:13] <skinnypuppy34> Cradek, Check cutting tools on
http://www.cdcotools.com/ and ctl+f 46917 3inch cutter
[03:03:32] <toast> more face mills
[03:03:32] <SWPadnos> you could probably use #11 though, but it seems icky to do if [#11 EQ 1] #11=2 else #11=3
[03:03:32] <toast> http://www1.mscdirect.com/CGI/N2DRVSH?SISECT=0002006527&SIS0NO=00000674838
[03:04:10] <cradek> looks like cdco is all R8 stuff
[03:04:13] <jmkasunich_> those kinds of large cutters are where the skinflint in me starts screaming "surplus or ebay, surplus or ebay!"
[03:04:34] <cradek> yeah no kidding
[03:04:34] <skinnypuppy34> Didn't know your shank.
[03:04:39] <jmkasunich_> (I paid under $20 for my 5-1/2" one)
[03:04:50] <SWPadnos> believe it or not, those kinds of cutters are the kind of thing I haven't bought yet, because they're too expensive
[03:04:52] <cradek> but I have one arbor, and it's for a 1" hole, so I'm pretty picky
[03:05:07] <toast> SWPadnos: you aren't missing much
[03:05:18] <jmkasunich_> 1" hole leaves you with lots of choices
[03:05:21] <toast> most people don't push them hard enough and constantly wear the teeth out
[03:05:20] <cradek> flycutter works fine with patience
[03:05:36] <SWPadnos> especially without a CNC to do the pushing
[03:05:41] <toast> or power feed, for that matter
[03:05:54] <toast> most of the bridgeports at school get the shakes real bad
[03:05:54] <SWPadnos> I had that, until I put in the ballscrew
[03:05:55] <skinnypuppy34> We had a few at school, but anything harder than al you couldn't really use it to potential
[03:05:58] <toast> when you get those things moving
[03:06:04] <toast> the ones at work do, as well
[03:06:20] <jmkasunich_> nice thing about the insertable ones is that you can get the RPM up
[03:06:34] <SWPadnos> ok. time to get back to those DACs (or modbus or whatever I'm supposed to be working on at the moment)
[03:06:36] <jmkasunich_> (4" dia hits a couple hundred SFPM pretty quick)
[03:06:45] <SWPadnos> Ziegler, let me know if that G#23 thing doesn't work
[03:06:45] <cradek> yeah even 500sfm at 2.5" isn't much
[03:06:57] <toast> but you have to feed it at .005-.010" per tooth
[03:07:04] <jmkasunich_> I run my big one at 70 RPM in steel, 140 in aluminum
[03:07:06] <cradek> but with 10 teeth * .010 that's a decent feed
[03:07:34] <cradek> not sure I can even do 70rpm...
[03:07:39] <cradek> that's pretty darn slow
[03:07:52] <toast> that is slow
[03:07:53] <toast> in alum
[03:07:59] <toast> with coated carbide
[03:08:09] <jmkasunich_> toast: mine has HSS teeth, not carbide
[03:08:11] <toast> oh
[03:08:21] <jmkasunich_> and I have no source for replacement teeth
[03:08:31] <toast> good reasons then!
[03:08:52] <skinnypuppy34> WHat do the teeth look like? HSS m2 ?
[03:08:55] <toast> i don't know though, dude
[03:08:58] <jmkasunich_> http://www.metalworking.com/dropbox/_2001_retired_files/Facemil3.jpg
[03:09:01] <toast> in alum
[03:09:06] <toast> you can run hss pretty high
[03:09:23] <toast> but the no replacement teeth thing
[03:09:25] <toast> that's harsh.
[03:09:27] <Ziegler> http://pastebin.ca/732594 SWPadnos see line 7
[03:09:48] <jmkasunich_> toast: I run 140 RPM (and sometimes a bit more) in aluminum
[03:09:50] <toast> nice cutter
[03:09:55] <jmkasunich_> that works out to 201 SFPM
[03:09:58] <toast> they make carbide teeth
[03:09:59] <toast> for those
[03:10:26] <jmkasunich_> I have no idea how to even get the teeth out
[03:10:30] <toast> i've never looked to see where to get them though, but if you are interested you might want to call up kennametal or valenite
[03:10:31] <jmkasunich_> no screws or anything
[03:10:32] <jmkasunich_> http://www.metalworking.com/dropbox/_2001_retired_files/Facemil2.jpg
[03:10:42] <cradek> I run HSS at 350sfm successfully so far
[03:10:50] <toast> in?
[03:10:56] <cradek> al
[03:11:05] <toast> 500-700
[03:11:07] <SWPadnos> Ziegler, what if I make #11 -1?
[03:11:07] <toast> is pretty safe
[03:11:11] <SWPadnos> or 33.6
[03:11:35] <Ziegler> hehe... wont work
[03:11:37] <cradek> toast: my handbook's in the garage or I'd argue :-)
[03:11:51] <SWPadnos> might do some funny stuff, no? :)
[03:11:57] <cradek> toast: I thought that was pretty high for hss (but I bet you know better than I do)
[03:11:58] <jmkasunich_> toast: I'd be afraid to even ask what carbide teeth for my mill would cost
[03:12:00] <toast> my lathe's at work or i'd argue
[03:12:00] <jmkasunich_> the teeth are big
[03:12:12] <toast> by actually showing you the cut and that the cutter takes it just fine =)
[03:12:12] <Ziegler> ok time to id 10 t proof it
[03:12:30] <toast> they're pricey, but regrindable and they're really tough grades of carbide
[03:12:53] <jmkasunich_> I'm perfectly happy with the HSS teeth actually
[03:13:17] <jmkasunich_> as it is I spend almost as much time setting up the cut as I do actually cutting
[03:14:28] <toast> a good balance
[03:14:34] <jmkasunich_> a cut like cleaning up those plates in my pic takes a couple minutes
[03:14:41] <skinnypuppy34> Speaking of tough carbides, I got a replacement blade for my cable trencher recently and the new design uses three 1/2 inch carbide brazed square tip lathe style cutters brazed onto the bar. This thing will cut through rocks. What carbide is this?
[03:14:46] <jmkasunich_> 10x10x3/4 plates, stack of 6
[03:14:55] <CIA-8> 03jepler 07TRUNK * 10emc2/docs/src/ (l2h.xsl lyxtree.py):
[03:14:55] <CIA-8> * Support book layout: new tags include Author, Title, Part
[03:14:55] <CIA-8> * Support tableofcontents, printindex to place the toc and index at the desired location
[03:14:55] <CIA-8> * Remove debugging messages
[03:15:01] <toast> skinnypuppy34: titanium carbide
[03:15:23] <toast> standard carbides, probably like an ISO K30 or K40 grade
[03:15:30] <skinnypuppy34> Cool, it it tough as hell i give it that much
[03:15:46] <toast> carbide is amazing stuff
[03:17:28] <toast> i am still trying to get my head around hard cutting
[03:17:35] <toast> hard feeds/depth of cut
[03:18:05] <toast> all the sounds and vibrations are new
[03:18:11] <toast> like starting all over again
[03:18:31] <skinnypuppy34> Yeah I didn't do too much hard cutting and wasted a few cutters getting dialed in on realistic feeds.
[03:19:15] <toast> haha
[03:19:38] <toast> "this is so cool! *thudthudthud-bang* Damnit."
[03:20:30] <skinnypuppy34> YEP, Now milling UHMW at 80 ipm was fun
[03:20:41] <skinnypuppy34> Butter
[03:20:54] <toast> lol
[03:23:08] <skinnypuppy34> Waiting on my motors/&P.S.... sigh
[03:25:01] <toast> ?
[03:26:48] <skinnypuppy34> I've bought my geckos, limit switches, wire, cabinet, oh crap button to wall mount, and have ordered my motors. Need to make some pulleys and brackets, got some al plate recently for the job
[03:27:17] <toast> a+
[03:27:32] <skinnypuppy34> Sooo just about finished scrounging parts
[03:27:39] <toast> make sure your oh crap button stops the spindle!
[03:28:09] <skinnypuppy34> Yep, I was going to put it on a motor starter to interupt and shunt
[03:29:00] <skinnypuppy34> How close to the travel ends should the e-stop switches be on a bp clone retro?
[03:29:14] <toast> dunno, never set one up
[03:29:20] <cradek> far enough to stop in time
[03:31:15] <toast> did you know a BP clone doing a 100 ipm rapid
[03:31:21] <toast> can totally knock the head out of tram
[03:31:28] <toast> if you hit what you are working on
[03:31:42] <toast> it mills for a little bit though!
[03:32:02] <cradek> ouch
[03:32:51] <cradek> I'm anxious to get emc working on this so I can tighten the following error limits a lot
[03:32:58] <cradek> I don't trust these amps to fault
[03:33:23] <cradek> fortunately I haven't made any big mistake yet, but it's just a matter of time
[03:33:33] <toast> yeh =(
[03:33:49] <skinnypuppy34> DId jlmjvm get that pico card working with steppers + encoders?
[03:34:00] <Skullworks-PGAB> On the Hurco KM3 ( Kondia made BP clone ) the limit switch allows for about 5.5mm travel before hitting HARD
[03:34:10] <toast> another one i pulled was doing a toolchange on a Haas SL-20
[03:34:17] <toast> without moving the turret away from the part
[03:34:38] <toast> another time i forgot to do a program reset and attempted to use a roughing boring bar as a drill
[03:34:48] <toast> in a big cnc lathe
[03:34:51] <cradek> ha
[03:34:57] <toast> that was frightening
[03:34:59] <Skullworks-PGAB> but the limit switch also tripped the amp to short the motors to breaking resistors
[03:35:04] <cradek> I've heard of people milling with dial indicators
[03:35:27] <toast> hahaha
[03:35:28] <toast> what
[03:35:29] <cradek> they don't cut very well I suppose
[03:35:33] <toast> oh man that would suck so bad
[03:35:37] <toast> i'd go home, if i did that
[03:35:49] <skinnypuppy34> Ha seen that done on an sl-20, seen another guy break off a live tooling head crashing it into the chuck on the sl-20. Last time he ran that machine
[03:35:55] <cradek> stays in the machine and nobody gets hurt = good crash
[03:36:03] <toast> to be fair the sl-20 crash wasn't my fault
[03:36:09] <Skullworks-PGAB> Never start the spindle @ 12000 rpm with an edge finder in it.
[03:36:15] <toast> it was my program and i was on the machine, but the change that caused the crash was someone else
[03:36:23] <toast> hollllly shit
[03:36:27] <cradek> Skullworks-PGAB: booooinnng!
[03:36:40] <toast> did the tip come out like a projectile
[03:36:48] <cradek> of course it did
[03:36:55] <Skullworks-PGAB> don't think it was there after it passed 4K
[03:37:04] <toast> haha.
[03:37:29] <toast> the worst crash i have been involved in, or standing near, was a 20-hp cnc in low gear
[03:37:29] <cradek> I accidentally ran my wiggler (the pointy one) at 2000 and it stayed in - probably wouldn't have much faster though
[03:37:47] <toast> was running copper, when the crap rewelded
[03:37:56] <toast> and managed to halt 180 lbs of chuck
[03:38:02] <toast> very quickly
[03:38:51] <toast> it made a ridiculously loud "boom"
[03:38:55] <toast> then a jet turbine sound
[03:38:57] <toast> until we hit e-stop
[03:39:10] <toast> people came from all over the shop to see what had happened
[03:39:38] <Skullworks-PGAB> had one like that a few months ago
[03:39:36] <toast> but i didn't do it, i was just standing there.
[03:39:51] <toast> details!
[03:40:18] <skinnypuppy34> Wow. now the crash that broke the live tool head off sounded like a helicopter crossed with a jackhammer.
[03:40:23] <Skullworks-PGAB> I was running a huge Mazak and the spindle tach feedback card fried and I had a runaway
[03:40:37] <toast> oh man
[03:40:49] <toast> nothing quite sounds like a spindle that is running away
[03:40:58] <Skullworks-PGAB> It was heading for 7000 rpm with a 4000 rpm rated 12" chuck
[03:41:09] <toast> damn
[03:41:11] <toast> you lucked out
[03:41:13] <Skullworks-PGAB> before it blew the mains breaker
[03:41:46] <toast> that was lucky
[03:41:57] <toast> i don't think the enclosure can stop the jaws off a 12" chuck
[03:42:03] <toast> much less the chuck itself
[03:42:15] <Skullworks-PGAB> had half the building come to see what all the noise was
[03:42:46] <toast> hahah
[03:42:48] <toast> what did it sound like
[03:42:54] <toast> like a spooling turbine?
[03:44:30] <Skullworks-PGAB> well a few years back a guy crashed the same machine - Z workshift was to be 115.0mm and he put in -115.0 - rammed the turret into the face of the chuck and took almost 1/2" off the chuck face after tearing the jaws off
[03:45:00] <toast> ouch
[03:46:02] <Skullworks-PGAB> they had to remove all the sheetmetal starting from the back because the door was so exploded - and take it all apart to get the door off/open
[03:46:22] <Skullworks-PGAB> repairs cost over $40K
[03:46:48] <skinnypuppy34> ouch !
[03:51:50] <toast> jesus.
[03:56:49] <toast> toast is now known as toastydeath
[09:31:13] <alex__> alex__ is now known as TheBall
[12:21:36] <skunkworks> * skunkworks wonders if fenn has seen jros's videos
[12:34:01] <fenn> * fenn looks
[12:36:02] <fenn> looks like a ufo hovering
[12:37:13] <alex_joni> heh
[12:39:32] <fenn> they sure dont move it very far
[12:41:16] <fenn> i'm working on a hexapod visualization with vismach.py
[12:41:32] <fenn> right now i've got a cylinder tracking the mouse through hal_input
[12:41:53] <alex_joni> did you look at pumagui.py ?
[12:43:10] <fenn> yes
[12:43:40] <fenn> there's a lot of fiddly business with the order you build stuff and where to call Capture()
[12:43:51] <alex_joni> right
[12:44:15] <fenn> and it took a while to figure out i forgot to put tool_coords into the main loop call
[12:44:26] <fenn> so now i need to implement a PointAt transform
[12:44:41] <fenn> to connect the struts to the platform
[12:45:11] <fenn> then i can just grab the current tool tip position and move the platform to there
[13:25:09] <fenn> halui should export cartesian commanded and actual positions
[13:33:06] <alex_joni> why should halui do that?
[13:33:18] <alex_joni> I wanted initially to do that.. but it should be available from motion
[13:35:39] <alex_joni> bbl
[13:40:41] <fenn> well, what i really would want is cartesian commanded and actual from each kinematics module
[13:41:02] <fenn> and motion just exports cartesian commanded instead of joint.*
[13:41:32] <fenn> then you can feed other stuff into kinematics from hal
[13:41:45] <fenn> beyond just teleop velocity commands
[13:43:23] <fenn> the reason i said halui is because i'm doing a gui-ish thing and i figured that whatever hal module does it would have to use NML to get those values
[13:58:23] <cradek> http://translate.google.com/translate?u=http%3A%2F%2Fwww.imac.unavarra.es%2Fparallel%2Femc2.php&langpair=es%7Cen&hl=en&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools
[13:58:31] <cradek> I think they like EMC
[14:06:05] <skunkworks> :) why wouldn't they? I think the only people that don't like emc - have not tried it ;)
[14:35:13] <fenn> i just noticed that teleop acts rather strange around the edges of the work envelope
[14:35:48] <fenn> for example in hexapod-sim, when z is near zero, both page up and page down cause z to go negative
[14:36:11] <fenn> instead it should say 'reached soft limit' i think
[14:53:01] <fenn> maybe this is just how hexapod kins behaves
[14:54:08] <fenn> for some reason when i command g0 z0 it thinks its at z=20
[14:54:24] <skunkworks> is that the issue where there is more than one solution per position?
[14:54:36] <skunkworks> from the rev/forward kins
[14:54:49] <cradek> wonder if the guys at unavarra made their updated kins available
[14:54:53] <skunkworks> * skunkworks really doesn't understand it very well.
[14:56:37] <fenn> skunkworks: something like that. i think its in a co-planar configuration at z=0
[14:56:51] <fenn> and the kins code doesnt know how to 'flop'
[14:57:03] <fenn> i dont get where the 20 comes from though
[14:58:59] <fenn> something to do with home position
[14:59:14] <skunkworks> there was an list email from ray talking about kins on a big machine. sounded like the solved the problem by picking the kins solution that was closest to the last position.
[14:59:24] <skunkworks> iirc
[15:00:07] <fenn> yeah but its nowhere near home position
[15:07:07] <fenn> there are some other problems with hexapod kins that i'll have to fix somehow - offsets for cardan joints and account for linear motion when you rotate a nut around a screw
[15:09:27] <fenn> since a cardan joint doesnt rotate around a point like a spherical joint does
[15:10:06] <fenn> hm. actually maybe it does sometimes
[16:06:08] <alex_joni> cradek: not that I know..
[16:06:51] <alex_joni> fenn: I think the kins usually have a flag to remember which of the multiple solution is appropriate
[16:06:59] <alex_joni> at least it does that for puma
[16:17:55] <fenn> the code is pretty crusty and definitely not newbie-friendly :)
[16:18:37] <alex_joni> fenn: it's not necessarely a place to beautify code at the expense of performance
[16:21:33] <fenn> part of it is i'm hacking on python right now and its just toooo easy
[16:28:07] <CIA-8> 03fenn 07TRUNK * 10emc2/lib/python/vismach.py: added Scale/HalScale for a visualization i was doing
[16:47:41] <fenn> i think kins returns the starting position if it cant find a solution
[17:12:48] <fenn> what sick EE designed that laser with 24V 16 bit BCD..
[17:13:39] <SWPadnos> probably the same sick EE who originally used thimbwheel-type switches to set the power digitally
[17:13:43] <SWPadnos> thumbwheel
[17:38:01] <skunkworks> wait - so I can setup emc so that I can used thumbwheels to do mdi input?
http://www.electronicsam.com/images/KandT/conversion/frntcontroller.JPG
[17:39:41] <SWPadnos> sure, if you have enough I/Os ;)
[17:39:50] <SWPadnos> just use weighted_sums on each wheel
[17:40:00] <SWPadnos> (you may need to increase the max number allowed)
[17:40:04] <skunkworks> heh
[17:40:45] <skunkworks> Thats what I need is tons of contacts that can get dirty - No, I ment Z10.3 not Z0.3
[17:40:48] <SWPadnos> and I think you'd need two Mesa cards (the 5i22, with 4 connectors) for all those
[17:41:21] <SWPadnos> or just one bad bit - in the top digit: Z80.0000
[17:42:03] <Roguish_> good mornign. which kins is appropriate for a 5 axis machine? 3 regular translation + 2 rotational on the z for a spindle?
[17:42:35] <SWPadnos> probably trivkins
[17:42:57] <SWPadnos> but you need to use a CAM post for the geometry of the machine
[17:43:13] <SWPadnos> err - that knows the geometry of the machine
[17:43:18] <Roguish_> oh yeah. mastercam.
[17:43:34] <CIA-8> 03alex_joni 07TRUNK * 10emc2/tcl/ (TkEmc tkemc.tcl): fix handling of 9-axes
[17:43:53] <Roguish_> what is the 5i22?
[17:44:02] <SWPadnos> a newer version of the 5i20
[17:44:15] <SWPadnos> it has 4 connectors, and a 1M or 1.5M gate Spartan 3 chip
[17:44:24] <SWPadnos> instead of 200k Spartan 2
[17:44:29] <Roguish_> same driver? or new driver?
[17:44:36] <SWPadnos> no driver at the moment
[17:44:46] <Roguish_> in the works?
[17:44:48] <alex_joni> shouldn't the old one run?
[17:44:51] <CIA-8> 03alex_joni 07TRUNK * 10emc2/tcl/TkEmc: revert default fontsize, didn't mean to change it
[17:44:56] <Roguish_> emc2.2?
[17:45:08] <SWPadnos> I have several of the cards for a different project, but once that's done, I'll be working on the new driver
[17:45:32] <SWPadnos> alex_joni, I don't know. haven't tried. I think not, because the driver looks for the PCI IDs of the 5i20, which are different from the 5i22
[17:45:47] <SWPadnos> also, it has the bitfile built in, which is wrong for the other chip
[17:46:10] <alex_joni> oh, right
[17:46:37] <Jymmmm> "I knew that"
[17:46:38] <SWPadnos> jmk and I have gotten the new driver utilities to work with the 5i22 - I use bfload daily :)
[17:47:12] <SWPadnos> I have a hostmot config that loads on the 5i22 as well (from PeteW), and it has tons of stuff in it
[17:47:31] <Roguish_> such as?
[17:47:50] <SWPadnos> it's just impossible to map the functionality into HAL very well. The config is very configurable, but HAL drivers are not - as far as exported pins go
[17:48:19] <SWPadnos> oh, how about 12 stepgens, 12 PWMgens, 6 quad counters, 6 SPI ports, and 6 serial ports?
[17:48:36] <SWPadnos> also, all bits can be used as I/O or as the special functions (so you can have just 96 I/Os if you want)
[17:48:44] <Roguish_> so like a 12 axis setup?
[17:48:56] <SWPadnos> pretty much, except you'd need more quad counters :)
[17:48:58] <alex_joni> 6 counters
[17:50:20] <SWPadnos> oops - only 4 SPI and 4 serial ports
[17:50:30] <SWPadnos> but that's pretty easy to reconfigure
[17:50:51] <Jymmmm> oh forget it then, MUST have 256 serial ports!
[17:51:02] <Roguish_> to run a 5 axis (really 6 'cause it's a gantry) go with a 5i22 or dual 5i20's?
[17:51:19] <SWPadnos> good question
[17:51:36] <SWPadnos> the two 5i20's will cost about the same as a 5i22-1M
[17:51:44] <SWPadnos> but you'll get 6 I/O connectors
[17:51:56] <Roguish_> ?
[17:52:10] <SWPadnos> then again, a single 5i22 has 4 connectors, and 2.5x as many FPGA gates as the two 5I20s combined
[17:52:21] <SWPadnos> 3 each on two boards = 6 total
[17:53:31] <Roguish_> and emc2's configs?
[17:53:48] <SWPadnos> assuming that there are drivers for both boards, that doesn't matter much
[17:53:56] <Roguish_> emc2.2.0?
[17:54:17] <Jymmmm> alex_joni: Yes you just got hitched recently, but lesson 1 of the parenting handbook...
http://news.yahoo.com/s/ap/odd_joy_ride;_ylt=AjcHP9t2LevGwYurz5FdZ5XtiBIF
[17:54:19] <SWPadnos> the only thing that would matter is that you would have two update functions running in the dual 5i20 case, which takes a little more time
[17:54:33] <SWPadnos> no, this will not be in 2.2.0, as far as I know
[17:54:57] <SWPadnos> it may come later, because we're allowing new drivers and modules to be added to the release branch in the 2.2 series (I think)
[17:55:27] <Roguish_> refering to the 5i22?
[17:55:31] <SWPadnos> yes
[17:55:39] <SWPadnos> you can use multiple 5i20 now, I think
[17:56:04] <Roguish_> there's been discusison on that in some of the mailing.
[17:56:05] <SWPadnos> I think you may have to pre-load the FPGA configs using a utility, and tell the driver not to re-load it
[17:57:07] <Roguish_> thanks for the info.
[17:57:20] <SWPadnos> sure. (I hope it's correct ;) )
[17:57:44] <Roguish_> gotta cobble together a simple gantry system and work out gantrykins.
[17:58:00] <Roguish_> and simple homing.
[17:58:36] <SWPadnos> I think that will be easier in 2.2.0
[17:58:43] <fenn> how is it that the 5i20 doesnt have enough i/o for a 5 axis system? am i confused?
[18:00:01] <SWPadnos> it just doesn't have enough hardware PWMs
[18:00:14] <fenn> what about a 'firm' pwm?
[18:00:37] <SWPadnos> the 7i33 (?) uses one full connector for 4 axes, so you get 4 or 8 (or 12), but if you need 6, you lose the 24 I/Os on the second connector
[18:00:44] <fenn> basically a counter and a comparator
[18:01:05] <SWPadnos> if you want to do custom FPGA configs, then of course you can do it
[18:02:14] <fenn> well, slow i/o is much cheaper than buying extra 5i20's
[18:02:26] <skunkworks> I thought the plan with what jmk was working on was a swiss army knife controller. able to setup whatever you wanted for each pin. Or not?
[18:02:29] <SWPadnos> you still need the fast quadrature inputs
[18:02:44] <fenn> skunkworks: that's what it looked like to me
[18:02:55] <SWPadnos> yes, that's in the works, and will support all 3 flavors
[18:03:20] <SWPadnos> it's not quite "any function on any pin", but it is more flexible than "I/O or an alternate function" like the 5i20 has now
[18:03:37] <SWPadnos> it's more like "pick one of these four or eight functions for each pin"
[18:05:59] <Jymmmm> SWPadnos: HW PWM's? is different from programming some in the FPGA?
[18:06:09] <SWPadnos> no
[18:06:35] <SWPadnos> well, sort of. once you stick something in the FPGA, it's hardware. whether you call it hardware or firmware is up to you
[18:06:42] <Jymmmm> k
[18:07:01] <Jymmmm> So why not more PWM's on it? limitation of ________________
[18:07:36] <SWPadnos> limitation of "it's not in the FPGA code that's used in the current driver"
[18:08:16] <SWPadnos> the card has 96 I/Os, and I think there may be enough gates to do 48 PWMs, using all the pins (PWM+dir or up/down)
[18:08:18] <Jymmmm> Ah, so limitation of current design, not a REAL limit has been reached
[18:08:32] <SWPadnos> err - the 5i20 is only 72 IOs, so that would be a limitation of 36 PWMs
[18:08:33] <CIA-8> 03alex_joni 07TRUNK * 10emc2/src/emc/usr_intf/emcsh.cc: fix for UVW axes
[18:08:54] <Jymmmm> gotcha
[18:09:04] <SWPadnos> right - the question wasn't "what can the card do", it was "what can I do with the current driver"
[18:09:19] <SWPadnos> (and the current driver assumes, and loads, a particular FPGA config)
[18:09:49] <Jymmmm> SWPadnos: Can't one lego block an FPGA?
[18:09:55] <SWPadnos> no
[18:10:05] <Jymmmm> damn coders!
[18:10:09] <Jymmmm> ;)
[18:10:23] <Jymmmm> "Drag and Drop FPGA!!!"
[18:10:30] <SWPadnos> at least, not in any general sense. you can't do the equivalent of dynamic linking on bitfiles
[18:10:47] <SWPadnos> Jymmmm, let me introduce you to LabView FPGA
[18:11:03] <jepler> SWPadnos: your favorite piece of software in the whole world, right?
[18:11:04] <alex_joni> SWPadnos: you forgot to mention something
[18:11:07] <Jymmmm> SWPadnos: No thanks, I only want their robot arm (to play with)
[18:11:11] <SWPadnos> yeah yeah, which I hate
[18:11:36] <alex_joni> you said that surprisingly seldom in the last few months
[18:11:44] <SWPadnos> which manages to use 1.5 million of the 3 million available gates (in a virtex chip no less) to interface to fewer I/Os than a Mesa has, and still can't get loop rates above a few hundres Hz
[18:11:47] <Jymmmm> * Jymmmm lol @ alex_joni
[18:11:59] <SWPadnos> hundred
[18:12:31] <Jymmmm> can anyone else get here:
http://www.silicondust.com/zxc/content/view/5/26/
[18:12:49] <SWPadnos> whereas I have a 5i22-1.5M, interfacing to two 6-channel ADCs (plus I/O on any pin), scanning at 200KHz+, and using less than 10% of the gates in the chip
[18:13:39] <fenn> Jymmmm: no
[18:13:44] <Jymmmm> fenn: ty
[18:14:43] <Jymmmm> Anyone seen anything else like this?
http://www.dvrplayground.com/article/13944/
[18:15:16] <Jymmmm> I'm looking for HW based IPTV boxes
[18:19:24] <ds2> Jymmmm: hey, did replacing that bad part in your setup fix your stepper stalls?
[18:19:42] <Jymmmm> ds2: what bad part?
[18:19:58] <SWPadnos> the operator
[18:19:58] <ds2> Jymmm: that mount with the croaked bore I think
[18:20:11] <Jymmmm> SWPadnos: (I wish)
[18:20:16] <SWPadnos> uhh - I meant hte X axis ball nut mount
[18:20:26] <Jymmmm> ds2: Can't replace it, needs to be machined
[18:20:38] <ds2> Jymmm: have you done the remachining yet?
[18:20:54] <Jymmmm> ds2: Only 100 more hours of sanding to go
[18:21:01] <ds2> ah okay
[18:21:17] <Jymmmm> s/100/1000000000000000000000/
[18:21:19] <ds2> was hoping to get an indication if system tuning on a stepper is worthwhile
[18:21:40] <ds2> and I figured you were further down that road; prehaps enough to get a good indication
[18:21:42] <Jymmmm> ds2: you got some parker drives?
[18:21:53] <ds2> Jymmm: nope.
[18:22:04] <Jymmmm> ds2: what are you tuning, geckos?
[18:22:07] <ds2> I'm adding a 4th axis and it seems to stall with any motion
[18:22:20] <ds2> Jymmm: The stock taig drive
[18:22:28] <Jymmmm> ds2: did you swap out motors or drives by chance?
[18:22:44] <Jymmmm> A to x as example
[18:22:52] <ds2> Jymmmm: no, the 4th axis is all new... X/Y/Z are tolerable
[18:23:05] <ds2> Jymmm: I can't swap between A and X
[18:23:34] <ds2> at least not w/o a lot of work; seems taig loctited a lot of their motor coupler screws together
[18:24:05] <ds2> I suppose it may just be a preception thing, the 4th axis does have a worm reduction
[18:25:24] <Jymmmm> ds2: how fast are you thing to run it?
[18:25:31] <Jymmmm> ds2: how fast are you trying to run it?
[18:25:53] <jepler> fenn: how is pete v.'s trick any different from 'placement new' which is built into C++?
http://www.parashift.com/c++-faq-lite/dtors.html#faq-11.10
[18:26:45] <fenn> jepler: you're asking the wrong guy :)
[18:26:46] <ds2> Jymmm: short answer is "I don't know" - I just figure it should have a edge (a 4inch RT) speed comparable to the speed on any of the linear axis
[18:27:08] <Jymmmm> ds2: Gotcha.
[18:27:17] <ds2> the long answer is I am still using the taig supplied dos software which I haven't figured out how to change the steps/degree thing
[18:27:41] <Jymmmm> ds2: You mean TurboCNC?
[18:27:49] <ds2> Jymmm: no. MSP2007
[18:28:24] <ds2> I'd switch over to EMC but I am waiting to finish my new stand for it so I can have a monitor that next to it that can last more then 1 milling session ;)
[18:28:39] <ds2> right now it is on a crummy laptop that seems to be taking the chips in stride
[18:29:08] <Jymmmm> ds2: I can't find software on their website
[18:29:21] <ds2> Jymmm: you can't download it... it comes on a floppy
[18:29:40] <Jymmmm> ds2: Then how do you update it?
[18:29:46] <ds2> Jymmmm: you don't!
[18:30:14] <ds2> hence the strong need to move to a better controller; but the desire to be able to make parts in the mean time has kept me on that thing
[18:30:19] <fenn> jepler: i think the difference is that pete's code allocates new memory as normal, but then it doesn't get de-allocated when the class destructor is called, so you end up using the same piece of memory over again (and you dont have to specify where to put it the first time around)
[18:30:19] <Jymmmm> ds2: have you tried Turbocnc?
[18:30:40] <fenn> jepler: but i'm really foggy on most of this stuff
[18:32:30] <ds2> Jymmmm: no... should I?
[18:32:42] <ds2> I thought of TurboCNC but then figured, time is better invested in EMC2
[18:32:58] <Jymmmm> ds2: It's DOS too, as long as you have hdd space, can't hurt anything
[18:33:41] <ds2> Jymmmm: that crummy laptop is there cuz the IDE controller is blown so it'll be a floppy job if I try it
[18:34:05] <fenn> turbocnc sucks
[18:34:17] <fenn> i used it and was appalled
[18:34:32] <Jymmmm> ds2: it's 342KB
[18:34:51] <ds2> fenn: in what way? does G01/G00/G03/G02 work?
[18:35:25] <fenn> it doesn't blend arcs, so it stops at every arc
[18:35:35] <fenn> this is a problem when you're doing a contoured surface
[18:35:37] <ds2> Jymmmm: I could try it but from your experiences, isn't stepper stalling more of a physical problem then software?
[18:36:01] <Jymmmm> ds2: Yes, but at least I can tell you where to change settings in it =)
[18:36:07] <ds2> oh that's fine... TurboCNC would just be a intermediate til I can get EMC in there with the proper chip shielding
[18:36:12] <ds2> Jymmmm: oh hahah
[18:51:07] <ds2> what do most people use a chipshields around a mill? plexi/acrylic or polycarbonate?
[18:51:31] <Jymmmm> use polycarb, not acrylic
[18:51:54] <anonimasu> why not?
[18:52:05] <Jymmmm> cracks as easily as glass
[18:52:07] <SWPadnos> polycarbonate is much more abrasion-resistant
[18:52:15] <anonimasu> ah
[18:52:32] <Jymmmm> as a matter of fact, you cut acrylic just like glass..... score and snap
[18:52:53] <Jymmmm> polycarb is more impact resistant too
[18:53:23] <ds2> will the polycarb be frosted with scratches after a few runs on the mill spraying chips at it?
[18:53:36] <Jymmmm> till you wipe off the chips =)
[18:53:57] <ds2> cool
[18:54:29] <Jymmmm> ds2: I say polycarb from a safety standpoint compared to acrylic (not to mention a bit cheaper)
[18:54:55] <skinnypuppy34> Polycarb great, you can wipe mud off your cycle visor and not be very scratched at all
[18:54:59] <Jymmmm> ds2: not flying chips, but flying broken tooling
[18:55:11] <ds2> uh.... cheaper?
[18:55:15] <cradek> there's a reason they make classes from polycarbonate (and it sure isn't the optical quality)
[18:55:30] <SWPadnos> glasses too
[18:55:31] <ds2> where? polycarb is about 1.5-2.0x more expensive when I got it last time at OSH
[18:55:39] <cradek> right, even glasses
[18:55:54] <Jymmmm> ds2: you're buying from OSH, of course it's more expensive =)
[18:56:02] <ds2> I've had some badly scratched safety glasses so...
[18:56:14] <Jymmmm> ds2: but you can still see, can't ya =)
[18:56:15] <fenn> they make glasses out of it because it's lighter
[18:56:15] <ds2> Jymmm: that's relative to acrylic (plexi)
[18:56:20] <SWPadnos> you would have had badly scratched eyes if the glasses had been acrylic
[18:56:20] <cradek> I should get some safety glasses
[18:56:34] <cradek> * cradek heads for a tangent that nobody else cares about
[18:56:36] <fenn> polycarbonate needs scratch-resistant coating
[18:56:46] <cradek> fenn: I think that's not true
[18:56:57] <fenn> if you're making glasses out of it
[18:57:08] <fenn> it's practically bullet resistant in all forms though
[18:57:28] <ds2> Jymmm: got a better source? tap doesn't have polycarb often in their cut offs
[18:57:31] <SWPadnos> polycarb is very puncture-resistant (it's lexan, which is touted as unbreakable), but it does need coatings for scratch resistance
[18:57:31] <skunkworks> we buy ge lexan with a scratch resistant coating only if the customer wants it.
[18:57:44] <Jymmmm> ds2: wuit being a cheap bastard!
[18:57:51] <Jymmmm> ds2: how much you need?
[18:58:11] <anonimasu> hehe
[18:58:14] <cradek> bare polycarb is more scratch resistant than CR-39 with a scratch-resistant coating (eyeglasses)
[18:58:18] <anonimasu> I have some margard
[18:58:19] <ds2> probally a total of 2'x4' but it can be in small sheets
[18:58:23] <anonimasu> marguard..
[18:58:24] <anonimasu> I think
[18:58:37] <anonimasu> for my shields at work
[18:59:04] <Jymmmm> ds2: you want polycabr or lexan?
[18:59:04] <ds2> Jymmm: I need/want a enclosure for the mill as I get chips 4-5 feets away
[18:59:05] <ds2> Jymmm: polycarb should be fine
[18:59:16] <ds2> s/eets/eet/
[18:59:36] <fenn> go dumpstering at a plastics distributor
[19:00:22] <skinnypuppy34> Ha, I've got a nutty friend that calls it the "green store"
[19:00:25] <fenn> even if you dont find polycarbonate there's bound to be something good
[19:00:28] <Jymmmm> ds2: thinkness?
[19:00:28] <ds2> 4 years ago, they were fine with that... as of 1 year ago, they were unhappy about it
[19:01:07] <ds2> Jymmm: I think either 1/8 or 3/32 stuff should be fine... normally tooling is 1/4" dia so the chips aren't too bad and that should tolerate a one time blast from a broken tool
[19:01:32] <ds2> Jymmmm: worse come to worse, I'll get more 8x11" panes from osh
[19:01:33] <Jymmmm> ds2: Lexan .125" 24x48" $24.45
[19:01:41] <Jymmmm> err $34.45
[19:01:41] <ds2> Jymmmm: tap or ?
[19:04:19] <Jymmmm> Polycarb, glazing grade .125" x 24" x 48" $32
[19:09:10] <ds2> but where
[19:30:17] <tomp> pier's dxf2g new code announced today on freshmeat... tarball at
http://pier.unirc.eu/software/dxf2G.tgz thanks pier :)
[19:47:40] <alex_joni> bbl
[20:55:03] <davidf> hey
[21:09:24] <davidf> tomp, got a link for dxf2g?
[21:09:44] <tomp> http://pier.unirc.eu/software/dxf2G.tgz
[21:09:55] <davidf> tomp, thanks!
[21:10:37] <tomp> tu psrle Italiano? ;)
[21:10:45] <tomp> parle
[21:14:37] <davidf> tomp, Yes I can say "Italiano" other than that, I'm illiterate. :)
[21:15:12] <skunkworks> * skunkworks can barely handle one language
[21:16:20] <SWPadnos> I can say "Cappuccino" and "espresso" also
[21:16:39] <SWPadnos> actually, if you only count ordering coffee, I think I know about 6 languages ;)
[21:16:46] <Jymmmm> SWPadnos: it's food, of course you can.
[21:18:41] <SWPadnos> of course
[21:18:51] <SWPadnos> hmmm. that makes me hungry
[21:18:58] <Jymmmm> SWPadnos: and I wouldn't expect anythign less from you either =)
[21:19:10] <SWPadnos> of course not!
[21:19:13] <tomp> how long would a 7meg xfer take at 115200? ( i got a synce-serial xfer using ttyS0, and i cant get any idea of how long it will be before i can go to the bathroom :(
[21:19:34] <SWPadnos> 115200 / 10 = 11520 bytes/second
[21:19:52] <SWPadnos> ~10 minutes
[21:20:23] <tomp> thx, saved me from getting out the calql8r ... bye >now<
[21:21:01] <Jymmmm> SWPadnos: /10 ?
[21:21:21] <Jymmmm> oh nm
[21:22:12] <tomp> oh, when all done it gets chatty "File copy of 6819656 bytes took 11 minutes and 7 seconds, that's 10224 bytes/s."
[21:22:41] <Jymmmm> ((filesize in bytes/8)/bitrate in seconds)/(60*60) = minutes
[21:23:09] <SWPadnos> filesize/10, this is serial with start and stop bits
[21:23:22] <SWPadnos> err - *10
[21:23:23] <Jymmmm> ah, forgot about them.
[21:23:31] <dmess> hi all
[21:23:36] <Jymmmm> RAW baby, RAW!
[21:23:45] <SWPadnos> ethernet also has overhead ;)
[21:23:51] <Jymmmm> 40%
[21:24:24] <Jymmmm> well tcp/ip
[21:24:34] <SWPadnos> only if you use very small packets
[21:24:55] <SWPadnos> ethernet frames themselves are required to be >= 64 bytes in length, and 19 of those are framing information
[21:24:57] <Jymmmm> raw transfer for sheer speed test
[21:25:06] <SWPadnos> but it's the same 19 bytes for a 64k packet as well
[21:25:19] <SWPadnos> (if your MTU can go that high)
[21:25:51] <Jymmmm> Internally too lazy to check, externally 1470
[21:26:03] <Jymmmm> fscking dsl and pppoe
[21:26:28] <tomp> oh, i got some communications with the labjack and hal vis python
[21:26:31] <tomp> .. very messy... setup a stackframe, call a few checksums for parts of the frame, call a write, call a read, examine a returned array.... different data for each type of query or config
[21:26:41] <alex_joni> good night all
[21:26:49] <skunkworks> night alex
[21:26:52] <tomp> nite
[21:27:12] <SWPadnos> see you Alex
[21:32:45] <davidf> Anyone using Cad Expert? Is it worth the dough?
[21:33:00] <davidf> Cam Expert that is.
[21:34:25] <skunkworks> bbl
[21:43:27] <Jymmmm> Isn't there something under nix that has wordlists? Like words that beign/contain the leeter Z (as example) that I can view (not just search for)?
[21:43:57] <ds2> i.e. /usr/share/dict/words?
[21:46:04] <Jymmmm> ok, how about something that has verbs, nouns, etc?
[21:46:36] <ds2> sorted by v/n/etc?
[21:46:46] <Jymmmm> kinda, yeah
[21:47:01] <ds2> don't think there is anything like that
[21:48:15] <tomp> nice twist on rack&pinion ...
http://www.nexengroup.com/rps/ a roller rack
[21:49:52] <SWPadnos> like a gear train
[22:54:25] <Ziegler> http://xkcd.com/327/ << heh
[23:01:39] <SWPadnos> http://xkcd.com/325/
[23:02:33] <eric_u> I have an infrared camera at work, if you lie on the floor for a few minutes, there is a heat image there for about 1/2 hour
[23:02:46] <eric_u> good trick for lab tours
[23:08:02] <SWPadnos> hmmm. too bad it leaves evidence when you nap on the job
[23:09:35] <Ziegler> heh
[23:10:28] <SWPadnos> http://xkcd.com/310/
[23:11:10] <Ziegler> about 6 months ago... I managed to actually go through them all
[23:11:29] <Ziegler> I came out acting quite nerdy the rest of theday
[23:11:38] <Ziegler> well more so than usual
[23:11:44] <SWPadnos> heh
[23:48:42] <skunkworks> hmm - an extra 512mb of ram makes the wifes laptop usable again.
[23:48:57] <Ziegler> nice isnt it
[23:49:25] <skunkworks> very
[23:49:32] <skunkworks> no more complaining I hope. :)
[23:53:38] <jmkasunich_> jmkasunich_ is now known as jmkasunich