ForMatter/Materials/wood/Teak (Tectona grandis)
mat_teak

Teak (Tectona grandis)

tropical hardwood, deciduous, naturally oily · Burmese teak, Indian teak, plantation teak, FSC teak

The boat-deck wood. The teak that builds the deck of a Hinckley sloop, the teak that sits unfinished on the back patio of a mid-century-modern house and weathers to silver-gray, the teak of every Riva runabout and every Gloster outdoor chair. Teak is a tropical deciduous hardwood from southeast Asia (Burma is the historic source; India, Indonesia, and managed-plantation Central America are the modern), and its defining property is the natural silica and oil content in the heartwood, which makes it almost uniquely resistant to rot, marine borers, and the acid wash a deck takes between a wet weather and a hot sun. The classic problem is that old-growth teak is endangered and the FSC-certified plantation teak is the only version a designer should be specifying. Buy from Rockler / Woodcraft for hobby use, from World Timber or Edensaw Woods for marine-grade, from FSC-certified plantations only.

Tectona grandis, family Lamiaceae. Density 650–750 kg/m³ (12 percent moisture content, the wood-industry reference). Modulus of rupture 95–115 MPa. Modulus of elasticity 11.0–14.0 GPa. Compression parallel to grain 55–62 MPa. Shrinkage radial 2.6 percent / tangential 5.3 percent (low — exceptional dimensional stability under humidity cycling, the boat-deck property). Janka hardness ~4400 N (1000 lbf). Color: heartwood golden brown to dark brown when fresh, greying to silver under UV exposure (the patina cycle); sapwood pale yellow. Grain straight, occasionally wavy; medium-coarse texture. Natural rubbery latex and silica content (silica 1.4–1.5 percent dry weight) accounts for the rot resistance and dulls cutting tools faster than density alone would predict — teak builds carbide-bit consumption into the per-board cost. Glues with epoxy or polyurethane after surface degreasing (acetone wipe — the natural oils prevent standard wood glue from bonding); fasteners hold well; pre-drill for screws.

mechanical

  • density_kg_m3700
  • modulus_of_rupture_mpa105
  • janka_hardness_n4400
  • shrinkage_radial_percent2.6
  • shrinkage_tangential_percent5.3
source: USDA Forest Products Laboratory, Wood Handbook (FPL-GTR-282, 2021), Chapter 5; Wood Database (wood-database.com)

Sustainability

  • embodied carbon kg co2e per kg0.4
  • sourceEditorial estimate — wood embodied carbon is dominated by transport (Asia-to-US for old-growth, less for plantation Costa Rica / Panama) and harvest impact. FSC-certified plantation teak has a much lower environmental burden than old-growth Burmese, which carries habitat-destruction debt that is not captured by carbon accounting alone.
  • recyclabilityhigh — solid teak is reusable / re-workable indefinitely; salvaged teak is a premium reclaim market
  • biodegradableTrue
  • certificationsFSC (Forest Stewardship Council) — non-negotiable for ethical specification; PEFC. Tectona grandis is not on the CITES Appendices (it is IUCN-listed Endangered), but Burmese teak is subject to US import restrictions under the JADE Act
  • localityhistoric source Burma (Myanmar — politically problematic, US import restrictions in effect); modern responsible sources: FSC-certified plantations in Costa Rica, Panama, Indonesia, Brazil, Ghana
visual
honey-gold to medium brown when freshly milled; weathers to silver-gray under UV; straight grain; the classic warm tropical hardwood look
tactile
smooth and faintly waxy from the natural oils; warmer to the touch than most hardwoods because of the lower thermal conductivity per density; sands to a soft hand without raised grain
weight perception
moderate; reads as substantial without being heavy
acoustic
a soft thud rather than a ring when struck; the oil content damps higher frequencies

PBR starter values

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

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

# finish:                   woodgrain
albedo                      #9a7048
metallic                    0.00
roughness                   0.60
ior                         1.45
transmission                0.00
clearcoat                   0.00
sheen                       0.00
anisotropic                 0.60
copy as JSON
{
  "albedo": "#9a7048",
  "metallic": 0.0,
  "roughness": 0.6,
  "ior": 1.45,
  "transmission": 0.0,
  "clearcoat": 0.0,
  "sheen": 0.0,
  "anisotropic": 0.6
}
Blender 4.x Python
# Blender 4.x — Principled BSDF
# Teak (Tectona grandis) · finish: woodgrain
import bpy
mat = bpy.data.materials.new(name="mat_teak")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.3231, 0.162, 0.0648, 1.0)
bsdf.inputs["Metallic"].default_value           = 0.000
bsdf.inputs["Roughness"].default_value          = 0.600
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.600
KeyShot Python (lux)
# KeyShot 11+ — lux Python API, Generic material
# Teak (Tectona grandis) · finish: woodgrain
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_teak", materialType="Generic")
mat.setProperty("diffuse",      (154, 112, 72))   # 8-bit sRGB
mat.setProperty("metallic",     0.000)
mat.setProperty("roughness",    0.600)
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": "Teak (Tectona grandis) \u00b7 finish: woodgrain",
  "baseColor": {
    "r": 0.3231,
    "g": 0.162,
    "b": 0.0648
  },
  "metallic": 0.0,
  "roughness": 0.6,
  "ior": 1.45,
  "opacity": 1.0,
  "anisotropyLevel": 0.6,
  "_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_teak",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.3231,
          0.162,
          0.0648,
          1.0
        ],
        "metallicFactor": 0.0,
        "roughnessFactor": 0.6
      },
      "extensions": {
        "KHR_materials_ior": {
          "ior": 1.45
        }
      }
    }
  ]
}
USD Preview Surface
# USD Preview Surface — UsdShade.MaterialLook prim attributes
# Teak (Tectona grandis) · finish: woodgrain
def Material "mat_teak" {
    token outputs:surface.connect = </mat_teak/PreviewSurface.outputs:surface>

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

Second life

repairabilityvery high — teak accepts the entire fine-furniture and boat-building repair tradition; oiling is the standard maintenance.
recyclabilitymoderate — solid teak reusable; salvage market is robust due to scarcity.
disposal pathsalvage market for old growth; mulch for plantation teak.
typical longevity200 years (typical)
failure modes
  • silica-content tool dulling
  • natural-oil bleeding through finishes (the canonical teak finishing problem — handled with epoxy seal-coats)
  • CITES regulatory burden in some sources

USDA Forest Products Lab Teak entry; CITES Appendix II compliance for *Tectona grandis*.

Citations

Further reading