The dense, heavy, mostly-metal-and-electrolyte block at the bottom of every electric car, every laptop, every cordless tool, every mobile phone. A lithium-ion cell is a sandwich: a graphite anode, a polymer separator soaked in liquid electrolyte, and a cathode of layered metal oxide — usually some mix of nickel, manganese, and cobalt (NMC), or nickel-cobalt-aluminum (NCA), or, increasingly, the cheaper and safer lithium-iron-phosphate (LFP). When you charge it, lithium ions slide out of the cathode and shelter between graphite layers in the anode. When you discharge it, they slide back. The cell is what got electric vehicles past range anxiety and put a thousand-song library in a shirt pocket.
Rechargeable lithium-ion intercalation cell. The active sandwich is: layered transition-metal-oxide cathode (LiNi_x Mn_y Co_z O₂ for NMC — typically NMC811 / NMC622 / NMC532 by molar Ni:Mn:Co ratio; LiNi_x Co_y Al_z O₂ for NCA; LiFePO₄ olivine for LFP) coated onto an aluminum-foil current collector; microporous polyolefin separator (PE / PP, 10–25 µm) soaked in electrolyte (lithium hexafluorophosphate LiPF₆ at ~1 M dissolved in carbonate solvents EC / DMC / EMC, with additives such as VC, FEC for SEI formation); graphite anode (synthetic or natural, increasingly with silicon-oxide or silicon-carbon admixture for capacity boost) coated onto a copper-foil current collector. Cell voltage 3.0–4.2 V (3.7 V nominal) for NMC / NCA, 2.5–3.65 V (3.2 V nominal) for LFP. Specific energy 150–280 Wh/kg at the cell level (NMC811 highest, LFP lowest); volumetric energy 350–700 Wh/L. Cycle life 1000–3000 deep-discharge cycles to 80% capacity (LFP roughly 2–3× the cycle life of NMC at the cost of energy density). Form factors are cylindrical (Tesla 18650 / 21700 / 4680, Panasonic NCR series), prismatic hard-case (BYD Blade, CATL prismatic), or pouch (LG, SK, Apple internal). Charge rate is C-rate-bounded — sustained 1–3 C charge for most chemistries, 4–6 C for newer fast-charge designs, with the limit set by lithium-plating risk on the graphite anode. Thermal stability is the safety crux: above ~140 °C the cathode releases oxygen, the electrolyte combusts, and the cell enters thermal runaway — pack-level engineering (cell-to-cell venting, intumescent barriers, liquid cooling) keeps single-cell failures from propagating. Cathode chemistry is the dominant cost driver: NMC811 reduces cobalt to ~10% of the cathode but raises nickel-supply pressure; LFP eliminates nickel and cobalt entirely at a 20–30% energy-density penalty, and now dominates entry-level EV and grid-storage applications. Anode-side, the silicon-blended anode (5–25% Si by mass) is the active research front, raising specific energy at a cost in cycle life.
Although lithium-based batteries can store many times more power than lead-based ones, lithium in its solid state has an unfortunate habit of bursting into flames when batteries using it go through multiple charge/recharge cycles. Creating a battery that used lithium in ionic rather than metallic form solved this problem. And that's why the batteries that power nearly all our electronic devices and EVs are called lithium-ion.
A new technology that was lighter, could store more energy and was quicker to recharge than lead acid was developed: the lithium-ion battery. The second was our tragically late realisation that curbing CO2 emissions to ensure our survival on this planet would probably require us to stop driving around in fossil-fuel-burning mobile power stations.
This is a magical metal: alongside hydrogen and helium it was one of the three primordial elements created in the Big Bang, making it one of the oldest pieces of matter in the universe. No other element has quite the same combination of lightness, conductivity and electrochemical power. No other metal is quite as good at storing energy. So light it floats in oil, so soft you could cut it with a kitchen knife but so reactive that it fizzes and bangs when it makes contact with water and air, it is one of those materials you don't ever see in its elemental form outside of a chemistry lab. And this reactivity helps explain why lithium is at the heart of the most powerful batteries, and therefore the heart of the twenty-first-century world.
Principled BSDF defaults derived from the sphere metallic finish. Reasonable seed for Blender, Substance, Keyshot, Rhino — tune per material. Or grab the whole library at once: ForMaterials library →
# finish: metallic albedo #3a3a40 metallic 1.00 roughness 0.25 ior 1.45 transmission 0.00 clearcoat 0.00 sheen 0.00 anisotropic 0.00
{
"albedo": "#3a3a40",
"metallic": 1.0,
"roughness": 0.25,
"ior": 1.45,
"transmission": 0.0,
"clearcoat": 0.0,
"sheen": 0.0,
"anisotropic": 0.0
}
# Blender 4.x — Principled BSDF
# Lithium-Ion Battery Cell (NMC / LFP / NCA) · finish: metallic
import bpy
mat = bpy.data.materials.new(name="mat_lithium_ion_cell")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value = (0.0423, 0.0423, 0.0513, 1.0)
bsdf.inputs["Metallic"].default_value = 1.000
bsdf.inputs["Roughness"].default_value = 0.250
bsdf.inputs["IOR"].default_value = 1.450
bsdf.inputs["Transmission Weight"].default_value = 0.000
bsdf.inputs["Coat Weight"].default_value = 0.000
bsdf.inputs["Sheen Weight"].default_value = 0.000
bsdf.inputs["Anisotropic"].default_value = 0.000
# KeyShot 11+ — lux Python API, Generic material
# Lithium-Ion Battery Cell (NMC / LFP / NCA) · finish: metallic
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_lithium_ion_cell", materialType="Generic")
mat.setProperty("diffuse", (58, 58, 64)) # 8-bit sRGB
mat.setProperty("metallic", 1.000)
mat.setProperty("roughness", 0.250)
mat.setProperty("indexOfRefraction", 1.450)
mat.setProperty("transparency", 0.000)
mat.setProperty("coatingWeight", 0.000)
{
"_format": "Substance Designer / Painter \u2014 pbrMetalRough constants",
"_about": "Lithium-Ion Battery Cell (NMC / LFP / NCA) \u00b7 finish: metallic",
"baseColor": {
"r": 0.0423,
"g": 0.0423,
"b": 0.0513
},
"metallic": 1.0,
"roughness": 0.25,
"ior": 1.45,
"opacity": 1.0,
"anisotropyLevel": 0.0,
"_notes": "Channels listed are the standard Substance pbrMetalRough output. Drop into a Uniform Color node per channel, or as the constant input on a layered stack."
}
{
"asset": {
"version": "2.0",
"generator": "ForMatter"
},
"materials": [
{
"name": "mat_lithium_ion_cell",
"pbrMetallicRoughness": {
"baseColorFactor": [
0.0423,
0.0423,
0.0513,
1.0
],
"metallicFactor": 1.0,
"roughnessFactor": 0.25
},
"extensions": {
"KHR_materials_ior": {
"ior": 1.45
}
}
}
]
}
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Lithium-Ion Battery Cell (NMC / LFP / NCA) · finish: metallic
def Material "mat_lithium_ion_cell" {
token outputs:surface.connect = </mat_lithium_ion_cell/PreviewSurface.outputs:surface>
def Shader "PreviewSurface" {
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.0423, 0.0423, 0.0513)
float inputs:metallic = 1.000
float inputs:roughness = 0.250
float inputs:ior = 1.450
float inputs:opacity = 1.000
float inputs:clearcoat = 0.000
token outputs:surface
}
}
Conway *Material World* (Knopf 2023) Lithium chapter; Redwood Materials recycling-technology literature; UN 38.3 lithium-battery transport regulations.
House vocabulary — terms ForMatter uses with intent.
Materials and processes for people who design and make things.
A local-first library of materials, processes, applications, and finishes — equal weight, citable everywhere, with cost-over-volume curves, trade-off profiles, equipment-tier filters, and second-life paths layered onto the data so a student can move from "what is this" toward "what's actually buildable here, now, by me." Part of the renato.design ecosystem — sibling of Plenum, Specimen, Ingenue, gesture, graf, and the Renato Rhino plug-ins. Form and matter, inseparable.
Half of teaching materials is teaching how the material is made into the thing. The standard subscription library was always light on that half. The wedge here isn't better samples or a prettier interface — it's treating Process as a peer entity, not a footnote.
Conway's Material World on raw materials, Lefteri's Making It on processes, Forty's Concrete and Culture, Sparke's Design in Context, Bürdek's Design: History, Theory and Practice of Product Design, Schröpfer's Material Design on materials in architecture, Winchester's The Perfectionists on tolerance, Minshall's Your Life Is Manufactured on the global supply chain, von Busch's Making Trouble on material activism, Were's How Materials Matter, Hegger / Drexler / Zeumer's Basics Materials, Untracht and McCreight on metalsmithing, USDA Forest Products Lab on woods, GIA on gemstones, Schott / CoorsTek / Toray / Owens Corning datasheets, MakeItFrom for verifiable property numbers, ASM Handbook, ISO standards. Museum holdings draw from the Met, MAD, V&A, Smithsonian American Art Museum, Newark Museum of Art, British Museum, Heard Museum, Smithsonian NMAI, Eiteljorg Museum, Philadelphia Museum of Art, Cranbrook Art Museum, and Grand Rapids Art Museum — collection-record permalinks only, designer overview pages and exhibition listings excluded. Voice blocks now ride on every entry kind — material, process, application, and finish — and include Ruskin on iron, Anni Albers on twining, Greg Lynn on the shred-and-teeth NURBS lineage, Pugin on the metal that won't be hammered, Barthes / Yanagi / Benjamin channeled within their philosophy; Sparke, Bürdek, Forty, Conway, Schröpfer, Minshall, von Busch, Lefteri, Pat Pruitt, Mary Lee Hu, Tom Joyce, Albert Paley, and the rest of the contemporary makers quoted verbatim with citation. All cited.
Local to this browser. No cloud, no account, no telemetry.