Skip to main content

What You Need To Know About Battery In EV

What You Need To Know About Battery In EV

Battery is used to supply power to your car. Battery have two type of terminal which is positive(anode) and negative(cathode). Generally, battery is combination single cell or multiple cell that used to generate or store energy.

There are two type of battery which is primary and secondary. Primary is single used while secondary is rechargeable battery. A common primary battery is dry battery. Phone, smartwatch, others portable electronic devices and automobiles mostly used secondary battery.  

Battery used in EV

There have four kinds of battery using in EV car. 
  1. Lithium-ion
  2. Nickel-metal hydride
  3. Lead-acid
  4. Ultracapacitors

Lithium-ion batteries

Lithium-ion battery used in most electrical vehicle. It also using in our tablet, phone and other electronic devices. In 1991, Sony Corporation has produced and commercialized it first lithium-ion battery. Then, other company including Apples nowadays using it.

 Takes from Apples when it said ..

Compared with traditional battery technology, lithium-ion batteries charge faster, last longer and have a higher power density for more battery life in a lighter package. When you know a little about how they work, they can work that much better for you "

Lithium is the lightest compare to others metals. It has the great electrochemical potential and have high energy efficiency. Example of the car manufacturing used lithium-ion is Nissan.

Source: https://www.nissan-global.com/

 

Nickel-metal hydride

Nickel-metal hydride mostly used in hybrid-car. This is excluded from categorized under Electrical Vehicle because it did not rely from external power to recharge but use fuel. Compare to Lithium-ion battery, Nickel-metal hydride battery more expensive and self-discharge rate higher than Lithium-ion battery. The advantages of this battery is it can store more energy longer than others.



In Conclusion

Even lithium-ion battery currently widely used in automotive neither portable electronic devices. Current demand and technology always push car manufacturer to improve their system. 


Quoting from a news cnbc.com on 30th June 2020,

1. As Tesla plans next-generation electric vehicle batteries, focus is turning to lithium iron, not the lithium ion that has been the fundamental chemical engineering science powering EVs to date.

  • 2. Elon Musk’s car company and GM, among other auto companies, want much longer-range and more durable battery cells.
  • 3. New battery technology is possible, allowing cars to go 400 miles or more between charges and lasting as long as 1 million miles. That could spur EV sales the same way the first 100,000-mile warranties on gas cars once did.
  • 4. Eliminating the rare, expensive and controversial element cobalt from batteries is among the biggest aims."




Comments

Popular posts from this blog

Arduino Interfacing With LCD(16x02) Without Potentiometer

All, today i gonna to share how Arduino connected to LCD(16x02). LCD 16x02 means 16 character in 2 rows. Connection between LCD and UNO Code: #include <LiquidCrystal.h> int Contrast=75;  LiquidCrystal lcd(12, 11, 5, 4, 3, 2);   void setup()  {     analogWrite(6,Contrast);      lcd.begin(16, 2);   }      void loop()  {      lcd.setCursor(0, 0);      lcd.print("ITS WORK");        lcd.setCursor(0, 1);      lcd.print("WELL DONE");  }

L298N motor with Ultrasonic Sensor using Can Bus MCP2515

Today, I will share the project where we use 2x Arduino where each Arduino act as Transmitter to measure a distance using Ultrasonic sensor and Receiver controlling L98N motor driver. Ultrasonic Sesnor L298N Motor Driver            Two output Motor Driver with Enable pin for both Motor. Requirement: 1. 2x Arduino 2. 2x MCP2515 CAN module 3. L298N Motor Driver 4. Ultrasonic Sensor 5. 12V battery 6. Download NewPing, SPI and mcp2515 into Arduino. Instruction: 1. Connect Arduino Nano to Ultrasonic sensor. 2. Connect Arduino Nano to MCP2515(1) through SPI connection. 3. Connect MCP2515(1) with MCP2515(2) using CAN-H and CAN-L wire. 4. Connect MCP2515(2) to Arduino Uno through SPI connection. 5. Connect Arduino Uno with Motor L298N. Code: Transmitter: #include <NewPing.h> #include <SPI.h>          //Library for using SPI Communication ...

black box airplane concept vs error memory in car

IS MY CAR HAVE A BLACK BOX? The Black Box usually we heard when there have a crash in airplane. Do we know that in other things also have similar concept to black box function? Let me thinks..Hmm..Actually this is part of my job as failure analysis engineer. I have to analyze each byte or each line of error memory(together with development team when required:)..) to know what is the problem with our unit specifically and impact to user while driving? Its quite interesting task because from here we can justify what is the problem.  Our question now Is it similar concept to Black Box is airplane? I can said Yes and No:). Let have a look what is concept of Black Box in airplane. Concept Of Black Box According to wiki, black box is a box which contain electronic recording device placed in aircraft for the purpose on analysis and investigation if there have an accident.  There are two different flight recorder devices:  1. The  flight data recorder  ( FDR ) preserves...