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 02-06-2011, 11:30 PM   #4331 (permalink)
EcoModding Apprentice
 
Join Date: Nov 2010
Location: Annapolis
Posts: 159
Thanks: 0
Thanked 32 Times in 27 Posts
Quote:
Originally Posted by wakinyantanka View Post
IXYS makes these; IXFN230N20T. I think they will work nicely. At least I hope so.
OK, I see Digikey has these, although they are $25 each instead of $7.74. That's a pretty hefty bump in price.

  Reply With Quote
Alt Today
Popular topics

Other popular topics in this forum...

   
Old 02-07-2011, 04:28 AM   #4332 (permalink)
EcoModding Apprentice
 
Join Date: Oct 2009
Location: Jyvaskyla, Finland
Posts: 143

Golfwagen - '89 Volkswagen Golf mk2
90 day: 107.14 mpg (US)
Thanks: 47
Thanked 35 Times in 28 Posts
Quote:
Originally Posted by emeded View Post
Did anybody try this controller with the Kostov 9" motor? I assume there should not be a problem as this is series wound motor as well.
Quote:
Originally Posted by mora View Post
Hey, I have 9" Kostov but it is still in its wooden box, hehe. I still need coupler back from the machinist. I also use P&S's controller. Any DC/series Kostov should be fine with this controller. I suppose those will also perform pretty well as most of their motor test data goes over 500A at 144V.
I finally got (almost) everything set up and tried the motor in real-life conditions. Runs well and pulls good if I command it to do so. I've limited battery amps to 300, current ramp rate to 20 and kp/ki set to 8 and 20 if I remember right. I'll need to check all the other values next weekend when I get to drive the car again. Values might still need more tuning. I'm using 96V/90Ah Thundersky-pack.

Controller works great. It reacts immediately to throttle pedal and feels really smooth. I connected a laptop to controller using Deltaco-branded usb-serial -adapter and used RTD Explorer for monitoring and setting all the parameters. On -15C day I managed to get heatsink temperature to -6C after driving for a while. Now I need to run that serial cable through firewall and have some driving data logged.
  Reply With Quote
The Following User Says Thank You to mora For This Useful Post:
MPaulHolmes (02-07-2011)
Old 02-07-2011, 08:21 AM   #4333 (permalink)
Custom EV Builder...
 
Join Date: Jul 2009
Location: Ohio
Posts: 57
Thanks: 8
Thanked 1 Time in 1 Post
Quote:
Originally Posted by DJBecker View Post
OK, I see Digikey has these, although they are $25 each instead of $7.74. That's a pretty hefty bump in price.
Yes, much more expensive. For me though there are some advantages that I'm willing to pay for.
  Reply With Quote
Old 02-07-2011, 08:52 AM   #4334 (permalink)
EcoModding Lurker
 
Join Date: Feb 2011
Location: arizona
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Smile

Quote:
Originally Posted by DJBecker View Post
You'll likely find the Arduino hardware easier to start with.

The Arduino boards use the Atmel ATMega AVR processor family, the same type as the Cougar. You won't need most of the hardware on the Cougar board, and the Cougar firmware will run on any of the Arduino boards with only a few minor changes.

The bonus is that there are many plug-in "shield" and "module" boards for Arduino cards, so you can often do projects just plugging them in rather than doing modules.

THANKS DJ!

I was thinking of the Arduino because I saw a shield that would read an SD card (and give me some memory for variables like ramp-up speed, and maybe even thermal cutout time)

'course I could also use it to do something *Really* stupid, and make it "self-reprogram" I.e. if I should make changes to the code, simply name it something specific. then the old program could write the new one to the microcontroller! kinda like firmware revisions.

I think this could be marketable...
  Reply With Quote
Old 02-07-2011, 10:06 AM   #4335 (permalink)
EcoModding Apprentice
 
Join Date: Nov 2010
Location: Annapolis
Posts: 159
Thanks: 0
Thanked 32 Times in 27 Posts
Quote:
Originally Posted by shortcircuit View Post
THANKS DJ!

I was thinking of the Arduino because I saw a shield that would read an SD card (and give me some memory for variables like ramp-up speed, and maybe even thermal cutout time)
The software to read and write SD cards is a bit complicated. You'll definitely want to use one of the processors with more memory, and a pre-written library.

You won't be able to run programs from the SD card. Programs have to be first copied to the internal flash, which is a pretty slow process.

The Arduino boards all come with a small bootloader program that runs right after reset to check if you want to download a new program. If there isn't a download request, it jumps to the user program. This works pretty well for updates, but you do have to check that it won't screw up your control. The bootloader sets all of the OCR1A/B/C pins to outputs, which might command full throttle for one or two seconds.

The AVR processors all have small EEPROM memories which is where operational parameters are usually saved.
  Reply With Quote
Old 02-07-2011, 10:22 AM   #4336 (permalink)
EcoModding Lurker
 
Join Date: Feb 2011
Location: arizona
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by DJBecker View Post
The software to read and write SD cards is a bit complicated. You'll definitely want to use one of the processors with more memory, and a pre-written library.

You won't be able to run programs from the SD card. Programs have to be first copied to the internal flash, which is a pretty slow process.

The Arduino boards all come with a small bootloader program that runs right after reset to check if you want to download a new program. If there isn't a download request, it jumps to the user program. This works pretty well for updates, but you do have to check that it won't screw up your control. The bootloader sets all of the OCR1A/B/C pins to outputs, which might command full throttle for one or two seconds.

The AVR processors all have small EEPROM memories which is where operational parameters are usually saved.
so my best option is to simply use a USB arduino to make programming/reprogramming easy....
THANKS!
  Reply With Quote
Old 02-07-2011, 03:45 PM   #4337 (permalink)
EV Connoisseur
 
Join Date: Aug 2010
Location: Amsterdam
Posts: 309
Thanks: 70
Thanked 109 Times in 90 Posts
One question about the thermal isolation..

Would it be better or worse to use the thicker isolation pad of 0.020" ?
These are more expensive.. does that mean better?
  Reply With Quote
Old 02-07-2011, 03:48 PM   #4338 (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
I think it's safer from accidental poke-throughs, but worse heat transfer. So, if we are just really really careful about making the heat spreader mirror smooth (I plan on milling flat all of the heatspreader faces, which I don't normally do), and clamp the mosfets and diodes down, I think it will be fine.
__________________
kits and boards
  Reply With Quote
Old 02-07-2011, 04:14 PM   #4339 (permalink)
EcoModding Apprentice
 
Join Date: Nov 2010
Location: Annapolis
Posts: 159
Thanks: 0
Thanked 32 Times in 27 Posts
Quote:
Originally Posted by flores View Post
One question about the thermal isolation..

Would it be better or worse to use the thicker isolation pad of 0.020" ?
These are more expensive.. does that mean better?
Isolation pads come in different thicknesses using the same material. Thicker isolation pads have worse heat transfer, but it's not linear with thickness. You can end up with better thermal performance with a thicker pad when you have irregular surfaces.

Not all thermal sheets are the same -- there is a huge difference in conductivity, and you generally pay a lot for the better materials. If you need the best... well, they know you *really* need it and price to match.
  Reply With Quote
Old 02-07-2011, 07:51 PM   #4340 (permalink)
EcoModding Noob
 
twotires's Avatar
 
Join Date: Dec 2010
Location: Raleigh, NC, USA
Posts: 24
Thanks: 9
Thanked 4 Times in 3 Posts
I got a sample of thermal gap pad .... but it's only 4 in X 4 in - would it be OK to cut 20 mosfet-sized squares and only cover the backs of each device?

  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