CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Electronics > Servo Motors and Drives


Servo Motors and Drives Discuss servo motors, drivers and other related topics here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 06-24-2011, 01:55 PM
 
Join Date: Jun 2011
Location: Egypt
Posts: 10
yassser is on a distinguished road
help with an old servo

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.
Reply With Quote

  #2  
Old 06-24-2011, 02:18 PM
Al_The_Man's Avatar
Community Moderator
 
Join Date: Dec 2003
Location: Canada
Posts: 16,544
Al_The_Man is on a distinguished road
Buy me a Beer?

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.
Reply With Quote

  #3   Ban this user!
Old 06-24-2011, 03:00 PM
 
Join Date: Jun 2011
Location: Egypt
Posts: 10
yassser is on a distinguished road

thanks very much for the fast response , I'll try and may be ask more questions later.
Reply With Quote

  #4   Ban this user!
Old 06-24-2011, 03:19 PM
 
Join Date: Jun 2011
Location: Egypt
Posts: 10
yassser is on a distinguished road

one more beginner question , how can I have a 170V DC supply from the 220V AC outlet , can a voltage regulator be used for that .

and what does the cap symbol on the I , U mean.
Reply With Quote

  #5  
Old 06-24-2011, 05:45 PM
Al_The_Man's Avatar
Community Moderator
 
Join Date: Dec 2003
Location: Canada
Posts: 16,544
Al_The_Man is on a distinguished road
Buy me a Beer?

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.
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 06-29-2011, 12:09 PM
 
Join Date: Jun 2011
Location: Egypt
Posts: 10
yassser is on a distinguished road

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.
Reply With Quote

  #7  
Old 06-29-2011, 12:48 PM
Al_The_Man's Avatar
Community Moderator
 
Join Date: Dec 2003
Location: Canada
Posts: 16,544
Al_The_Man is on a distinguished road
Buy me a Beer?

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.
Reply With Quote

  #8   Ban this user!
Old 06-29-2011, 05:43 PM
 
Join Date: Jun 2011
Location: Egypt
Posts: 10
yassser is on a distinguished road

what about using more than one 3A H-bridge , have any one tried that before , because I'm not very experienced in electronics and I don't want to get stuck in it .
Reply With Quote

  #9   Ban this user!
Old 06-30-2011, 06:41 PM
 
Join Date: Jun 2011
Location: Egypt
Posts: 10
yassser is on a distinguished road

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
}
}
Reply With Quote

Reply

Tags
servo




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


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




All times are GMT -5. The time now is 04:14 AM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361