The black, brittle, ringing iron — the iron of stove plates, manhole covers, sewing-machine bodies, lathe beds, engine blocks, and the lamp base on the desk. High-carbon iron poured molten into a sand mold, the carbon precipitating out as graphite flakes as it cools. The flakes are why the fracture is gray and the surface damps vibration — they also make it strong in compression, weak in tension, and almost impossible to weld. Cheap, heavy, dimensionally stable across decades. The first metal of the Industrial Revolution.
Iron-carbon-silicon alloy with 2.0–4.0% carbon and 1.0–3.0% silicon, the silicon promoting graphitization during slow cooling so that excess carbon precipitates as flake-form graphite rather than dissolving as cementite. Cast near-net-shape, almost always sand-cast in green or chemically bonded molds. The graphite flakes act as internal stress raisers, capping tensile strength at 150–300 MPa (ASTM A48 Class 20 through Class 50) but leaving compressive strength roughly four times higher, 600–1100 MPa. Elastic modulus 100–145 GPa (lower than steel because graphite is compliant). Density 7000–7300 kg/m³ — measurably lighter than wrought steel because graphite has density 2.2 vs. iron's 7.87. Melting begins near 1150–1200 °C, considerably lower than mild steel — cast iron's high carbon content drops the eutectic and is what makes the metal pourable in a school-shop crucible. Excellent damping (the graphite flakes absorb vibrational energy — the canonical machine-bed material for that reason). Machinability is high: graphite acts as an in-situ lubricant and breaks chips. Welding is poor: rapid heating and cooling forms brittle white-iron at the weld, and the parent material's low ductility leaves no margin for thermal stress. Repairs are typically cold-stitched, brazed, or pinned. Surface readily takes paint, japanning, vitreous enamel, and porcelain enamel; iron oxide forms a stable adhesion layer for primers. Other cast-iron families exist — ductile (nodular, spheroidal-graphite SG iron, ASTM A536) substitutes nodular for flake graphite and recovers tensile ductility; white cast iron (ASTM A532) cools fast enough to retain cementite and is wear-resistant but glass-brittle; malleable iron is white iron heat-treated to approximate ductile iron's properties. Gray iron is the canonical and the cheapest, and is what 'cast iron' means without further qualifier.
John 'Iron-Mad' Wilkinson, whose patent for boring cannon barrels for James Watt marked both the beginning of the concept of precision and the birth of the Industrial Revolution.
It had a japanned surface on its cast-iron body, covered in gold, flower-patterned ornamental scrollwork — modified from motifs obtained in a pattern book and applied to the surface by female painters. This decoration allowed it to blend into the living area of the domestic environment.
At one end of the spectrum is cast iron or pig iron (so named because when it was first made it would set in a series of channels and moulds resembling a litter of piglets being nursed by their mother). This is a brittle metal with about 3–4 per cent carbon. At the other end is wrought iron, soft enough to be beaten with a hammer and very pure, with infinitesimally small quantities of carbon. In the middle is steel. In steel, those carbon atoms nestle neatly between the iron atoms creating a strong, immoveable lattice. Too much carbon and the structure of the lattice is imperfect, so the metal can easily shatter (cast iron). Too little and the iron atoms can slide over each other without much resistance (wrought iron). Counterintuitively, you want your iron to be nearly pure, but not entirely pure.
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 #2a2a2c metallic 1.00 roughness 0.25 ior 1.45 transmission 0.00 clearcoat 0.00 sheen 0.00 anisotropic 0.00
{
"albedo": "#2a2a2c",
"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
# Cast Iron, Gray (ASTM A48) · finish: metallic
import bpy
mat = bpy.data.materials.new(name="mat_cast_iron_gray")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value = (0.0232, 0.0232, 0.0252, 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
# Cast Iron, Gray (ASTM A48) · finish: metallic
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_cast_iron_gray", materialType="Generic")
mat.setProperty("diffuse", (42, 42, 44)) # 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": "Cast Iron, Gray (ASTM A48) \u00b7 finish: metallic",
"baseColor": {
"r": 0.0232,
"g": 0.0232,
"b": 0.0252
},
"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_cast_iron_gray",
"pbrMetallicRoughness": {
"baseColorFactor": [
0.0232,
0.0232,
0.0252,
1.0
],
"metallicFactor": 1.0,
"roughnessFactor": 0.25
},
"extensions": {
"KHR_materials_ior": {
"ior": 1.45
}
}
}
]
}
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Cast Iron, Gray (ASTM A48) · finish: metallic
def Material "mat_cast_iron_gray" {
token outputs:surface.connect = </mat_cast_iron_gray/PreviewSurface.outputs:surface>
def Shader "PreviewSurface" {
uniform token info:id = "UsdPreviewSurface"
color3f inputs:diffuseColor = (0.0232, 0.0232, 0.0252)
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
}
}
Editorial pass 2026-04-28.
Cast-iron base with cream-and-gold paint, chromium-plated steel arm and shade hardware, Bakelite switch. The cast-iron base is what makes the cantilevered counter-spring design stable on a desk; the V&A object record names the material composition explicitly. Carwardine devised the spring while a freelance car designer; Herbert Terry & Sons manufactured the lamp.
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.