Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Marius Liebenberg
Rick it is not a huge affair. Just specify in the ini file TYPE= ANGULAR 
for that axis

-- Original Message --
From: "Rick Lair" <r...@superiorroll.com>
To: "Emc Users" <emc-users@lists.sourceforge.net>
Sent: 2015-11-13 16:38:43
Subject: [Emc-users] 4th Axis (rotary axis)

>Hello Guys,
>
>Does anyone know in the documentation where to get any info on setting
>up my rotary axis, I can't find any thing in the manuals on how to get
>it connected properly, without doing a bunch of excess programming.
>
>--
>
>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
>
>
>--
>___
>Emc-users mailing list
>Emc-users@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/emc-users
--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Gene Heskett
On Friday 13 November 2015 09:38:43 Rick Lair wrote:

> Hello Guys,
>
> Does anyone know in the documentation where to get any info on setting
> up my rotary axis, I can't find any thing in the manuals on how to get
> it connected properly, without doing a bunch of excess programming.

Its an axis Rick, and will need the same hardware as driver for whatever 
motor you have on it. Mine has a stepper motor, and the stanza in 
the .ini file looks like this:

[AXIS_3]
TYPE = ANGULAR
HOME = 0.0
MAX_VELOCITY = 50.0
MAX_ACCELERATION = 100.0
STEPGEN_MAXACCEL = 200.0
SCALE = 320.0
FERROR = 1
MIN_FERROR = .25
MIN_LIMIT = -1
MAX_LIMIT = 1
HOME_OFFSET = 0.0
HOME_SEARCH_VEL=0.0
#HOME_SEQUENCE=3
BACKLASH = 0.056

Driving it with a 2M542 driver, hooked as (from the .hal file)

setpstepgen.3.position-scale [AXIS_3]SCALE
setpstepgen.3.steplen   1
setpstepgen.3.stepspace 0
setpstepgen.3.dirhold   1
setpstepgen.3.dirsetup  1
setpstepgen.3.maxaccel  [AXIS_3]STEPGEN_MAXACCEL
net apos-cmdaxis.3.motor-pos-cmd => stepgen.3.position-cmd
net apos-fb stepgen.3.position-fb => axis.3.motor-pos-fb
net astep <=stepgen.3.step
net adir <= stepgen.3.dir
net aenable axis.3.amp-enable-out => stepgen.3.enable
...
net astep =>parport.0.pin-08-out
setpparport.0.pin-08-out-reset  1
net adir => parport.0.pin-09-out

You'll have to "home" it, even if its not plugged in at the time.

Be sure the cable to the motor is never plugged, or unplugged, without 
first turning off the driver power.  Drivers in general do not tolerate 
that at all well.

With a servo motor, I highly recommend jon's (Pico systems) PWM-Servo 
amplifier, its bulletproof and can handle up to 160 volts dc for the 
motor supply.  I've used it for a spindle motor driver twice now.

It can reverse the 1 hp motor of my G0704 from 2700 rpms fwd to 2700 rpms 
reverse in a small fraction over 1 second elapsed time. G33.1's are done 
before you can think about it for small taps.  Just make sure the chuck  
holding the tap is tightened to about 1 degree from broken, because if 
it slips, the tap is history.

I've been looking for a tap holder that grabs the square on the butt of 
the tap, but those things it seems all have a different, unique size.

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 

--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Gene Heskett
On Friday 13 November 2015 10:55:18 Rick Lair wrote:

> I was wondering more about these pins,
>
> 21  bit   IN  FALSE  axis.3.is-unlocked
> 21  bit   OUT FALSE  axis.3.unlock
>
> The servo setup isn't the issue, I already have that stuff in my
> INI/HAL files, I was just wondering about those pins mentioned, if
> they will take care of making sure that the table is un-clamped at the
> right times for just positioning and for contouring. The table is
> hydraulically clamped and unclamped, with feedback limit switches for
> each position, and there is a home position switch.
>
Your table is apparently a couple thousand dollars better than mine, 
which has a brass thumbscrew for locking, and which doesn't begin to 
exert sufficient force to actually lock it.

> That was going to be my next question, how to handle the homing
> sequence if we are not using the rotary axis. I was going to make up 2
> configurations, one with the rotary, one without.

I just zero mine along with the rest as theres no home switches on my 
toy. 2 more mouse clicks.

> I am going with Automation Direct for the servo and drive,
> http://www.automationdirect.com/adc/Shopping/Catalog/Motion_Control/Se
>rvo_Systems/Medium_Inertia_(1KW_-_3KW)_Servo_Systems/3KW_Servo_System_(
>Med_Inertia)/SVA-2300 . Using the servo with no brake.

In that event, I'd tie those signals to control the hydraulics to those 
signals from motion that you quoted.  Hardware details are up to you, 
like how to control the valves that do the lock/unlock of the table.

Thats an open collector signal on pin 21?  Both on the same interface pin 
strongly suggests it is, so that it can be read as an input also.

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 

--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Rick Lair

I was wondering more about these pins,

21  bit   IN  FALSE  axis.3.is-unlocked
21  bit   OUT FALSE  axis.3.unlock

The servo setup isn't the issue, I already have that stuff in my INI/HAL 
files, I was just wondering about those pins mentioned, if they will 
take care of making sure that the table is un-clamped at the right times 
for just positioning and for contouring. The table is hydraulically 
clamped and unclamped, with feedback limit switches for each position, 
and there is a home position switch.

That was going to be my next question, how to handle the homing sequence 
if we are not using the rotary axis. I was going to make up 2 
configurations, one with the rotary, one without.

I am going with Automation Direct for the servo and drive, 
http://www.automationdirect.com/adc/Shopping/Catalog/Motion_Control/Servo_Systems/Medium_Inertia_(1KW_-_3KW)_Servo_Systems/3KW_Servo_System_(Med_Inertia)/SVA-2300
 
. Using the servo with no brake.

-- 

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


--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Rick Lair
To each his own,,,

The servo and drive will be here Tuesday, so it will be busy busy after 
that, we have a job coming in already, that requires the 4th axis.

Always Fun ;)



On 11/13/2015 1:22 PM, Bruce Layne wrote:
> Hey Rick!  Your 500 pound 4th axis weighs more than Gene's G0704 milling
> machine!
>
>
>
> On 11/13/2015 12:41 PM, Rick Lair wrote:
>> Here is a twin to our unit that I am fitting up.
>>
>> http://www.ebay.com/itm/Tsudakoma-12-6-inch-RNCM-301R-4th-axis-power-rotary-table-/261732300386
>>
>>
>>
>> On 11/13/2015 12:17 PM, Gene Heskett wrote:
>>> Your table is apparently a couple thousand dollars better than mine,
>>> which has a brass thumbscrew for locking, and which doesn't begin to
>>> exert sufficient force to actually lock it.
>
> --
> ___
> 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


--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Bruce Layne
Hey Rick!  Your 500 pound 4th axis weighs more than Gene's G0704 milling 
machine!



On 11/13/2015 12:41 PM, Rick Lair wrote:
> Here is a twin to our unit that I am fitting up.
>
> http://www.ebay.com/itm/Tsudakoma-12-6-inch-RNCM-301R-4th-axis-power-rotary-table-/261732300386
>
>
>
> On 11/13/2015 12:17 PM, Gene Heskett wrote:
>> Your table is apparently a couple thousand dollars better than mine, 
>> which has a brass thumbscrew for locking, and which doesn't begin to 
>> exert sufficient force to actually lock it.


--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Rick Lair
Here is a twin to our unit that I am fitting up.

http://www.ebay.com/itm/Tsudakoma-12-6-inch-RNCM-301R-4th-axis-power-rotary-table-/261732300386



On 11/13/2015 12:17 PM, Gene Heskett wrote:
> On Friday 13 November 2015 10:55:18 Rick Lair wrote:
>
>> I was wondering more about these pins,
>>
>> 21  bit   IN  FALSE  axis.3.is-unlocked
>> 21  bit   OUT FALSE  axis.3.unlock
>>
>> The servo setup isn't the issue, I already have that stuff in my
>> INI/HAL files, I was just wondering about those pins mentioned, if
>> they will take care of making sure that the table is un-clamped at the
>> right times for just positioning and for contouring. The table is
>> hydraulically clamped and unclamped, with feedback limit switches for
>> each position, and there is a home position switch.
>>
> Your table is apparently a couple thousand dollars better than mine,
> which has a brass thumbscrew for locking, and which doesn't begin to
> exert sufficient force to actually lock it.
>
>> That was going to be my next question, how to handle the homing
>> sequence if we are not using the rotary axis. I was going to make up 2
>> configurations, one with the rotary, one without.
> I just zero mine along with the rest as theres no home switches on my
> toy. 2 more mouse clicks.
>
>> I am going with Automation Direct for the servo and drive,
>> http://www.automationdirect.com/adc/Shopping/Catalog/Motion_Control/Se
>> rvo_Systems/Medium_Inertia_(1KW_-_3KW)_Servo_Systems/3KW_Servo_System_(
>> Med_Inertia)/SVA-2300 . Using the servo with no brake.
> In that event, I'd tie those signals to control the hydraulics to those
> signals from motion that you quoted.  Hardware details are up to you,
> like how to control the valves that do the lock/unlock of the table.
>
> Thats an open collector signal on pin 21?  Both on the same interface pin
> strongly suggests it is, so that it can be read as an input also.
>
> Cheers, Gene Heskett

-- 

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


--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Gene Heskett
On Friday 13 November 2015 12:41:57 Rick Lair wrote:

> Here is a twin to our unit that I am fitting up.
>
> http://www.ebay.com/itm/Tsudakoma-12-6-inch-RNCM-301R-4th-axis-power-r
>otary-table-/261732300386
>
And the cabinet either of my mills is sitting on would be a Prince Albert 
can under that.  I see it does have hoisting hookbolts.

Its also, in well used condition, 22.5 times what I paid for my POJ, a 
decade back.

Looks like fun though.

> On 11/13/2015 12:17 PM, Gene Heskett wrote:
> > On Friday 13 November 2015 10:55:18 Rick Lair wrote:
> >> I was wondering more about these pins,
> >>
> >> 21  bit   IN  FALSE  axis.3.is-unlocked
> >> 21  bit   OUT FALSE  axis.3.unlock
> >>
> >> The servo setup isn't the issue, I already have that stuff in my
> >> INI/HAL files, I was just wondering about those pins mentioned, if
> >> they will take care of making sure that the table is un-clamped at
> >> the right times for just positioning and for contouring. The table
> >> is hydraulically clamped and unclamped, with feedback limit
> >> switches for each position, and there is a home position switch.
> >
> > Your table is apparently a couple thousand dollars better than mine,
> > which has a brass thumbscrew for locking, and which doesn't begin to
> > exert sufficient force to actually lock it.
> >
> >> That was going to be my next question, how to handle the homing
> >> sequence if we are not using the rotary axis. I was going to make
> >> up 2 configurations, one with the rotary, one without.
> >
> > I just zero mine along with the rest as theres no home switches on
> > my toy. 2 more mouse clicks.
> >
> >> I am going with Automation Direct for the servo and drive,
> >> http://www.automationdirect.com/adc/Shopping/Catalog/Motion_Control
> >>/Se
> >> rvo_Systems/Medium_Inertia_(1KW_-_3KW)_Servo_Systems/3KW_Servo_Syst
> >>em_( Med_Inertia)/SVA-2300 . Using the servo with no brake.
> >
> > In that event, I'd tie those signals to control the hydraulics to
> > those signals from motion that you quoted.  Hardware details are up
> > to you, like how to control the valves that do the lock/unlock of
> > the table.
> >
> > Thats an open collector signal on pin 21?  Both on the same
> > interface pin strongly suggests it is, so that it can be read as an
> > input also.
> >
> > Cheers, Gene Heskett


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 

--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


[Emc-users] 4th Axis (rotary axis)

2015-11-13 Thread Rick Lair
Hello Guys,

Does anyone know in the documentation where to get any info on setting 
up my rotary axis, I can't find any thing in the manuals on how to get 
it connected properly, without doing a bunch of excess programming.

-- 

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


--
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users