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 > PIC Programing / Design


PIC Programing / Design Discuss programing of PIC chips here and design of electronics using PIC chips.


Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #61   Ban this user!
Old 04-12-2007, 05:44 PM
 
Join Date: Aug 2005
Location: Canada
Posts: 36
niclatrique is on a distinguished road

What do you mean by "software controlled reference is the realistic option." ?

BTW, this is exactly what I thought that would happen using the PIC for current control. I'm glad to know I'm in the right track this way.

once again, thanks for the answers

nic
Reply With Quote

  #62   Ban this user!
Old 04-12-2007, 06:15 PM
 
Join Date: Feb 2007
Location: New Zealand
Posts: 490
kiwichris is on a distinguished road

Hurro..

I mean that you create the reference voltage from the PIC using PWM or D-A conversion, and use hardware to set the current in the motor via pwm/chopper from that reference voltage. So the current control from the PIC point of view is open-loop. This also means you already have the basis for hardware sort circuit protection, which the PIC would not be fast enough for!

kreutz's post also suggests that higher step rates using the PWM modules in the AVR wasn't up to more than 75khz, which is not all that high if you're looking at 8,10 or 16x mircostepping.

Based on that the I guess the best option would be to use an R/2R ladder D-A off the pic to get your reference voltage. The R/2R ladder will have better responce time than the PWM, and be faster to impliment in code. Or at least that's what I intend to try out as my next venture into making magic smoke. :-).

My experimentation with in-chip current monitoring was just doing wave, full and half stepping, trying to get the chopper working in the PIC, and I ran out of processor resources. Although I thought it was actually rail fluctuation due to B-EMF locking up the PIC, so I did waste two evenings finding that out that it wasn't that...

Cheers, Me.

Last edited by kiwichris; 04-12-2007 at 06:15 PM. Reason: typo
Reply With Quote

  #63   Ban this user!
Old 04-12-2007, 06:33 PM
 
Join Date: Aug 2006
Location: USA
Posts: 2,624
kreutz is on a distinguished road

Originally Posted by kiwichris View Post

kreutz's post also suggests that higher step rates using the PWM modules in the AVR wasn't up to more than 75khz, which is not all that high if you're looking at 8,10 or 16x mircostepping.

Cheers, Me.
I did not continue optimizing the code after I reached reliable step rates a little over 75 KHz (micro-step as well as all the way to Full Step), my code was written in BASCOM (compiled basic) so there is enough margin to optimize and get over 90 KHz. Since Mach3 is limited to 45 KHz I lost interest into coding the step ISR in assembly. Hardware PWM in the AVR is easy to update (set and forget), I used 39.2 Khz pwm frequency.
Reply With Quote

  #64   Ban this user!
Old 04-12-2007, 07:22 PM
 
Join Date: Feb 2007
Location: New Zealand
Posts: 490
kiwichris is on a distinguished road

Originally Posted by kreutz View Post
I did not continue optimizing the code after I reached reliable step rates a little over 75 KHz (micro-step as well as all the way to Full Step), my code was written in BASCOM (compiled basic) so there is enough margin to optimize and get over 90 KHz. Since Mach3 is limited to 45 KHz I lost interest into coding the step ISR in assembly. Hardware PWM in the AVR is easy to update (set and forget), I used 39.2 Khz pwm frequency.
OK....

I'll be giving this a go as an academic exercise at some stage in the next few months, so it'll be interesting to see what I can get out of a PIC using the PWM modules, although none of the cheaper PIC's have two PWM modules, which is a pain.

Thinking about this, the update time of the reference voltage based on PWM probably becomes less of an issue at higher step rates anyway, as the voltage in the stepper winding wont reach set point anyway, and the effect of some of the extra microsteps will be 'missed' by the chopper.. ie: the phase inputs will be set, and the voltage across the winding will rise slower than the microstep waveform.

Hence transistioning to full step above a few revs per second. Oooo, I just learnt something. My brain hurts.

Cheers, Chris H.
Reply With Quote

  #65   Ban this user!
Old 04-12-2007, 08:38 PM
 
Join Date: Aug 2005
Location: Canada
Posts: 36
niclatrique is on a distinguished road

Now I'm getting more and more lost !!!

Why would I have an analog reference voltage to control current ?? If I set the pot of the hardware chopper to a fixed level, the hardware chopper will regulate it. As I drive FET drivers direcly by the PIC ouputs, why would I need the analog output ??

thanks

Nic
Reply With Quote

Sponsored Links
  #66   Ban this user!
Old 04-12-2007, 09:00 PM
 
Join Date: Aug 2006
Location: USA
Posts: 2,624
kreutz is on a distinguished road

Originally Posted by niclatrique View Post
Now I'm getting more and more lost !!!

Why would I have an analog reference voltage to control current ?? If I set the pot of the hardware chopper to a fixed level, the hardware chopper will regulate it. As I drive FET drivers direcly by the PIC ouputs, why would I need the analog output ??

thanks

Nic
That is only if you plan to use Full-Step or half Step. Basically, when you use micro-stepping, you need a variable (sinusoidal approximation) reference waveform for each phase (shifted 90 degrees). Your PIC will output a switching waveform equal to the one used for Full step with two coils energized, and the two reference waveforms (used by the choppers) will be updated for each micro-step.
Reply With Quote

  #67   Ban this user!
Old 04-12-2007, 09:22 PM
 
Join Date: Feb 2007
Location: New Zealand
Posts: 490
kiwichris is on a distinguished road

Originally Posted by kreutz View Post
That is only if you plan to use Full-Step or half Step. Basically, when you use micro-stepping, you need a variable (sinusoidal approximation) reference waveform for each phase (shifted 90 degrees). Your PIC will output a switching waveform equal to the one used for Full step with two coils energized, and the two reference waveforms (used by the choppers) will be updated for each micro-step.
Beat me to it... .
Reply With Quote

  #68   Ban this user!
Old 04-13-2007, 05:25 PM
 
Join Date: Aug 2005
Location: Canada
Posts: 36
niclatrique is on a distinguished road

ok, I'll suppose I have the attached document as my driver. But replace the L297 by a PIC. The output will be a PWM in a sine-cosine pattern for microstepping. The PWM will drive the power stage and and the chopper will regulate the current. There is a fixed voltage reference at the op-amp to set the max current.

If I use the same circuit but in a half or full step mode, the PIC will still be used to produce a 1 or 0 at its output pin to drive the power stage. The chopper will still regulate the current. So why should I need a reference voltage coming of the PIC to regulate the current ?

As the current regulation is a complete closed loop by itself, why should I need a reference voltage coming of the PIC to regulate it?

I really apologyse for my squirrel brain !!

Thanks for your patience

Nic
Attached Files
File Type: pdf Step_Drv_Test.pdf‎ (21.0 KB, 453 views)
Reply With Quote

  #69   Ban this user!
Old 04-13-2007, 05:39 PM
 
Join Date: Aug 2006
Location: USA
Posts: 2,624
kreutz is on a distinguished road

Originally Posted by niclatrique View Post
ok, I'll suppose I have the attached document as my driver. But replace the L297 by a PIC. The output will be a PWM in a sine-cosine pattern for microstepping. The PWM will drive the power stage and and the chopper will regulate the current. There is a fixed voltage reference at the op-amp to set the max current.

If I use the same circuit but in a half or full step mode, the PIC will still be used to produce a 1 or 0 at its output pin to drive the power stage. The chopper will still regulate the current. So why should I need a reference voltage coming of the PIC to regulate the current ?

As the current regulation is a complete closed loop by itself, why should I need a reference voltage coming of the PIC to regulate it?

I really apologyse for my squirrel brain !!

Thanks for your patience

Nic
Because you are assuming the power supply voltage remains constant and there is no BEMF. A circuit like this one will work for a DC motor speed control but not as a current regulator for a stepper.

I was talking a few posts back on the failure of one PID approximation I have seen, and their circuit was a lot like this one. Here PWM changes voltage on the coil and does not control the current. There is no feedback.

In order to get microstepping we need sinusoidal (like) currents.
Reply With Quote

  #70   Ban this user!
Old 04-13-2007, 05:47 PM
 
Join Date: Aug 2006
Location: USA
Posts: 2,624
kreutz is on a distinguished road

I don't remember if I already posted this reference on this thread, this is a must read for all stepper design: http://www.cs.uiowa.edu/~jones/step/
Reply With Quote

Sponsored Links
  #71   Ban this user!
Old 04-13-2007, 06:01 PM
 
Join Date: Feb 2007
Location: New Zealand
Posts: 490
kiwichris is on a distinguished road

Originally Posted by niclatrique View Post
ok, I'll suppose I have the attached document as my driver. But replace the L297 by a PIC. The output will be a PWM in a sine-cosine pattern for microstepping. The PWM will drive the power stage and and the chopper will regulate the current. There is a fixed voltage reference at the op-amp to set the max current.
Nic
If you replace the L297 with a pic, you could put a resistor/cap integrator in place of the pot (R1) drive your sin/cos PWM into there from the PIC, which will give you a variable current reference, sync'd with the phase outputs.

You keep the digital (on/off) phase drive to the mosfets from the 297/pic and the pwm sets the current via your chopper and shdn inputs on your bridge drivers.

Cheers, Me.
Reply With Quote

  #72   Ban this user!
Old 04-15-2007, 08:32 AM
 
Join Date: Aug 2005
Location: Canada
Posts: 36
niclatrique is on a distinguished road

Thanks a lot Kiwichris and Kreutz. It's all clear now. I misunderstood the role of the PWM in a microstepping drive.

Thanks again

Nic
Reply With Quote

Reply




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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 03:47 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