Fanuc servo drive integration
I just purchased a 1987 mori sl-4. I assumed it had a06b-6050 servo drives. Well under closer inspection they are a06b-6057.
I have used the 6050 drives before for the rotary table on my mill. But I don't have any info on the 6057 drives. Are these able to be integrated with emc? Are they analog input?
Thanks
cory
Please Log in or Create an account to join the conversation.
I think some of these drives are analog and some are digital
Please Log in or Create an account to join the conversation.
and
A06b-6050-h005
Please Log in or Create an account to join the conversation.
A06b-6050-h004
and
A06b-6050-h005
6050 or 6057?
Please Log in or Create an account to join the conversation.
and
A06b-6057-h005
Please disregard the previous post
thinking about to many numbers
Please Log in or Create an account to join the conversation.
support.ge-ip.com/support/index?page=doc...900112007ff7cf002fb2
Page 55 is the interface connector pinout
Please Log in or Create an account to join the conversation.
These sound like they are of the vintage that have serial pulse codersA06b-6057-h004
and
A06b-6057-h005
Please disregard the previous post
thinking about to many numbers
on the motors. I have a prototype decoder for these, and a device
that converts the signal to quadrature, but at present provides no
commutation info for the drive. I'm working on that.
Jon
Please Log in or Create an account to join the conversation.
In the interim it should be possible to use the bldc HAL component to read the quadrature pulses, perform a magnetic alignment and then generate commutation signals (Hall or Fanuc) for the drive.These sound like they are of the vintage that have serial pulse coders
on the motors. I have a prototype decoder for these, and a device
that converts the signal to quadrature, but at present provides no
commutation info for the drive. I'm working on that.
What is the protocol for these encoders? If there is a way to get the serial data into HAL as an absolute postion then that can go straight into the bldc component to generate commutation signals.
Please Log in or Create an account to join the conversation.
Thanks
Cory
Please Log in or Create an account to join the conversation.
In the interim it should be possible to use the bldc HAL component to read the quadrature pulses, perform a magnetic alignment and then generate commutation signals (Hall or Fanuc) for the drive.
[/quote]
No, without commutation info, BLDC would have no idea what poles to activate.
So, I don't think that will work.
It produces a 77-bit string of bits. There is a wide position readout that includes a field forWhat is the protocol for these encoders? If there is a way to get the serial data into HAL as an absolute postion then that can go straight into the bldc component to generate commutation signals.
number of turns (signed) and a field for shaft position, such as 32768 or 65536 counts
(unsigned). It ends with a 5-bit CRC code to verify data quality.
If the encoder is an "incremental" encoder, it has no indication of position, and the
shaft angle value jumps suddenly to zero when it passes the index position for
the first time after power on. So, what they do is provide a backup battery in
the controller, and have brakes in the motor that assure the encoder cannot move
by even one count while powered off. The battery does not power the encoder, it
only powers a CMOS memory that holds the position count while the rest of the
encoder is not powered. This type of encoder could be used to derive commutation
info, but it would need a brake and backup battery, and if the memory was lost,
it would have to be hand-cranked one rev to pass the index pulse.
If the encoder is an "absolute" encoder, it also has a low-resolution field that
reports absolute position with 1024 counts/motor quadrant immediately at power on.
This could be used to derive commutation info without requiring a battery, and
the standard homing routine could pick up the index position. The encoder reader
would need to detect the appearance of the "homed" bit and prevent a servo trip at
that point due to the shift in count.
Jon
Please Log in or Create an account to join the conversation.