Tech Explained: The Truth Behind Partial Charging of Lithium Ion Batteries

Most tech enthusiasts will know that Li-ion batteries in your phones, laptops, tablets, and watches can have a longer life cycle if they’re not always charged to 100%. If you didn’t know this, it’s true, and it’s not a myth. Let’s delve into why today.

When a Li-ion battery is recharged, from an external power source, it forces Lithium ions to move from positive to negative terminals through the electrolyte, when discharged the reverse happens and power is delivered to the load. During the discharge process, all the Lithium ions don’t reach back to the positive terminal and with repeated usage, it forms a layer of Li atoms on the negative terminal(reducing efficiency for the next cycle). Another key thing is the depth of Discharge(DoD) of Li-ion batteries. Here’s where Depth of Discharge (DoD) comes in. DoD is the percentage of battery capacity that’s been used up. For instance, a 60% DoD means 60% of the battery power has been discharged.

The larger the DoD value, more the deposition of Li atoms on the terminal and the thicker it becomes in further discharge cycles. This is what is causing the drop in battery capacity over multiple cycles. It can reduce the overall lifetime to say around 500 charge cycles before overall capacity drastically drops.

To increase your battery’s lifespan, you need to reduce the DoD, meaning limit the level to which a battery discharges and also the maximum level to which it can be charged. A 60% DoD can potentially triple your battery recharge lifetime cycles(Check the table). However, this means power output in a single cycle is smaller. So, if possible, keep your devices at 60-80% max capacity and charge only when it’s below 20%. It’s a small change that can make a big difference to your battery’s lifespan!

BTW, If you’re keen on diving deeper into batteries and related topics, drop comments or DM! I’m considering creating a detailed BackToBasics series if there is enough interest, but it’ll take some time.

If you liked the post, Share it with your friends!

Back to Basics: EtherCAT

So EtherCAT is a relatively new(2003) cool bit of industrial Ethernet protocol designed for real-time control and automation applications. Its fundamental goal was to apply Ethernet to applications that need very short update intervals of less than 100us for let’s say fast sensor readings. It uses the same physical layer(2 wires) of Ethernet with normal Cat5 cabling. The EtherCAT data frame embeds its payload in a standard Ethernet frame.

It has a master-slave architecture with the master sending a single frame (called a telegram) that passes through each node in the network. Each EtherCAT slave/node device reads the data addressed to it and inserts its data into the frame as the frame is moving downstream. The telegram moves across the network (let’s say in a ring topology) to all the nodes and returns to the master. This is where it’s much faster compared to Ethernet where it will be point-to-point. Think of it like a train with empty bogies running through a network where each node takes the data it needs and puts in the data it needs to send to the master. So technically in a single frame master can get info from all the nodes in one go.

So on hardware for all nodes, you will need(most of the time) two ethernet ports, one more input, and one for output to daisy chain to other downstream nodes. These slave/node devices have an EtherCAT Slave Controller (ESC) that does “processing on the fly” on the hardware itself enabling faster communication compared to Ethernet. Another great feature is that the master sends a special EtherCAT datagram at short intervals, in which the EtherCAT slave with the reference clock enters its current time. This information is then read from the same datagram by all other EtherCAT slaves featuring a slave clock. It ensures precise synchronization across devices, solving problems related to clock-shifting between the master and the devices.

EtherCAT is definitely gaining traction in industrial automation domains because of its speed. If you’re considering diving into projects within this sector, it’s worth spending the time to learn it.

If you liked the post, Share it with your friends!
1 30 31 32 33 34 86