Go Back   EcoModder Forum > EcoModding > Fossil Fuel Free > Open ReVolt: open source DC motor controller
Register Now
 Register Now
 

Reply  Post New Thread
 
Submit Tools LinkBack Thread Tools
Old 12-18-2010, 10:29 AM   #4131 (permalink)
ReVolt Enthusiast
 
Join Date: Jun 2009
Location: Michigan, USA
Posts: 239
Thanks: 98
Thanked 47 Times in 40 Posts
Quote:
Originally Posted by MPaulHolmes View Post
The only reason I was using the dspic was because I wanted it to have CAN, so it can talk with the bms and charger while driving.
Hey Paul,

If you want to add “CANbus” to the Atmega ReVolt Cougar PCB than check this out: CAN-SPI Adapter

You should just be able to interface it into the “Cougar” Rev.C SPI port.

If that would work ??? “CANbus” could be added on-board for next version of the “Cougar” Rev.E ???

-Mark

  Reply With Quote
Alt Today
Popular topics

Other popular topics in this forum...

   
Old 12-18-2010, 12:42 PM   #4132 (permalink)
PaulH
 
MPaulHolmes's Avatar
 
Join Date: Feb 2008
Location: Maricopa, AZ (sort of. Actually outside of town)
Posts: 3,832

Michael's Electric Beetle - '71 Volkswagen Superbeetle 500000
Thanks: 1,368
Thanked 1,202 Times in 765 Posts
Da** it Jim, I'm a substitute teacher, not a miracle worker. Sorry, my nerdy side got the best of me.



Maybe there should be a SM version that just uses the old socketed atmega.

Hey! If I'm understanding this sheet right, the dspic30F Mean Time Between Failures is better than 17,000 years. hahaha. That can't be right can it?!
http://ww1.microchip.com/downloads/e...cs/00097AG.pdf
__________________
kits and boards
  Reply With Quote
Old 12-18-2010, 01:07 PM   #4133 (permalink)
AC-DC enthusiast
 
mrbigh's Avatar
 
Join Date: Nov 2009
Location: Long Island, NY
Posts: 282

Dual-PWR PHEV - '04 Toyota Prius

Kopper - '79 Bradley Bradley GT-II
Thanks: 123
Thanked 54 Times in 37 Posts
In the event that the dsPIC get deprogrammed or "crashes" and that it is realy not abnormal, what would it be necessary for the common Joe to re-program that device?
__________________
. .. .. . .......
Prius Absolutum Dominium . ..........KOPPER
PHEV conversion since Dec 2006.. . .... .Future EV
. . . . . . . .CALCars # 27. . . . . . . . . . ..on the works now !!
. . . . . . . . . . . . . . . . .. . ........
  Reply With Quote
Old 12-18-2010, 01:47 PM   #4134 (permalink)
PaulH
 
MPaulHolmes's Avatar
 
Join Date: Feb 2008
Location: Maricopa, AZ (sort of. Actually outside of town)
Posts: 3,832

Michael's Electric Beetle - '71 Volkswagen Superbeetle 500000
Thanks: 1,368
Thanked 1,202 Times in 765 Posts
It's basically the same as with the atmega. If the chip gets deprogrammed, then you just reprogram it through the ISP interface. That requires a $40 pickit 2 or 3. If the atmega gets deprogrammed, you need an AVRISP, which also costs around $40, or you can make a homemade one. I think they are pretty simple.
__________________
kits and boards
  Reply With Quote
The Following User Says Thank You to MPaulHolmes For This Useful Post:
mrbigh (12-18-2010)
Old 12-18-2010, 03:52 PM   #4135 (permalink)
AC-DC enthusiast
 
mrbigh's Avatar
 
Join Date: Nov 2009
Location: Long Island, NY
Posts: 282

Dual-PWR PHEV - '04 Toyota Prius

Kopper - '79 Bradley Bradley GT-II
Thanks: 123
Thanked 54 Times in 37 Posts
ISP programmer

Quote:
Originally Posted by MPaulHolmes View Post
It's basically the same as with the atmega. If the chip gets deprogrammed, then you just reprogram it through the ISP interface. That requires a $40 pickit 2 or 3. If the atmega gets deprogrammed, you need an AVRISP, which also costs around $40, or you can make a homemade one. I think they are pretty simple.
PAUL, thank you.

This is the type of information that I was looking at for everybody information.
__________________
. .. .. . .......
Prius Absolutum Dominium . ..........KOPPER
PHEV conversion since Dec 2006.. . .... .Future EV
. . . . . . . .CALCars # 27. . . . . . . . . . ..on the works now !!
. . . . . . . . . . . . . . . . .. . ........
  Reply With Quote
Old 12-19-2010, 12:52 PM   #4136 (permalink)
EcoModding Apprentice
 
Join Date: Nov 2010
Location: Annapolis
Posts: 159
Thanks: 0
Thanked 32 Times in 27 Posts
Quote:
Originally Posted by sawickm View Post
Hey Paul,

If you want to add “CANbus” to the Atmega ReVolt Cougar PCB than check this out: CAN-SPI Adapter

You should just be able to interface it into the “Cougar” Rev.C SPI port.

If that would work ??? “CANbus” could be added on-board for next version of the “Cougar” Rev.E ???

-Mark
There are several CAN controller boards advertised on the web. None are readily available in the U.S., and they are expensive for what they are. They all use the MCP2515 chip I talked about in post 4157
http://ecomodder.com/forum/showthrea...tml#post209940

As I mentioned in that post, the main chip is under $2 in single unit quantities. They *might* be able to justify their US$50 price if they have jumper options for an isolating transceiver and on-board voltage conversion. But they are just the MCP2515 and a basic transceiver.

(The MCP2515 is pretty much the only external CAN controller available. The few others are out of production, so you can pretty much expect that's the chip everyone is using. And it's available in a standard DIP package so it's easy to do a DIY build project.)

All of the boards require more signals than the Cougar brings out to its header. The Cougar doesn't have a SPI chip select there, and this chip works best with an interrupt line.

In my implementation I clock the chip from a timer output run at 8MHz, so that's a third additional connection, although with the Cougar you might prefer to use a 16MHz crystal. Once you are doing that wiring, you might as well do the rest of the assembly on a protoboard.

The challenge, as always, is the software to make it work. I have a pretty good first pass that should be close to working with the Cougar if someone wants to work on the testing with me. Note that you can only test CAN if you already have a working network, as it requires at least one other active node to set the acknowledge bit.
  Reply With Quote
Old 12-19-2010, 02:23 PM   #4137 (permalink)
dwffy
 
Join Date: Jul 2009
Location: Calgary - Canada
Posts: 37
Thanks: 0
Thanked 1 Time in 1 Post
Hi folks,
I want to throw in a quick question here to see what you guys think of this idea.
When pulling away from being stationary, the acceleration in the vehicle is reasonable and it would be nice to get an extra boost on occasions. Now here's my idea. What if I had a contactor connected from Motor - connection to B- connection of the pack and used a push button to engage it, but, only after the vehicle was already in motion. This should give full pack voltage across the motor without effecting the controller. Could this be a real idea to get a great boost on take off, or would it only let out the magic smoke?
-Doug
  Reply With Quote
Old 12-19-2010, 10:04 PM   #4138 (permalink)
EcoModding Lurker
 
Join Date: Oct 2009
Location: North Carolina
Posts: 41
Thanks: 23
Thanked 8 Times in 4 Posts
Wow Paul! How'd you know I was a Star Trek fan.... Loved it!

If the MicroChip was to be placed and soldered to the board by the company making the boards for you (I think that's what the post stated), then if there is a socket for the chip you would not have to redesign the board. But, if it is not in a PLCC package, it would probably be a PITA!

Unless you do something careless to the control board, IC's are pretty reliable these days. So you may never have to replace it.
  Reply With Quote
Old 12-19-2010, 10:33 PM   #4139 (permalink)
AC-DC enthusiast
 
mrbigh's Avatar
 
Join Date: Nov 2009
Location: Long Island, NY
Posts: 282

Dual-PWR PHEV - '04 Toyota Prius

Kopper - '79 Bradley Bradley GT-II
Thanks: 123
Thanked 54 Times in 37 Posts
Quote:
Originally Posted by electricstorm View Post
But, if it is not in a PLCC package, it would probably be a PITA!

Unless you do something careless to the control board, IC's are pretty reliable these days. So you may never have to replace it.
Do you remember "Murphy's law".....................
__________________
. .. .. . .......
Prius Absolutum Dominium . ..........KOPPER
PHEV conversion since Dec 2006.. . .... .Future EV
. . . . . . . .CALCars # 27. . . . . . . . . . ..on the works now !!
. . . . . . . . . . . . . . . . .. . ........
  Reply With Quote
Old 12-23-2010, 07:18 PM   #4140 (permalink)
EcoModding Lurker
 
Join Date: Nov 2008
Location: Georgia
Posts: 19
Thanks: 1
Thanked 4 Times in 3 Posts
Quote:
Originally Posted by Dwffy View Post
Hi folks,
I want to throw in a quick question here to see what you guys think of this idea.
When pulling away from being stationary, the acceleration in the vehicle is reasonable and it would be nice to get an extra boost on occasions. Now here's my idea. What if I had a contactor connected from Motor - connection to B- connection of the pack and used a push button to engage it, but, only after the vehicle was already in motion. This should give full pack voltage across the motor without effecting the controller. Could this be a real idea to get a great boost on take off, or would it only let out the magic smoke?
-Doug
Doug,

A 5 second blurb on how motor controllers work. They always apply the full pack voltage to the motor. What varies is the amount of time that voltage is applied. This is known as pulse width modulation, or PWM.

A motor controller at 100% PWM is exactly the same as your proposed contactor.

So all that is really needed is a push button to the controller and a small bit of code that sets the PWM to 100% when the button is pushed.

But IIRC this is usually the same effect as pushing the gas pedal all the way down.

Now there is one problem with both approaches. Generally when the car is at a stop and full power is applied, the current from the batteries into the motor (and all parts inbetween) shoots through the roof. So the controller measures the amount of current and cuts off power when an overcurrent condition occurs.

The problem with your pushbutton to the contactor is that if the current exceeds the contactor rating, it can cause the contacts to meld together and not be able to release. Same for frying the electronics of the controller.

So be careful if you take this approach.

ga2500ev

  Reply With Quote
Reply  Post New Thread




Similar Threads
Thread Thread Starter Forum Replies Last Post
Paul and Sabrina's Cheap 3 Phase Inverter (AC Controller) with Field Oriented Control MPaulHolmes Fossil Fuel Free 3480 05-04-2022 05:43 PM
Paul & Sabrina's Cheap EV Conversion MPaulHolmes Fossil Fuel Free 542 11-12-2016 09:09 PM
Three Dirt Cheap DIY Electric Cars - Part 5 SVOboy EcoModder Blog Discussion 0 12-12-2008 04:10 PM



Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.5.2
All content copyright EcoModder.com