mat_soapstone

Soapstone

metamorphic stone, talc-rich (talc + magnesite + chlorite + minor accessories) · steatite, soaprock, Vermont soapstone, Brazilian soapstone

The soft gray-green stone that feels exactly like its name — slightly soapy under the hand, warm to the touch, soft enough to carve with a kitchen knife. The countertop material of the chemistry lab and the colonial New England farmhouse. The Inuit carving stone of the Arctic. The Brazilian sculptor's choice. Soapstone is a metamorphic rock made mostly of talc — the softest mineral on the Mohs scale, hardness 1 — bound up with minor harder minerals. The talc gives soapstone its signature hand: soft, smooth, almost soft-skinned. Used historically for stove tops and woodstove surrounds (it absorbs heat and re-radiates slowly), for chemistry-lab benches (chemical inertness; acids don't etch it the way they etch marble or limestone), for sinks and countertops (the dark gray-green deepens to charcoal with mineral oil and use). Vermont Soapstone (the company) has been quarrying in Perkinsville since 1856; Brazilian Pedreira ScamSoapstone is the larger modern source.

Metamorphic rock dominated by talc (Mg3Si4O10(OH)2), with magnesite, chlorite, and accessory tremolite / antigorite. Density 2700–2900 kg/m³. Mohs hardness 1–3 (talc is 1; the bulk rock is 2–3 from the harder accessory phases). Compressive strength 60–90 MPa (soft for a stone). Thermal conductivity ~6 W/(m·K) — high for a stone, which is why soapstone holds heat (its specific heat capacity is ~980 J/kg·K, allowing it to store and re-radiate heat over hours; the Finns build sauna stoves around the same property). Coefficient of thermal expansion 8 × 10⁻⁶ /K (low — does not crack from thermal shock, used for woodstove cores accordingly). Chemically inert to most acids and bases (the chemistry-bench property; calcite-based stones cannot tolerate the lab environment). Carves with hand chisels and rasps at any angle; turns on a wood lathe with mild file pressure; takes a hand-rubbed mineral-oil finish that deepens the color from gray-green to near-black. Polishes to a soft sheen, never a hard shine.

mechanical

  • density_kg_m32800
  • mohs_hardness2.5
  • compressive_strength_mpa75
  • thermal_conductivity_w_mk6.0
  • specific_heat_j_kg_k980
source: ASTM standards (no dedicated dimension-stone standard — usually quoted under decorative-stone class); Vermont Soapstone Company technical literature

Sustainability

  • embodied carbon kg co2e per kg0.18
  • sourceEditorial estimate from ICE / Granta CES EduPack natural-stone class data, cradle-to-gate. Brazilian soapstone carries higher transport carbon for North American projects than Vermont-quarried.
  • recyclabilityhigh — slabs are reusable; the soft material is reclaim-friendly because it cuts so easily for re-purposing
  • biodegradableFalse
  • certificationsEPD available from Vermont Soapstone Company
  • localityVermont (Perkinsville — Vermont Soapstone Company), Virginia (Alberene Soapstone, historic), Brazil (the largest modern producer — Pedreira ScamSoapstone, Pomenta soapstones), Finland (the sauna-stove canon source); designer-quantity via Vermont Soapstone, M. Teixeira Soapstone (Brazilian importer to US)
visual
gray-green to medium gray when freshly cut, deepening to charcoal black with mineral oil and patina; subtle veining and chlorite swirls visible at hand-distance
tactile
the signature property — slightly soapy / slick under the hand, warm to the touch, soft enough to leave a faint mark with a fingernail; the most tactile-distinctive of the building stones
weight perception
moderate to heavy; the density of granite without the hardness
acoustic
a soft thud rather than a ring — the talc damps the percussion entirely

PBR starter values

finish · matte — open for table, JSON, host snippets, downloads

Principled BSDF defaults derived from the sphere matte finish. Reasonable seed for Blender, Substance, Keyshot, Rhino — tune per material. Or grab the whole library at once: ForMaterials library →

# finish:                   matte
albedo                      #4a5048
metallic                    0.00
roughness                   0.75
ior                         1.45
transmission                0.00
clearcoat                   0.00
sheen                       0.00
anisotropic                 0.00
copy as JSON
{
  "albedo": "#4a5048",
  "metallic": 0.0,
  "roughness": 0.75,
  "ior": 1.45,
  "transmission": 0.0,
  "clearcoat": 0.0,
  "sheen": 0.0,
  "anisotropic": 0.0
}
Blender 4.x Python
# Blender 4.x — Principled BSDF
# Soapstone · finish: matte
import bpy
mat = bpy.data.materials.new(name="mat_soapstone")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.0685, 0.0802, 0.0648, 1.0)
bsdf.inputs["Metallic"].default_value           = 0.000
bsdf.inputs["Roughness"].default_value          = 0.750
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 Python (lux)
# KeyShot 11+ — lux Python API, Generic material
# Soapstone · finish: matte
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_soapstone", materialType="Generic")
mat.setProperty("diffuse",      (74, 80, 72))   # 8-bit sRGB
mat.setProperty("metallic",     0.000)
mat.setProperty("roughness",    0.750)
mat.setProperty("indexOfRefraction", 1.450)
mat.setProperty("transparency", 0.000)
mat.setProperty("coatingWeight", 0.000)
Substance pbrMetalRough
{
  "_format": "Substance Designer / Painter \u2014 pbrMetalRough constants",
  "_about": "Soapstone \u00b7 finish: matte",
  "baseColor": {
    "r": 0.0685,
    "g": 0.0802,
    "b": 0.0648
  },
  "metallic": 0.0,
  "roughness": 0.75,
  "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."
}
glTF 2.0 Metallic-Roughness
{
  "asset": {
    "version": "2.0",
    "generator": "ForMatter"
  },
  "materials": [
    {
      "name": "mat_soapstone",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.0685,
          0.0802,
          0.0648,
          1.0
        ],
        "metallicFactor": 0.0,
        "roughnessFactor": 0.75
      },
      "extensions": {
        "KHR_materials_ior": {
          "ior": 1.45
        }
      }
    }
  ]
}
USD Preview Surface
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Soapstone · finish: matte
def Material "mat_soapstone" {
    token outputs:surface.connect = </mat_soapstone/PreviewSurface.outputs:surface>

    def Shader "PreviewSurface" {
        uniform token info:id = "UsdPreviewSurface"
        color3f inputs:diffuseColor = (0.0685, 0.0802, 0.0648)
        float   inputs:metallic     = 0.000
        float   inputs:roughness    = 0.750
        float   inputs:ior          = 1.450
        float   inputs:opacity      = 1.000
        float   inputs:clearcoat    = 0.000
        token   outputs:surface
    }
}
↓ download glTF material

Second life

repairabilityhigh — soapstone is the most repair-friendly of the architectural stones; sanded with progressively finer abrasives, oiled to maintain color.
recyclabilityhigh — crushed for aggregate or talc filler.
disposal pathaggregate; specialty industrial.
typical longevity500 years (typical)
failure modes
  • surface scratches (Mohs 1–3, the softest architectural stone — also the most-easily-restored)
  • oil-stain pattern (intentional patina for many uses)
  • thermal-shock fracture is rare

Vermont Soapstone / Alberene Soapstone technical literature; ICOMOS-ISCS glossary.