-50%

8x New In Box Headway 38120 HP 3.2V 8AH Lifepo4 – $11 Cell Cheap

Original price was: $88.00.Current price is: $44.00.
0 reviews
28 people are viewing this right now
Estimated Delivery:
15 - 22 Mar, 2025
Trust Badge
Guaranteed safe & secure checkout

Description

THESE CELLS ARE BRAND NEW IN THE ORIGINAL BOXES. YOU GET 8 IN A BOX FOR EACH ORDER AS SHOWN IN THE PHOTOS. ALL THE BOXES WE OPENED HAVE PRODUCTION DATES OF 7 24 24 SO THEY SHOULD ALL BE NEAR THAT DATE RANGE.

COMES OUT TO JUST $11 CELL.

THIS IS THE MOST POPULAR CELL FOR CAR AUDIO AND PERFECT FOR ANY APPLICATION THAT REQUIRES HIGH POWER IN A SMALL SPACE. MANY CUSTOMERS MAKE THEIR OWN BUSBARS AND ACCESSORIES BUT WE DO HAVE CELL HOLDERS, BOLTS, AND 100A BUSBARS AVAILABLE AT A GREAT PRICE IF YOU NEED THEM. WE ALSO HAVE BMS UNITS AS WELL. DEPENDING ON THE THICKNESS OF YOUR BUSBARS THE LENGTH OF THE BOLTS YOU LL NEED WILL CHANGE BUT THE BOLT SIZE YOU NEED IS A VERY COMMON SIZE M6-1.0. WE HAVE THE 8MM SIZE AVAILABLE WHICH IS GREAT FOR BUSBARS UP TO 1 8 THICK. IF YOU PLAN ON MAKING THICKER BUSBARS YOU WANT TO ORDER BOLTS THAT ARE ABOUT 1 4 LONGER THAN THE THICKNESS OF THE BUSBAR.

THESE ARE BIG CELLS WITH A CRAZY AMOUNT OF POWER. EACH CELL IS RATED UP TO 120A CONTINUOUS DISCHARGE (15C) OR 240A PULSE (30C) AND CAN BE CHARGED AT 80A CONTINUOUS (10C). YOU CAN START A CAR WITH 4 OF THESE IN SERIES. PLEASE BE CAREFUL WITH THESE AND DO YOUR RESEARCH. THIS IS A MASSIVE AMOUNT OF POWER.

body { font-family: Arial, sans-serif; background-color: #f0f0f0; margin: 0; padding: 20px; }
.info, .form-section { background-color: #ffffff; padding: 15px; margin-bottom: 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.info h2, .form-section h1 { margin-top: 0; color: #0056b3; }
label { display: block; margin-bottom: 5px; font-size: 0.9em; color: #333; }
input[type= number ] { width: 100%; padding: 8px; margin-bottom: 10px; border-radius: 4px; border: 1px solid #ccc; font-size: 0.9em; }
input[type= submit ], select { background-color: #0078d7; color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-size: 0.9em; }
input[type= submit ]:hover { background-color: #0056b3; }

Cell Specifications

Nominal Voltage:
Chemistry:
Full Charge Voltage:
Full Discharge Voltage:
Capacity:
Max Continuous Charge: A
Max Continuous Discharge: A

Calculate Your Battery Pack


function detectBatteryChemistry(nominalVoltage) {
if (nominalVoltage >= 3.6 && nominalVoltage = 3.2 && nominalVoltage <= 3.3) {
return {chemistry: LiFePO4 , fullChargeVoltage: 3.65, fullDischargeVoltage: 2.5};
} else if (nominalVoltage === 2.2) {
return {chemistry: LTO , fullChargeVoltage: 2.8, fullDischargeVoltage: 1.5};
} else if (nominalVoltage === 3.0) {
return {chemistry: Sodium Ion , fullChargeVoltage: 4.0, fullDischargeVoltage: 2.0};
} else {
return {chemistry: Unknown , fullChargeVoltage: nominalVoltage, fullDischargeVoltage: nominalVoltage};
}
}

function formatCapacity(capacity) {
var capacityInAh = capacity 1000;
if (capacityInAh % 1 === 0) {
return capacityInAh.toString() + Ah ;
} else {
return capacityInAh.toFixed(1) + Ah ;
}
}

function initialize() {
var nominalVoltage = parseFloat(document.getElementById( nominalVoltage ).value);
var capacity = parseFloat(document.getElementById( capacity ).value);
var maxCharge = parseFloat(document.getElementById( maxCharge ).value);
var maxDischarge = parseFloat(document.getElementById( maxDischarge ).value);
var batteryDetails = detectBatteryChemistry(nominalVoltage);
document.getElementById( cellVoltage ).textContent = nominalVoltage + V ;
document.getElementById( cellChemistry ).textContent = batteryDetails.chemistry;
document.getElementById( cellFullChargeVoltage ).textContent = batteryDetails.fullChargeVoltage + V ;
document.getElementById( cellFullDischargeVoltage ).textContent = batteryDetails.fullDischargeVoltage + V ;
document.getElementById( cellCapacity ).textContent = formatCapacity(capacity);
document.getElementById( cellMaxCharge ).textContent = maxCharge.toString();
document.getElementById( cellMaxDischarge ).textContent = maxDischarge.toString();
}

function calculatePackConfiguration() {
var nominalVoltage = parseFloat(document.getElementById( nominalVoltage ).value);
var capacity = parseFloat(document.getElementById( capacity ).value);
var maxCharge = parseFloat(document.getElementById( maxCharge ).value);
var maxDischarge = parseFloat(document.getElementById( maxDischarge ).value);

var desiredVoltage = parseFloat(document.getElementById( desiredVoltage ).value);
var powerUnit = document.getElementById( powerUnit ).value;
var desiredWatts = parseFloat(document.getElementById( desiredWatts ).value);
if (powerUnit === kW ) {
desiredWatts *= 1000;
}

var energyUnit = document.getElementById( energyUnit ).value;
var desiredWattHours = parseFloat(document.getElementById( desiredWattHours ).value);
if (energyUnit === kWh ) {
desiredWattHours *= 1000;
}

var cellsInSeries = Math.ceil(desiredVoltage nominalVoltage);
var wattCellsInParallel = Math.ceil(desiredWatts (cellsInSeries * detectBatteryChemistry(nominalVoltage).fullDischargeVoltage * maxDischarge));
var energyCellsInParallel = Math.ceil((desiredWattHours (cellsInSeries * nominalVoltage)) (capacity 1000));
var cellsInParallel = Math.max(wattCellsInParallel, energyCellsInParallel);
var totalCells = cellsInSeries * cellsInParallel;
var totalAmpHours = (capacity 1000) * cellsInParallel;
var totalKWh = (totalAmpHours * (cellsInSeries * nominalVoltage)) 1000;
var maxChargeCurrent = cellsInParallel * maxCharge;

document.getElementById( result ).innerHTML =
Pack Configuration: + cellsInSeries + s + cellsInParallel + p
+
Total Cells Needed: + totalCells +
+
Nominal Voltage: + (cellsInSeries * nominalVoltage).toFixed(2) + V
+
Amp Hours of the Pack: + totalAmpHours.toFixed(2) + Ah
+
kWh of the Pack: + totalKWh.toFixed(2) + kWh
+
Fully Charged Voltage: + (cellsInSeries * detectBatteryChemistry(nominalVoltage).fullChargeVoltage).toFixed(2) + V
+
Fully Discharged Voltage: + (cellsInSeries * detectBatteryChemistry(nominalVoltage).fullDischargeVoltage).toFixed(2) + V
+
Max Continuous Charge Current: + maxChargeCurrent.toFixed(2) + A
+
Max Continuous Discharge Current: + ((desiredWatts (cellsInSeries * detectBatteryChemistry(nominalVoltage).fullDischargeVoltage)).toFixed(2)) + A
;
}

window.onload = initialize;
 This calculation also takes into consideration the maximum continuous amp ratings of the cells.

If you over tighten your bolts it could damage the cell. If you have a torque wrench set it to 3nm. Do not tighten over 4nm. We are not responsible for user error. Every cell is factory tested and in new condition. If you over charge discharge, over torque the connections, or cause a short we will not replace the cells once they are handled and assembled into a pack. Always use a BMS, cell holders or insulation between the cells, proper size busbars to carry the current, stay within the voltage amps of the cells, and take necessary safety precautions.

Related products

linkstockus.shop © 2025 All Rights Reserved

Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Description
  • Weight
  • Dimensions
  • Additional information
  • Add to cart
Click outside to hide the comparison bar
Compare