![]() | |
| Home Page | Mark Forums Read | Today's Posts | My Replies | Classifieds | Reviews | Photo Gallery | Web Links | Share Files | Advertise With Us | Ad List |
| |||||||
| Servo Motors and Drives Discuss servo motors, drivers and other related topics here. |
| This forum is sponsored by: |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
| |||
| |||
Hello, I have an old western German CNC machine that I wanted to renew , the problem is there is no manuals at all for any of its components , and I'am an inexperienced student . Is there a safe way to know how to operate its servos. each servo has a tachogenerator output to the control unit , and an input that has many pins , so would it be safe to apply different binary values on these pins and see how it works. another thing , on the servo plate ther is: Ieff:22A , I (with a cap sign on its top) = 200A U(with a cap sign on its top)=170V UN = Bremse 24V what does that mean thanks very much in advance. |
|
#2
| ||||
| ||||
| I believe Bremse is brake. Modern DC motor controller do not use the tach any more so you could disregard that if using a different drive/controller. The item with many pins is probably an encoder, of which often were quadrature pulse differential. In the absence of documentation you may have to do some reverse engineering on the encoder to determine the pins, look to see if the encoder has a part # or make. Al.
__________________ CNC, Mechatronics Integration and Machine Design. “Logic will get you from A to B. Imagination will take you everywhere.” Albert E. |
|
#5
| ||||
| ||||
| I would say it is 20a continuous and 200a peak before any damage occurs. Ideally if you had 120vac then rectified it would make a suitable supply for the motors. You need a 240 to 120v transformer. Al.
__________________ CNC, Mechatronics Integration and Machine Design. “Logic will get you from A to B. Imagination will take you everywhere.” Albert E. |
| Sponsored Links |
|
#6
| |||
| |||
| hello, another question , I'm using pwm to control the dc motor speed , and using the H bridge to transform the signal to a high power signal , the H bridge I know can give up to 3A , the motor I have takes 25A , Is there a H bridge that can support this , I searched the internet but I didn't find it. If not , would it be possible to use few 3A H bridges and give them the same signal and combine all there current values to run the motor. Regards. |
|
#7
| ||||
| ||||
| You can use descrete JFET or IGBT components to make a higher power bridge. You should find a few designs out there on the web. Al.
__________________ CNC, Mechatronics Integration and Machine Design. “Logic will get you from A to B. Imagination will take you everywhere.” Albert E. |
|
#9
| |||
| |||
| why is this code not working? when (set_point < feed_back) , the if statement is executed. but when (set_point > feed_back) , the it doesn't. and it is working on the sw debugger but not on the breadboard. //--------------------------------------------------------- unsigned int set_point , feed_back; signed int current_duty; void InitMain() { PORTA = 0; TRISA = 0xff; //PORT A FOR A/D CONVERSION /*ADCON0 = 0x00000001; //PORT A WORKS AS AN ANALOG INPUT NOT DIGITAL */ PORTE = 0; // set PORTE to 0 TRISE = 0; // designate PORTE pins as output PWM1_Init(20000); // Initialize PWM1 module at 20KHz } void main() { InitMain(); ADC_Init(); PWM1_Start(); // start PWM1 while (1) { set_point = ADC_Read(0); feed_back = ADC_Read(1); if(set_point<feed_back) { PORTE.B1=0; PORTE.B2=1; } else if(set_point>=feed_back) { PORTE.B1=1; PORTE.B2=0; } current_duty = set_point - feed_back; current_duty = current_duty * (255.0/1023.0) ; current_duty = abs( current_duty ); PWM1_Set_Duty(current_duty); // Set current duty for PWM1 } } |
![]() |
| Tags |
| servo |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| couple of sets of Indramat Servo Controller+Mains filter+Servo Motor 9Nm, 4500rpm | bogus105 | EBAY ADS | 2 | 11-16-2011 10:25 PM |
| UM Baldor servo drive, servo compatability | dingo0722 | Servo Motors and Drives | 0 | 11-14-2010 08:12 PM |
| Galil Motion Controller, with NEMA 23 Servo Motors, Servo Drive, Encoders, Etc. | qualitymachine | EBAY ADS | 0 | 06-01-2009 02:26 PM |
| Sell Servo Motor, Servo Drive by GSKcnc.com from China | salecnc@hotmail | Product Announcements & Manufacturer News | 0 | 06-03-2008 02:55 PM |
| Pluto Servo - Motors won't servo correctly???? | TZak | LinuxCNC (formerly EMC2) | 2 | 01-10-2008 02:34 PM |