01-08-2010, 12:30 PM
|
#111 (permalink)
|
EV test pilot
Join Date: Jan 2008
Location: Oconomowoc, WI, USA
Posts: 4,435
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.
|
|
|
The Following User Says Thank You to bennelson For This Useful Post:
|
|
Today
|
|
|
Other popular topics in this forum...
|
|
|
01-08-2010, 03:41 PM
|
#112 (permalink)
|
Master EcoModder
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
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.
|
|
|
01-11-2010, 04:24 PM
|
#113 (permalink)
|
Administrator
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203
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...
|
|
|
The Following 2 Users Say Thank You to Daox For This Useful Post:
|
|
01-11-2010, 04:54 PM
|
#114 (permalink)
|
EcoModding Seeker
Join Date: Mar 2008
Location: Madison, WI
Posts: 106
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
|
|
|
The Following User Says Thank You to ericbecky For This Useful Post:
|
|
01-11-2010, 05:00 PM
|
#115 (permalink)
|
Administrator
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203
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.
|
|
|
The Following User Says Thank You to Daox For This Useful Post:
|
|
01-11-2010, 11:19 PM
|
#116 (permalink)
|
Administrator
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203
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.
|
|
|
The Following User Says Thank You to Daox For This Useful Post:
|
|
01-12-2010, 10:00 AM
|
#117 (permalink)
|
Administrator
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203
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?
Last edited by Daox; 01-12-2010 at 10:13 AM..
|
|
|
The Following 2 Users Say Thank You to Daox For This Useful Post:
|
|
01-12-2010, 11:56 AM
|
#118 (permalink)
|
Batman Junior
Join Date: Nov 2007
Location: 1000 Islands, Ontario, Canada
Posts: 22,527
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?
|
|
|
The Following User Says Thank You to MetroMPG For This Useful Post:
|
|
01-12-2010, 02:12 PM
|
#119 (permalink)
|
Administrator
Join Date: Dec 2007
Location: Germantown, WI
Posts: 11,203
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.
|
|
|
01-12-2010, 03:05 PM
|
#120 (permalink)
|
Batman Junior
Join Date: Nov 2007
Location: 1000 Islands, Ontario, Canada
Posts: 22,527
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.
|
|
|
The Following User Says Thank You to MetroMPG For This Useful Post:
|
|
|