Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread andy pugh
On 11 May 2015 at 03:18, Gene Heskett ghesk...@wdtv.com wrote:
 But now I am back to the G7/G8 diffs which are costing me money

I don't think that anything has changed there. But youmay be seeing
differences related to starting from scratch.
(I don't _know_ that nothing has changed, but I can't see any reason
that it would)

What you have seen is probably related to touching off a diameter in
radius mode, then moving to a diameter in diameter mode.
(Imagine the tool is at a radius of 25mm and a diameter of 50, you are
in radius mode, touch off 50mm, the machine assumes you mean 50mm
radius / 100mm Dia.
When you switch to Diameter mode and G0 X50 the machine _thinks_ it is
at 100mm dia so plunges 25mm inwards to what is actually 0mm dia)

Do you use a reference tool or do all tools have an offset? I seem
to recall you use some form of touch-off plate.

I think you might need to do some tool-changing, jogging about and
switching between modes to see where you are (and also check the tool
table entries).

The exceeds limits thing can probably be cleared by touching off
again to the right diameter in the right mode.

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton
Is there a feature in Master that you need to run?

When I'm not sure if I touched off correctly I do a chicken check by 
jogging the tool to a point I know what the DRO should read and see if 
the DRO is correct.

AFAIK machine limits are in machine units and it won't matter if your in 
G7 or G8.

As I said before as you type in the first number in the touch off box it 
immediately tells you if your in diameter or radius mode on the next 
line below the box where you enter the number. You can also look at the 
Active G-Codes: box and see if your in G7 or G8 and if your not where 
you expect change it in the MDI Command.

JT

On 5/10/2015 9:18 PM, Gene Heskett wrote:
 Hello all;

 First, ther good news, all that fussing about not finding a bunch of
 stuff in the DEFAULTS section, without even specifying the file it
 expected to find them in, are apparently an artifcat of running it for
 the first time.  2.8.0-pre1 has not made a peep aboiut it since.

 But now I am back to the G7/G8 diffs which are costing me money.

 This program, which looks great in the back plot, proceded to drive the
 carriage to half the diameter on the first loading, smashing the insert
 and unscrewing the QC toolpost  generally raised hell.

 So I eventually killed LCNC, and when I had restarted it, and reloaded
 the code, now refuses to run because x maximum exceeds the machine
 limits.  Those are set .1mm short of the homing switch, which itself is
 aboput .1mm from the maximum backup x can do on this toy, at about 67mm
 from the centerline.

 What I can see in the debug statements says it isn't so. x max is
 nominally 1/2 that limit as set in the .ini file.  And the backplot
 image is exactly what I want it to do.

 The program:
 ===
 G7 (diameter mode dammit)
 #_x_start_dia   = 32.300 (x at left z DIAMETER)
 #_z_start   = 105.50
 #_x_taper   = .32000 (in mm's, measured taper compensation 
 needed)
 #_z_left= 0.000
 #_x_end_dia = 21.00 (x at left z, DIAMETER)

 o100 sub
 (debug,8 x to [#_x_tmp + #_x_taper])
 G1 F20 x[#_x_tmp + #_x_taper]
 G1 F7 z#_z_left x#_x_tmp
 G1 F48 z#_z_start x[#_x_tmp + #_x_taper]
 o100 endsub

 S250
 M3
 #_x_diff= [#_x_start_dia - #_x_end_dia] (is plus value, 11.3000)
 (debug,15 x_diff=#_x_diff)
 #_x_dec = [#_x_diff / 30.000]  (so this s/b too)
 (debug,17 x_dec=#_x_dec)
 #_x_tmp = #_x_start_dia (init at 32.3)

 o200 while [#_x_tmp gt #_x_end_dia] (true till x is below end)
 #_x_tmp = [#_x_tmp - #_x_dec]  (dec x_tmp by x_dec)
 o100 call
 o200 endwhile

 M5
 M2
 ===
 Bug?  Or one of my (in)famous typo's?

 Thanks guys.

 Ugly thought, if running in G7 mode, do I need to set the axis 0
 max_limit to a diameter?  It is currently stated in radius. 67mm's from
 centerline. Or 114mm diameter.

 Cheers, Gene Heskett


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread andy pugh
On 11 May 2015 at 11:52, John Thornton j...@gnipsel.com wrote:
 You can also look at the
 Active G-Codes: box and see if your in G7 or G8 and if your not where
 you expect change it in the MDI Command.

You can also see if the expected number changes in the DRO afterwards too.

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett


On Monday 11 May 2015 06:30:26 andy pugh wrote:
 On 11 May 2015 at 03:18, Gene Heskett ghesk...@wdtv.com wrote:
  But now I am back to the G7/G8 diffs which are costing me money

 I don't think that anything has changed there. But youmay be seeing
 differences related to starting from scratch.
 (I don't _know_ that nothing has changed, but I can't see any reason
 that it would)

 What you have seen is probably related to touching off a diameter in
 radius mode, then moving to a diameter in diameter mode.
 (Imagine the tool is at a radius of 25mm and a diameter of 50, you are
 in radius mode, touch off 50mm, the machine assumes you mean 50mm
 radius / 100mm Dia.
 When you switch to Diameter mode and G0 X50 the machine _thinks_ it is
 at 100mm dia so plunges 25mm inwards to what is actually 0mm dia)

 Do you use a reference tool or do all tools have an offset? I seem
 to recall you use some form of touch-off plate.

Not since I put homing switches on it. What I am doing now is the auto 
home, where the x switch is on the front of the saddle set at about .1mm 
from the max out travel of a hair over 67mm.  The switch will not be 
damaged if it comes all the way to the end of the slot in the carriage.
From the [AXIS 0] ini file:

MIN_LIMIT = -2.5
MAX_LIMIT = 67.0
HOME_OFFSET = 67.783
Those are stated in radius.
So the bring up procedure is to do an autohome without a tool mounted as 
the x will be zero'd  left at switch open, which gives clearance even 
with a workpiece mounted, for it to go left and find the z switch which 
is about 57mm from hitting the chuck.  And it parks about 25mm to the 
right of the switch.  Since I had already cut the rust off the 
workpiece, I next drive the mounted tool so that it is sitting in gentle 
contact with the left end of that cut, touch-off z to 0.0, and measure 
the OD, in this case 32.3mm, and touch off x, redoing it if the DRO 
diameter isn't correct.  The DRO diameter was showing 32.30.

 I think you might need to do some tool-changing, jogging about and
 switching between modes to see where you are (and also check the tool
 table entries).

Tool table not involved, default arrow showing in the backplot.

For me to make use of the tool table, I've have to get another $200 in 
tool holders so I could permanently mount and measure them all.  I only 
have the basic kit of the smallish steel one. OXA series IIRC.  Each 
holder is about $14 and I'd need another half a dozen, and the boring 
bar holder is $22  I'd need about half a dozen of those.  My BIG bar is 
a 5/8 diameter that I made a clamp for, but that also leads to buying  
fitting more compound-slides as it can and has ripped threads out of the 
top, 10mm threads.  I have been tempted to replace the compound with a 
steel square of the same height but haven't found my round tuit for tht 
job yet.   Its (the OXA) about 10x more rigid that the alu versions that 
use the push button driven by a cam to lock a fixed V. The OXA moves the 
wedge up and down on a ramp on one side, much better grip.

 The exceeds limits thing can probably be cleared by touching off
 again to the right diameter in the right mode.

I'm going to give it another shot later today, but with the whole 
toolpost on the table beside the keyboard this time.  But first I need 
to take the owners manual and go see if I can find a deck drive belt 
thats about an inch shorter for my 23 yo Craftsman rider.  Its an MTD 
under the paint of course, but by the time the deck is leveled ack the 
book, the belt tends to come off, climbing above the engine pulley when 
disengaging.  And its a right pain in the ass to restring the thing if 
you don't have a lift that lets you work from the bottom. I think by now 
the pulleys (and deck suspension stuff) are worn bad enough an inch 
shorter belt is the cure.

That and call Orkin to get rid of a termite nest in the underpinnings of 
my shops front deck we found late Friday night while replacing the dry 
rotted flooring.

First things first IOW.

Thanks Andy.

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread andy pugh
On 11 May 2015 at 15:07, Gene Heskett ghesk...@wdtv.com wrote:
 I next drive the mounted tool so that it is sitting in gentle
 contact with the left end of that cut, touch-off z to 0.0, and measure
 the OD, in this case 32.3mm, and touch off x, redoing it if the DRO
 diameter isn't correct.  The DRO diameter was showing 32.30.

This sounds a fair bit like what I do, so ought to work.
It only goes wrong for me when I forget that I am in in radius mode
(generally only after breaking out of a routine that changes mode, or
at first power on).

I have just had the idea that a G7 in this line (and in 2456)
http://git.linuxcnc.org/gitweb?p=linuxcnc.git;a=blob;f=src/emc/usr_intf/axis/scripts/axis.py;h=90ca1a901b45fefd8c0f3d8d4535b1d552abae28;hb=HEAD#l2417
Could save a lot of bother.

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton


On 5/11/2015 9:07 AM, Gene Heskett wrote:


 Not since I put homing switches on it. What I am doing now is the auto
 home, where the x switch is on the front of the saddle set at about .1mm
 from the max out travel of a hair over 67mm.  The switch will not be
 damaged if it comes all the way to the end of the slot in the carriage.
 From the [AXIS 0] ini file:

 MIN_LIMIT = -2.5
 MAX_LIMIT = 67.0
 HOME_OFFSET = 67.783
 Those are stated in radius.
 So the bring up procedure is to do an autohome without a tool mounted as
 the x will be zero'd  left at switch open, which gives clearance even
 with a workpiece mounted, for it to go left and find the z switch which
 is about 57mm from hitting the chuck.  And it parks about 25mm to the
 right of the switch.  Since I had already cut the rust off the
 workpiece, I next drive the mounted tool so that it is sitting in gentle
 contact with the left end of that cut, touch-off z to 0.0, and measure
 the OD, in this case 32.3mm, and touch off x, redoing it if the DRO
 diameter isn't correct.  The DRO diameter was showing 32.30.

Just wondering why you have such a large HOME_OFFSET, usually you only 
need enough to get off the switch unless you home like Andy and then you 
don't need any HOME_OFFSET.

 I think you might need to do some tool-changing, jogging about and
 switching between modes to see where you are (and also check the tool
 table entries).
 Tool table not involved, default arrow showing in the backplot.

 For me to make use of the tool table, I've have to get another $200 in
 tool holders so I could permanently mount and measure them all.  I only
 have the basic kit of the smallish steel one. OXA series IIRC.  Each
 holder is about $14 and I'd need another half a dozen, and the boring
 bar holder is $22  I'd need about half a dozen of those.  My BIG bar is
 a 5/8 diameter that I made a clamp for, but that also leads to buying 
 fitting more compound-slides as it can and has ripped threads out of the
 top, 10mm threads.  I have been tempted to replace the compound with a
 steel square of the same height but haven't found my round tuit for tht
 job yet.   Its (the OXA) about 10x more rigid that the alu versions that
 use the push button driven by a cam to lock a fixed V. The OXA moves the
 wedge up and down on a ramp on one side, much better grip.

On my CHNC I have an 8 station turret, I have many more tools than fits 
on the turret. I just keep the most used tools mounted and touched off 
on my turret. When I need a different one I load the tool in LCNC with 
TnM6G43 then proceed to touch off the Z to the face of my spindle 
(making sure that I touch off the tool table and I'm not in G54 so no 
offset is added) and the X to some material that I can cut a bit and 
measure the diameter then touch it off. I use tool 1 as my master tool 
and touch off the G54 Z offset with that. That shifts the Z for ALL the 
tools in the tool table. You can do the same with your OXA so long as 
you don't move the base.

One advantage to using the tool table is you only have to touch off the 
Z in the G54 coordinate system to the material for one tool. Another 
advantage is you can specify the tool orientation and control point 
which is used by tool diameter offset.


 The exceeds limits thing can probably be cleared by touching off
 again to the right diameter in the right mode.
 I'm going to give it another shot later today, but with the whole
 toolpost on the table beside the keyboard this time.  But first I need
 to take the owners manual and go see if I can find a deck drive belt
 thats about an inch shorter for my 23 yo Craftsman rider.  Its an MTD
 under the paint of course, but by the time the deck is leveled ack the
 book, the belt tends to come off, climbing above the engine pulley when
 disengaging.  And its a right pain in the ass to restring the thing if
 you don't have a lift that lets you work from the bottom. I think by now
 the pulleys (and deck suspension stuff) are worn bad enough an inch
 shorter belt is the cure.

Amazon is your friend for mower idlers and spindles... I just replaced 
all my spindles and blades for $125 on my not so old Craftsman mower 
which I'll never buy one again. My antique 8hp Craftsman is much better 
built.

 That and call Orkin to get rid of a termite nest in the underpinnings of
 my shops front deck we found late Friday night while replacing the dry
 rotted flooring.

 First things first IOW.

 Thanks Andy.

 Cheers, Gene Heskett


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list

Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton
Or you could just put RS247NGC_STARTUP_CODE = G7 in the RS247NGC section 
for power on. Of course that won't help with a program changes it and 
does not put it back.

JT

On 5/11/2015 9:24 AM, andy pugh wrote:
 On 11 May 2015 at 15:07, Gene Heskett ghesk...@wdtv.com wrote:
 I next drive the mounted tool so that it is sitting in gentle
 contact with the left end of that cut, touch-off z to 0.0, and measure
 the OD, in this case 32.3mm, and touch off x, redoing it if the DRO
 diameter isn't correct.  The DRO diameter was showing 32.30.
 This sounds a fair bit like what I do, so ought to work.
 It only goes wrong for me when I forget that I am in in radius mode
 (generally only after breaking out of a routine that changes mode, or
 at first power on).

 I have just had the idea that a G7 in this line (and in 2456)
 http://git.linuxcnc.org/gitweb?p=linuxcnc.git;a=blob;f=src/emc/usr_intf/axis/scripts/axis.py;h=90ca1a901b45fefd8c0f3d8d4535b1d552abae28;hb=HEAD#l2417
 Could save a lot of bother.



--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett


On Monday 11 May 2015 06:52:26 John Thornton wrote:
 Is there a feature in Master that you need to run?

 When I'm not sure if I touched off correctly I do a chicken check by
 jogging the tool to a point I know what the DRO should read and see if
 the DRO is correct.

 AFAIK machine limits are in machine units and it won't matter if your
 in G7 or G8.

 As I said before as you type in the first number in the touch off box
 it immediately tells you if your in diameter or radius mode on the
 next line below the box where you enter the number. You can also look
 at the Active G-Codes: box and see if your in G7 or G8 and if your not
 where you expect change it in the MDI Command.

 JT

This part seem to be true John, but I just ran into another foible that I 
would consider a (144 point type here please) HUGE BUG.

To wit: On looking at the mdi screens mode readout it said I was in mode 
G20, inches IOW. Adding a G21 to my code and reloading my code DID NOT 
EFFECT the MDI displayed G20!  So its no wonder it thought a .3mm move 
out, to 32.6mm was out of bounds, it thought I was in INCHes, G20 mode.
Can even Stuarts big Cinnci fella do that?

Changing it from the F5/MDI screen seems to work, at least that registers 
in the modes in affect box. but does that carry over to the F3/manual 
screen?  I am about to find out, but if the interpreter isn't doing the 
G20-G21 switches, maybe its not doing the G7/G8 switch either?

Do I have to execute, step the program to achieve that mode switch?  I'll 
change it back from the MDI screen and find out.  Back later. Yes, 
stepping it till the spindle starts sets it correctly.

Got to look it up as this particular ini file has no default setup line 
in it, and that could well explain some of the expensive gotchas I am 
running into.  Later guys.  Thanks for looking over my shoulder  trying 
to suppress the laughter, probably unsuccessfully. :)

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton
Well it's 274 not 247

JT

On 5/11/2015 10:43 AM, John Thornton wrote:
 Or you could just put RS247NGC_STARTUP_CODE = G7 in the RS247NGC section
 for power on. Of course that won't help with a program changes it and
 does not put it back.

 JT

 On 5/11/2015 9:24 AM, andy pugh wrote:
 On 11 May 2015 at 15:07, Gene Heskett ghesk...@wdtv.com wrote:
 I next drive the mounted tool so that it is sitting in gentle
 contact with the left end of that cut, touch-off z to 0.0, and measure
 the OD, in this case 32.3mm, and touch off x, redoing it if the DRO
 diameter isn't correct.  The DRO diameter was showing 32.30.
 This sounds a fair bit like what I do, so ought to work.
 It only goes wrong for me when I forget that I am in in radius mode
 (generally only after breaking out of a routine that changes mode, or
 at first power on).

 I have just had the idea that a G7 in this line (and in 2456)
 http://git.linuxcnc.org/gitweb?p=linuxcnc.git;a=blob;f=src/emc/usr_intf/axis/scripts/axis.py;h=90ca1a901b45fefd8c0f3d8d4535b1d552abae28;hb=HEAD#l2417
 Could save a lot of bother.


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton
Executing a G20/21 does not affect the DRO in Axis...

JT

On 5/11/2015 11:11 AM, Rick Lair wrote:
 Couldn't you just put a G21 in your RS274NGC_STARTUP_CODE = section?

 Rick



 On 5/11/2015 12:07 PM, John Thornton wrote:
 If your DRO is reading with 4 digits of precision your looking in
 inches, 3 digits of precision and your DRO is showing mm. If you always
 use mm then change your DRO to mm in the View menu. Hmm, I don't see a
 place to set the default units on start up.

 JT

 On 5/11/2015 10:43 AM, Gene Heskett wrote:
 On Monday 11 May 2015 06:52:26 John Thornton wrote:
 Is there a feature in Master that you need to run?

 When I'm not sure if I touched off correctly I do a chicken check by
 jogging the tool to a point I know what the DRO should read and see if
 the DRO is correct.

 AFAIK machine limits are in machine units and it won't matter if your
 in G7 or G8.

 As I said before as you type in the first number in the touch off box
 it immediately tells you if your in diameter or radius mode on the
 next line below the box where you enter the number. You can also look
 at the Active G-Codes: box and see if your in G7 or G8 and if your not
 where you expect change it in the MDI Command.

 JT
 This part seem to be true John, but I just ran into another foible that I
 would consider a (144 point type here please) HUGE BUG.

 To wit: On looking at the mdi screens mode readout it said I was in mode
 G20, inches IOW. Adding a G21 to my code and reloading my code DID NOT
 EFFECT the MDI displayed G20!  So its no wonder it thought a .3mm move
 out, to 32.6mm was out of bounds, it thought I was in INCHes, G20 mode.
 Can even Stuarts big Cinnci fella do that?
 Until you run the code nothing is changed. And as you see changing it
 in the MDI (Manual Data Input) which runs your line of G code the
 active G code is changed. Refreshing the G code only updates the back
 plot with the new G code.
 Changing it from the F5/MDI screen seems to work, at least that registers
 in the modes in affect box. but does that carry over to the F3/manual
 screen?  I am about to find out, but if the interpreter isn't doing the
 G20-G21 switches, maybe its not doing the G7/G8 switch either?
 The jog controls on the F3 screen are set in the ini file and if set to
 inches that is what you get. If you jog 0.1000 and the DRO is set to mm
 it will go 2.540mm.
 Do I have to execute, step the program to achieve that mode switch?  I'll
 change it back from the MDI screen and find out.  Back later. Yes,
 stepping it till the spindle starts sets it correctly.

 Got to look it up as this particular ini file has no default setup line
 in it, and that could well explain some of the expensive gotchas I am
 running into.  Later guys.  Thanks for looking over my shoulder  trying
 to suppress the laughter, probably unsuccessfully. :)

 Cheers, Gene Heskett
 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton
The velocity should show up in the preview window when checked off. At 
least it works in 2.7 pre6... Speaking of versions why are you running 
Master (2.8)?

JT

On 5/11/2015 12:02 PM, Gene Heskett wrote:
 However, speaking of DRO's, there is not a tool velocity display in 
 either the preview screen or the DRO screen, regardless of whether or 
 not it is checked in the view pulldown. I would like to know if its 
 following orders... So this is the first real, twasn't my stupidity, 
 bug report on 2.6.8-pre1. Velocity doesn't show regardless of view 
 selection. Heck, I might get this thing (a 2 speed polybelt drive for 
 the mill) made yet. Replacing the 200 watt motor with the 400 watter 
 from the lathe at the same time. Cheers, Gene Heskett 


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett
On Monday 11 May 2015 15:19:13 John Thornton wrote:
 Executing a G20/21 does not affect the DRO in Axis...

 JT

True John.  Axis shows the result in inches, or millimeters, as selected 
by view mode, independently of the machine mode.

But this is one of those days I shouldn't have chewed thru the straps to 
get up.  Before I was anywhere near done, the backgear in the headstock 
started squawling someplace internally.  I knew there was a bent shaft 
as that was obvious from the cyclic gear noises, but this was a dry 
bearing (or lack of a bearing) as it was just as noisy in neutral, so 
pumped about 2 cups of vactra thru it, made no effect on the noise, so I 
picked up the horn  gave LMS some CC numbers for a new, complete, 
headstock, about $130 in an if it fits it ships USPS box. And so it 
will sit until that arrives, and I transfer the chuck, with the 
workpiece still mounted, to the new spindle, along with the timing belt 
pulley used for input.  Roger said I should have it by Friday.

The SDD arrived today, along with a new PSU, but that may wait till it 
crashes again as it has not crashed since I reformatted the drive  
installed the new hybride-binary image. They can sit on the shelf as 
spares till then.  In the meantime, backups by amanda have been resumed, 
so I'll have the ability to recover to the state it was in at about 2:30 
each morning.

Tomorrow afternoon, Orkin will be here at 13:00 to see what sort of an 
insect infestation I have in the deck substructure  give me a price to 
do that building like the house, with a full perimeter of protection.  
UNK if he can get to enough of it on the back ppty line though.  Too 
much fencing, but they have a couple dogs I don't want to hurt.

Thanks for the help.

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett
On Monday 11 May 2015 15:21:13 John Thornton wrote:
 The velocity should show up in the preview window when checked off. At
 least it works in 2.7 pre6... Speaking of versions why are you running
 Master (2.8)?

 JT

I figured if I was gonna bleed, I may as well bleed the good stuff. :)
I don't mind being a bug reporter as long as I can work around the bug.
So maybe that will be one less buglet when 2.8.0 final is out?

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett
On Monday 11 May 2015 06:56:11 andy pugh wrote:
 On 11 May 2015 at 11:52, John Thornton j...@gnipsel.com wrote:
  You can also look at the
  Active G-Codes: box and see if your in G7 or G8 and if your not
  where you expect change it in the MDI Command.

 You can also see if the expected number changes in the DRO afterwards
 too.

I made my code a little starter, and put an RS274NGC_START_CODE line in 
the .ini, and it appears it is going to do, slowly, what I want it to 
do. Speed is limited by how much power I can get thru the timing belt to 
the spindle.  Needs additional tension adjustment and bracing facilities 
but ALL that crap is directly below the spindle housing.  A fix for that 
will be a cast iron bitch. Likely a lever bolted to the end of the shaft 
mount, projecting to the rear, where I might be able to rig a push screw 
against the outer end of it.  The OEM motor mounbt was almost good 
enough for the 400 watt motor is came with, but swap it out for a 1 
horse, and its way too puny. Too much flex.

However, speaking of DRO's, there is not a tool velocity display in 
either the preview screen or the DRO screen, regardless of whether or 
not it is checked in the view pulldown.  I would like to know if its 
following orders...

So this is the first real, twasn't my stupidity, bug report on 
2.6.8-pre1. Velocity doesn't show regardless of view selection.

Heck, I might get this thing (a 2 speed polybelt drive for the mill) made 
yet.  Replacing the 200 watt motor with the 400 watter from the lathe at 
the same time.

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Rick Lair
Couldn't you just put a G21 in your RS274NGC_STARTUP_CODE = section?

Rick



On 5/11/2015 12:07 PM, John Thornton wrote:
 If your DRO is reading with 4 digits of precision your looking in
 inches, 3 digits of precision and your DRO is showing mm. If you always
 use mm then change your DRO to mm in the View menu. Hmm, I don't see a
 place to set the default units on start up.

 JT

 On 5/11/2015 10:43 AM, Gene Heskett wrote:
 On Monday 11 May 2015 06:52:26 John Thornton wrote:
 Is there a feature in Master that you need to run?

 When I'm not sure if I touched off correctly I do a chicken check by
 jogging the tool to a point I know what the DRO should read and see if
 the DRO is correct.

 AFAIK machine limits are in machine units and it won't matter if your
 in G7 or G8.

 As I said before as you type in the first number in the touch off box
 it immediately tells you if your in diameter or radius mode on the
 next line below the box where you enter the number. You can also look
 at the Active G-Codes: box and see if your in G7 or G8 and if your not
 where you expect change it in the MDI Command.

 JT
 This part seem to be true John, but I just ran into another foible that I
 would consider a (144 point type here please) HUGE BUG.

 To wit: On looking at the mdi screens mode readout it said I was in mode
 G20, inches IOW. Adding a G21 to my code and reloading my code DID NOT
 EFFECT the MDI displayed G20!  So its no wonder it thought a .3mm move
 out, to 32.6mm was out of bounds, it thought I was in INCHes, G20 mode.
 Can even Stuarts big Cinnci fella do that?
 Until you run the code nothing is changed. And as you see changing it
 in the MDI (Manual Data Input) which runs your line of G code the
 active G code is changed. Refreshing the G code only updates the back
 plot with the new G code.
 Changing it from the F5/MDI screen seems to work, at least that registers
 in the modes in affect box. but does that carry over to the F3/manual
 screen?  I am about to find out, but if the interpreter isn't doing the
 G20-G21 switches, maybe its not doing the G7/G8 switch either?
 The jog controls on the F3 screen are set in the ini file and if set to
 inches that is what you get. If you jog 0.1000 and the DRO is set to mm
 it will go 2.540mm.
 Do I have to execute, step the program to achieve that mode switch?  I'll
 change it back from the MDI screen and find out.  Back later. Yes,
 stepping it till the spindle starts sets it correctly.

 Got to look it up as this particular ini file has no default setup line
 in it, and that could well explain some of the expensive gotchas I am
 running into.  Later guys.  Thanks for looking over my shoulder  trying
 to suppress the laughter, probably unsuccessfully. :)

 Cheers, Gene Heskett

 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users

-- 

Thanks


Rick Lair
Superior Roll  Turning LLC
399 East Center Street
Petersburg MI, 49270
PH: 734-279-1831
FAX: 734-279-1166
www.superiorroll.com


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett


On Monday 11 May 2015 10:24:35 andy pugh wrote:
 On 11 May 2015 at 15:07, Gene Heskett ghesk...@wdtv.com wrote:
  I next drive the mounted tool so that it is sitting in gentle
  contact with the left end of that cut, touch-off z to 0.0, and
  measure the OD, in this case 32.3mm, and touch off x, redoing it if
  the DRO diameter isn't correct.  The DRO diameter was showing 32.30.

 This sounds a fair bit like what I do, so ought to work.
 It only goes wrong for me when I forget that I am in in radius mode
 (generally only after breaking out of a routine that changes mode, or
 at first power on).

 I have just had the idea that a G7 in this line (and in 2456)
 http://git.linuxcnc.org/gitweb?p=linuxcnc.git;a=blob;f=src/emc/usr_int
f/axis/scripts/axis.py;h=90ca1a901b45fefd8c0f3d8d4535b1d552abae28;hb=HE
AD#l2417 Could save a lot of bother.

I just put that line in the ini file, seems much better behaved now.

Thanks Andy

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread John Thornton
If your DRO is reading with 4 digits of precision your looking in 
inches, 3 digits of precision and your DRO is showing mm. If you always 
use mm then change your DRO to mm in the View menu. Hmm, I don't see a 
place to set the default units on start up.

JT

On 5/11/2015 10:43 AM, Gene Heskett wrote:

 On Monday 11 May 2015 06:52:26 John Thornton wrote:
 Is there a feature in Master that you need to run?

 When I'm not sure if I touched off correctly I do a chicken check by
 jogging the tool to a point I know what the DRO should read and see if
 the DRO is correct.

 AFAIK machine limits are in machine units and it won't matter if your
 in G7 or G8.

 As I said before as you type in the first number in the touch off box
 it immediately tells you if your in diameter or radius mode on the
 next line below the box where you enter the number. You can also look
 at the Active G-Codes: box and see if your in G7 or G8 and if your not
 where you expect change it in the MDI Command.

 JT
 This part seem to be true John, but I just ran into another foible that I
 would consider a (144 point type here please) HUGE BUG.

 To wit: On looking at the mdi screens mode readout it said I was in mode
 G20, inches IOW. Adding a G21 to my code and reloading my code DID NOT
 EFFECT the MDI displayed G20!  So its no wonder it thought a .3mm move
 out, to 32.6mm was out of bounds, it thought I was in INCHes, G20 mode.
 Can even Stuarts big Cinnci fella do that?
Until you run the code nothing is changed. And as you see changing it 
in the MDI (Manual Data Input) which runs your line of G code the 
active G code is changed. Refreshing the G code only updates the back 
plot with the new G code.
 Changing it from the F5/MDI screen seems to work, at least that registers
 in the modes in affect box. but does that carry over to the F3/manual
 screen?  I am about to find out, but if the interpreter isn't doing the
 G20-G21 switches, maybe its not doing the G7/G8 switch either?
The jog controls on the F3 screen are set in the ini file and if set to 
inches that is what you get. If you jog 0.1000 and the DRO is set to mm 
it will go 2.540mm.
 Do I have to execute, step the program to achieve that mode switch?  I'll
 change it back from the MDI screen and find out.  Back later. Yes,
 stepping it till the spindle starts sets it correctly.

 Got to look it up as this particular ini file has no default setup line
 in it, and that could well explain some of the expensive gotchas I am
 running into.  Later guys.  Thanks for looking over my shoulder  trying
 to suppress the laughter, probably unsuccessfully. :)

 Cheers, Gene Heskett


--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] It looks like I need help understanding 2.8.0

2015-05-11 Thread Gene Heskett
On Monday 11 May 2015 11:51:52 John Thornton wrote:
 Well it's 274 not 247

 JT

I can't type John,  there is the evidence.  The file is correct and it 
works, something I shoulda done years ago I suspect.

Gotta yet back out there.

Cheers, Gene Heskett
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Genes Web page http://geneslinuxbox.net:6309/gene

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users