mat_basalt

Basalt

igneous extrusive stone, fine-grained mafic (low-silica) volcanic rock · bluestone (some basalts marketed as such), Belgian bluestone (a limestone, not basalt — note the trade-name confusion), Chinese basalt, vesicular basalt

The dark gray-to-black volcanic stone that makes up the seafloor, the Hawaiian islands, the Columbia River basalt flows the Cascades sit on top of, the Roman roads, the modern paver. Basalt cools fast at the Earth's surface (vs. granite cooling slow at depth), so its grains stay too small to see — you read basalt as a single uniform dark mass. Where lava cooled with gas bubbles trapped, you get vesicular basalt, the holey volcanic rock used in lightweight aggregate. Where the cooling was slow enough to crack into hexagonal columns, you get the Giant's Causeway / Devil's Tower formations. The modern uses are paving (basalt pavers in European squares; Belgian-block sets), structural aggregate, fiber (basalt fiber for composites — a glass-fiber alternative drawn from melted basalt rod), and the increasingly common architectural cladding via Antolini / Stone Source. Buy as paving from quarry direct; as architectural slab from the Italian and German trade.

Igneous extrusive rock, fine-grained mafic composition (45–52 percent SiO2, the rest dominated by FeO, MgO, CaO). Mineralogy: plagioclase feldspar + clinopyroxene (augite) + olivine + magnetite, with grains too small (~0.1 mm) to identify in hand specimen. Density 2800–3000 kg/m³ (denser than granite — basalt is heavier than its color suggests). Compressive strength 200–400 MPa (very strong; rivals granite). Mohs hardness 5–6. Water absorption < 0.5 percent. Vesicular grades have lower density and strength (200–500 kg/m³ for scoria, 60–100 MPa compressive). Basalt fiber is drawn from melted basalt at ~1400 °C through platinum-rhodium bushings, yielding continuous filaments 9–25 µm in diameter with tensile strength 2700–3300 MPa — a glass-fiber alternative used in structural composites where alkali resistance and sustained-load fatigue matter. Basalt rebar is a corrosion-immune alternative to steel rebar in concrete (basalt fiber + epoxy / vinyl ester binder). Cuts with wet diamond saw; the hardness makes carving slow; takes a high polish on dense grades.

mechanical

  • density_kg_m32900
  • compressive_strength_mpa280
  • mohs_hardness5.5
  • water_absorption_percent0.3
source: ASTM C615 standard for granite dimension stone (covers basalt by composition); USGS igneous-rock literature

Sustainability

  • embodied carbon kg co2e per kg0.2
  • sourceEditorial estimate from ICE / Granta CES EduPack natural-stone class data, cradle-to-gate. Basalt fiber draws ~3.5 kg CO2e/kg (still 30 percent below E-glass fiber per kg).
  • recyclabilityhigh — dimension stone reusable; basalt aggregate cycles into pavement; basalt-fiber composites are difficult to recycle (resin-bound, like all FRP)
  • biodegradableFalse
  • certificationsASTM C615 (covers basalt under granite-class dimension stone); EN 12058 (European dimension-stone standard)
  • localityextensive — basalt is the most common rock type in the Earth's crust by volume. Quarried for paving in Belgium / Germany / China; for architectural slab in Italy / China / Iceland; for fiber in Russia, Ukraine, China; designer-quantity samples via Antolini, Stone Source, ABC Stone
visual
uniform dark gray to black; faint speckle from olivine and magnetite grains under bright light; vesicular variants show pore-character at hand-distance; polished basalt approaches a near-black mirror
tactile
smooth and very cool to the touch (high thermal mass); sharp cut edges; heavy in the hand for its volume
weight perception
heavy — denser than granite for the same volume; basalt cobbles teach the body what 'volcanic mass' means
acoustic
a high ringing knock when struck; basalt is the rock church bells were sometimes cast around
Thomas Schröpfer (living — quote)

Kuma, in his work, challenges us to look at stone in a way that is truer to its new life as a wall component.

Schröpfer, *Material Design: Informing Architecture by Materiality* (Birkhäuser, 2011), Chapter 1, 'Inherent Expression,' on Kengo Kuma's Stone Museum (Nasu, Japan, 2000), built from Ashino — a light-colored volcanic stone in the basalt family — to demonstrate 'non-monumental and transparent ways of building with stone.'

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                      #2a2a30
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": "#2a2a30",
  "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
# Basalt · finish: matte
import bpy
mat = bpy.data.materials.new(name="mat_basalt")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.0232, 0.0232, 0.0296, 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
# Basalt · finish: matte
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_basalt", materialType="Generic")
mat.setProperty("diffuse",      (42, 42, 48))   # 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": "Basalt \u00b7 finish: matte",
  "baseColor": {
    "r": 0.0232,
    "g": 0.0232,
    "b": 0.0296
  },
  "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_basalt",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.0232,
          0.0232,
          0.0296,
          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
# Basalt · finish: matte
def Material "mat_basalt" {
    token outputs:surface.connect = </mat_basalt/PreviewSurface.outputs:surface>

    def Shader "PreviewSurface" {
        uniform token info:id = "UsdPreviewSurface"
        color3f inputs:diffuseColor = (0.0232, 0.0232, 0.0296)
        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
Substitutes

Second life

repairabilitylow — basalt is hard and dense; crack-repair uses color-matched epoxy.
recyclabilityhigh — crushed basalt is high-value aggregate for road-base, asphalt, concrete.
disposal pathaggregate market; concrete recycler.
typical longevity2000 years (typical)
failure modes
  • surface weathering over centuries
  • thermal-shock at extreme gradients (rare in architectural service)
  • acid attack in heavily polluted urban atmospheres

ICOMOS-ISCS stone-deterioration glossary; Schröpfer *Material Design* on basalt architectural use.

Citations

  • url · https://en.wikipedia.org/wiki/Basalt
  • standard · ASTM C615 — Standard Specification for Granite Dimension Stone (covers basalt by composition)
  • book · Schröpfer, *Material Design: Informing Architecture by Materiality* (Birkhäuser, 2011), Chapter 1 — Kuma's Stone Museum (Ashino volcanic stone) as the canonical demonstration that basalt can be detailed as a transparent, non-monumental wall component rather than as load-bearing mass.

Further reading