1

I considering doing an electric Go-Kart project with two direct drive rear 48v motors (considering two of these). I plan to control it using Arduino PWM pins. However, I am not sure of the route to go as far as motor controllers. Could I build a motor controller myself that will take Arduino PWM input? Or should I be looking into pre made motor controllers? Is there a particularly good IC for 48v motor control?

Thanks!

Andrew
  • 113
  • 1
  • 4
  • if the go-kart doesnt need to reverse, you could do some of your own high voltage/power MOSFET half-bridges, with Opto-isolated inputs for [low frequency] PWM speed control from your arduino, with nice big optical encoder feedback for speed/RPM readings! – KyranF May 07 '14 at 09:33

1 Answers1

1

You can do it yourself or buy it. It's your decision. We don't know how experienced you are, so nobody will tell you what to do.

If you have no experience with any PWM motor drivers - you should mess around with low power motors first.

PWM regulator for 1000W/48V motor needs good overload protection, because it has to be powered from very low impedance source (big battery with short-circuit current probably over 100A).

In addition - regulator for vehicle must be able to handle voltage (or power) coming from motors while slowing down, because motors work as generators.

Edit:

I found something useful for you: How can I implement regenerative braking of a DC motor?

Kamil
  • 5,926
  • 9
  • 43
  • 58
  • can you shunt reverse power (from motors acting as generators) into a power resistor and diode? – KyranF May 07 '14 at 09:34
  • @KyranF you can, but thats a lot of power... It's better to return power to battery with at half bridge (or full H bridge for both rotation directions). – Kamil May 07 '14 at 09:56
  • It's not good to feed batteries back with potentially very high voltages/currents though.. perhaps some crazy feedback capacitor + power resistor network to throttle the power back into the battery might help the battery life over time – KyranF May 07 '14 at 10:09
  • I guess some investigations into regenerative braking systems should be done for this project of his! – KyranF May 07 '14 at 10:10
  • Would something like [this](http://www.eleccircuit.com/wp-content/uploads/2010/02/pwm-speed-rotation-forard-reverse-and-regenerative-braking.jpg) work? – Andrew May 07 '14 at 17:19
  • IRF150 transistors used in there have 40A, so they should be enough, but whole circuit is designed for 12V, not 48V. So it needs to be redesigned. – Kamil May 08 '14 at 09:26