Go Back   EcoModder Forum > EcoModding > Hybrids
Register Now
 Register Now
 

Reply  Post New Thread
 
Submit Tools LinkBack Thread Tools
Old 01-08-2010, 12:30 PM   #111 (permalink)
EV test pilot
 
bennelson's Avatar
 
Join Date: Jan 2008
Location: Oconomowoc, WI, USA
Posts: 4,435

Electric Cycle - '81 Kawasaki KZ440
90 day: 334.6 mpg (US)

S10 - '95 Chevy S10
90 day: 30.48 mpg (US)

Electro-Metro - '96 Ben Nelson's "Electro-Metro"
90 day: 129.81 mpg (US)

The Wife's Car - Plug-in Prius - '04 Toyota Prius
90 day: 78.16 mpg (US)
Thanks: 17
Thanked 663 Times in 388 Posts
In general, I would recommend a fire extinguisher in ANY and ALL cars, gasoline, electric, or otherwise. (Make sure it is an extinguisher rated for electrical fires though.)

General precautions, like a good main fuse and disconnect are standard and MUST be used.

In my EV conversion, I told my insurance agent exactly what I had planned to do with the car, and she had no problem with it. In most ways, it is just like when someone takes one engine out of their truck and puts a different one in.

I would imagine that insurance would cover the CAR fine, but simply WOULDN'T cover the PHEV kit. Many insurance policies clearly state that they don't cover after-market items added to the car.

__________________


300mpg.org Learn how to BUILD YOUR OWN ELECTRIC CAR CHEAP
My YouTube Videos
  Reply With Quote
The Following User Says Thank You to bennelson For This Useful Post:
dave77 (01-08-2010)
Alt Today
Popular topics

Other popular topics in this forum...

   
Old 01-08-2010, 03:41 PM   #112 (permalink)
Master EcoModder
 
roflwaffle's Avatar
 
Join Date: Dec 2007
Location: Southern California
Posts: 1,490

Camryaro - '92 Toyota Camry LE V6
90 day: 31.12 mpg (US)

Red - '00 Honda Insight

Prius - '05 Toyota Prius

3 - '18 Tesla Model 3
90 day: 152.47 mpg (US)
Thanks: 349
Thanked 122 Times in 80 Posts
Quote:
Originally Posted by hugho View Post
Good luck buying Chinese junque. I hate to throw cold water on someone willing and brave enough to be out there in front of the Pack. What happens if it catches fire? Will your insurance cover it? Probably not. I would keep my mouth shut. Unless cost and reliability show some positive direction, the Lithium battery future will be a dead end. It is so far. But good luck and good on you for trying to push the envelope.
It probably won't catch fire, although I wouldn't stick around to inhale the magic smoke. Insurance also won't cover it, but at least w/ these batteries I don't think there's much to worry about.
  Reply With Quote
Old 01-11-2010, 04:24 PM   #113 (permalink)
Administrator
 
Daox's Avatar
 
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203

CM400E - '81 Honda CM400E
90 day: 51.49 mpg (US)

Daox's Grey Prius - '04 Toyota Prius
Team Toyota
90 day: 49.53 mpg (US)

Daox's Insight - '00 Honda Insight
90 day: 64.33 mpg (US)

Swarthy - '14 Mitsubishi Mirage DE
Mitsubishi
90 day: 56.69 mpg (US)

Daox's Volt - '13 Chevrolet Volt
Thanks: 2,501
Thanked 2,587 Times in 1,554 Posts
I started and mostly finished the coding for the arduino during lunch today. I added a lot of comments (everything after the //) so hopefully someone other than me can understand how it is operating.

If it is complete gibberish I can type out how it is working.



/*
PHEV Automatic Charger Disconnect
This program monitors a signal from an alarm. Upon
getting a verified signal that the alarm is going off,
the Arduino disconnects power via a relay.
*/

const int AlarmPin = 1; // pin to monitor alarm signal
const int RelayPin = 2; // pin to signal the relay
int AlarmPinStatus = 0; // relays AlarmPin status
boolean RelayPinStatus = true; // RelayPin on/off
boolean AlarmCheck = false; // makes sure alarm goes off before counters can increment again
int AlarmCounter = 0; // counts alarms to verify true/false alarm
unsigned long LastAlarmTime; // time since the last beep
unsigned long ChargerOffTime; // time since the charger was turned off


void setup() {
pinMode(AlarmPin, INPUT);
pinMode(RelayPin, OUTPUT);
digitalWrite(RelayPin, HIGH); // turn relay on
}

void loop() {

AlarmPinStatus = digitalRead(AlarmPin); // read AlarmPin status

if (AlarmPinStatus == HIGH && AlarmCheck == false) { // check for alarm & alarm check
++AlarmCounter; // increment alarm counter
LastAlarmTime = millis(); // set last beep timer
AlarmCheck = true; // prevent AlarmCounter increment until alarm turns off
}
if (AlarmPinStatus == LOW) { // verify alarm is off before counters can increment again
AlarmCheck = false;
}
if (millis() - LastAlarmTime > 20000) { // if it has been more than 20 seconds since the last beep
LastAlarmTime = 0; // reset last beep timer
}
if (AlarmCounter = 15) { // if alarm has gone off 15 times within 20 seconds
AlarmCounter = 0; // reset AlarmCounter
digitalWrite(RelayPin, LOW); // turn charger off
RelayPinStatus = false;
ChargerOffTime = millis(); // set charger off time
}
if (millis() - ChargerOffTime > 3600000 && RelayPinStatus == false) { // wait 60 minutes with charger off
digitalWrite(RelayPin, HIGH); // turn charger back on
RelayPinStatus = true;
}
}


Wow, thats really messy and hard to read on a forum...
__________________
Current project: A better alternator delete
  Reply With Quote
The Following 2 Users Say Thank You to Daox For This Useful Post:
dave77 (01-11-2010), lacertus (04-14-2011)
Old 01-11-2010, 04:54 PM   #114 (permalink)
EcoModding Seeker
 
ericbecky's Avatar
 
Join Date: Mar 2008
Location: Madison, WI
Posts: 106

red - '02 Honda Insight
Thanks: 0
Thanked 7 Times in 7 Posts
Good to see that you are making progress.
How'd you decide "..15 times within 20 seconds".
Was that just a random choice?
__________________
Eric Powers
Your Hybrid Battery Hero
EV Powers Hybrid Battery Service and Repair
Madison, Wisconsin
www.evpowers.com
  Reply With Quote
The Following User Says Thank You to ericbecky For This Useful Post:
dave77 (01-11-2010)
Old 01-11-2010, 05:00 PM   #115 (permalink)
Administrator
 
Daox's Avatar
 
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203

CM400E - '81 Honda CM400E
90 day: 51.49 mpg (US)

Daox's Grey Prius - '04 Toyota Prius
Team Toyota
90 day: 49.53 mpg (US)

Daox's Insight - '00 Honda Insight
90 day: 64.33 mpg (US)

Swarthy - '14 Mitsubishi Mirage DE
Mitsubishi
90 day: 56.69 mpg (US)

Daox's Volt - '13 Chevrolet Volt
Thanks: 2,501
Thanked 2,587 Times in 1,554 Posts
It is based roughly on the beeping speed I've heard while they are going off. It appears the balancers beep roughly twice a second. I just put that together with a specified time to weed out the false alarms. Its completely adjustable and may need to be.
__________________
Current project: A better alternator delete
  Reply With Quote
The Following User Says Thank You to Daox For This Useful Post:
dave77 (01-11-2010)
Old 01-11-2010, 11:19 PM   #116 (permalink)
Administrator
 
Daox's Avatar
 
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203

CM400E - '81 Honda CM400E
90 day: 51.49 mpg (US)

Daox's Grey Prius - '04 Toyota Prius
Team Toyota
90 day: 49.53 mpg (US)

Daox's Insight - '00 Honda Insight
90 day: 64.33 mpg (US)

Swarthy - '14 Mitsubishi Mirage DE
Mitsubishi
90 day: 56.69 mpg (US)

Daox's Volt - '13 Chevrolet Volt
Thanks: 2,501
Thanked 2,587 Times in 1,554 Posts
Well, timing is going well. I received the VOX circuit tonight. The kit is pretty small, so I went ahead and soldered it up tonight.

Kit and contents.





The assembled kit. I must say, the kit is pretty straight forward, but there are no step by step instructions. So, you really have to be careful about getting things in the right place (only had to move one item I had soldered down), and getting polarity right and things like that.





Its getting late for me (wake up at 4am for work blah), so I'll do some testing later this week. I'll get some video and adjust it or something.

I'll be going to the local EV build this weekend. At that point I'll be picking up a solid state relay from a member of the group.
__________________
Current project: A better alternator delete
  Reply With Quote
The Following User Says Thank You to Daox For This Useful Post:
dave77 (01-12-2010)
Old 01-12-2010, 10:00 AM   #117 (permalink)
Administrator
 
Daox's Avatar
 
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203

CM400E - '81 Honda CM400E
90 day: 51.49 mpg (US)

Daox's Grey Prius - '04 Toyota Prius
Team Toyota
90 day: 49.53 mpg (US)

Daox's Insight - '00 Honda Insight
90 day: 64.33 mpg (US)

Swarthy - '14 Mitsubishi Mirage DE
Mitsubishi
90 day: 56.69 mpg (US)

Daox's Volt - '13 Chevrolet Volt
Thanks: 2,501
Thanked 2,587 Times in 1,554 Posts
I've also been thinking about how to automatically disconnect the dc to dc converter and I think I have it figured out. The idea is to tap into the ethernet line that goes up to the switch up front. This can be done with connectors so install is very easy and no wire cutting is necessary. The switch up front sends a 12v ready signal to the dc to dc converter. I will use that 12V to power the arduino and another relay. The relay will disconnect 12V power after the arduino thus keeping power to the arduino, but cutting it to the dc to dc converter. This will also prevent the arduino from drawing 12V power while the car is off. Thusly, if you turn the PHEV switch up front off, the arduino will power down. When you turn it back on, it will restart the program canceling the 60 minute timer currently built in to the program.

Thoughts?
__________________
Current project: A better alternator delete

Last edited by Daox; 01-12-2010 at 10:13 AM..
  Reply With Quote
The Following 2 Users Say Thank You to Daox For This Useful Post:
dave77 (01-12-2010), lacertus (04-14-2011)
Old 01-12-2010, 11:56 AM   #118 (permalink)
Batman Junior
 
MetroMPG's Avatar
 
Join Date: Nov 2007
Location: 1000 Islands, Ontario, Canada
Posts: 22,527

Blackfly - '98 Geo Metro
Team Metro
Last 3: 70.09 mpg (US)

MPGiata - '90 Mazda Miata
90 day: 54.46 mpg (US)

Even Fancier Metro - '14 Mitsubishi Mirage top spec
90 day: 70.75 mpg (US)

Appliance car Mirage - '14 Mitsubishi Mirage ES (base)
90 day: 62.14 mpg (US)
Thanks: 4,078
Thanked 6,976 Times in 3,612 Posts
Makes sense to use the existing circuit.

Have you tried the VOX thinger yet? Any way to test it?
__________________
Project MPGiata! Mods for getting 50+ MPG from a 1990 Miata
Honda mods: Ecomodding my $800 Honda Fit 5-speed beater
Mitsu mods: 70 MPG in my ecomodded, dirt cheap, 3-cylinder Mirage.
Ecodriving test: Manual vs. automatic transmission MPG showdown



EcoModder
has launched a forum for the efficient new Mitsubishi Mirage
www.MetroMPG.com - fuel efficiency info for Geo Metro owners
www.ForkenSwift.com - electric car conversion on a beer budget
  Reply With Quote
The Following User Says Thank You to MetroMPG For This Useful Post:
dave77 (01-12-2010)
Old 01-12-2010, 02:12 PM   #119 (permalink)
Administrator
 
Daox's Avatar
 
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203

CM400E - '81 Honda CM400E
90 day: 51.49 mpg (US)

Daox's Grey Prius - '04 Toyota Prius
Team Toyota
90 day: 49.53 mpg (US)

Daox's Insight - '00 Honda Insight
90 day: 64.33 mpg (US)

Swarthy - '14 Mitsubishi Mirage DE
Mitsubishi
90 day: 56.69 mpg (US)

Daox's Volt - '13 Chevrolet Volt
Thanks: 2,501
Thanked 2,587 Times in 1,554 Posts
Nope, its not tested yet. For all I know it could blow up like the pwm controller I built a few weeks ago. I hope not.

I'll probably test it in the next few days. The LED lights up when the relay is triggered, so all it needs is power.
__________________
Current project: A better alternator delete
  Reply With Quote
Old 01-12-2010, 03:05 PM   #120 (permalink)
Batman Junior
 
MetroMPG's Avatar
 
Join Date: Nov 2007
Location: 1000 Islands, Ontario, Canada
Posts: 22,527

Blackfly - '98 Geo Metro
Team Metro
Last 3: 70.09 mpg (US)

MPGiata - '90 Mazda Miata
90 day: 54.46 mpg (US)

Even Fancier Metro - '14 Mitsubishi Mirage top spec
90 day: 70.75 mpg (US)

Appliance car Mirage - '14 Mitsubishi Mirage ES (base)
90 day: 62.14 mpg (US)
Thanks: 4,078
Thanked 6,976 Times in 3,612 Posts
I love that you're essentially making a version of The Clapper for your PHEV Prius.

__________________
Project MPGiata! Mods for getting 50+ MPG from a 1990 Miata
Honda mods: Ecomodding my $800 Honda Fit 5-speed beater
Mitsu mods: 70 MPG in my ecomodded, dirt cheap, 3-cylinder Mirage.
Ecodriving test: Manual vs. automatic transmission MPG showdown



EcoModder
has launched a forum for the efficient new Mitsubishi Mirage
www.MetroMPG.com - fuel efficiency info for Geo Metro owners
www.ForkenSwift.com - electric car conversion on a beer budget
  Reply With Quote
The Following User Says Thank You to MetroMPG For This Useful Post:
dave77 (01-12-2010)
Reply  Post New Thread




Similar Threads
Thread Thread Starter Forum Replies Last Post
Gen I (2001-2003 Prius ) 30 Battery Modules for sale Matt Herring Fossil Fuel Free 0 10-17-2009 02:39 PM
"Sonata" Lithium Ion battery NeilBlanchard General Efficiency Discussion 0 09-08-2008 04:19 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