ForMatter/Materials/wood/MDF (Medium-Density Fiberboard)
mat_mdf_medium

MDF (Medium-Density Fiberboard)

engineered wood, fine wood-fiber + urea-formaldehyde resin pressed panel · medium-density fiberboard, MDF panel, shop MDF, lacquer-grade MDF

The model-shop staple. The cabinet-grade panel that takes paint like nothing else, that mills cleanly on the CNC, that reads as a perfectly uniform substrate when you need a plain-painted surface. MDF is engineered wood — fine wood fibers from softwood pulp mixed with urea-formaldehyde resin and wax, pressed under heat into smooth dense panels (typically 4x8 ft, thicknesses 1/4 to 1 inch). The signature properties are absolute uniformity (no grain, no knots, no joints — the panel is the same in every direction), tight tolerance (CNC routes a clean edge that needs no sanding), and excellent paint adhesion (the dense smooth face primes and finishes to a mirror without raised grain). The downsides are weight (MDF is heavy for its volume), water-vulnerability (any water exposure swells the panel irreversibly), and the formaldehyde concern (older MDF off-gasses formaldehyde; CARB Phase 2 / TSCA Title VI compliant grades since the 2010s use lower-emission resins). Buy from Home Depot / Lowe's for construction grade, from Plywood and Door / specialty plywood dealers for premium MR (moisture-resistant) and FR (fire-rated) grades.

Engineered wood panel, ~85 percent fine wood fiber (typically softwood — pine, spruce, fir pulp) + ~9 percent urea-formaldehyde resin (or melamine-urea, MDI for MR grades) + paraffin wax + minor additives. Density 600–800 kg/m³ — the 'medium' designation distinguishes from particleboard (lower density) and HDF (higher density, used as door skins). Standard panel thicknesses 1/4, 3/8, 1/2, 5/8, 3/4, 1 inch (6, 9, 12, 16, 19, 25 mm). Modulus of rupture 25–35 MPa. Internal bond strength (the property that determines how well screws hold in MDF edges) 0.6–1.2 MPa. Linear expansion under moisture is the signature failure mode — 0.3 percent length change per 1 percent change in equilibrium moisture content, with irreversible swell on direct water contact. Surface is dense and smooth straight off the press, machines cleanly with carbide router bits at moderate speeds (the wood-fiber + resin matrix dulls steel quickly; carbide is non-negotiable). Paints with primer + topcoat to a mirror finish; the cut edge is more porous and needs separate edge-treatment (sanding sealer + extra primer coat) to match face quality. Screws hold moderately into face, weakly into edge — wood inserts or specialty MDF screws are required for any structural connection. Cuts cleanly with sharp blades, generates fine dust at high volumes (respiratory protection essential).

mechanical

  • density_kg_m3720
  • modulus_of_rupture_mpa30
  • internal_bond_strength_mpa0.85
  • moisture_swell_percent_per_pct_mc0.3
source: ANSI A208.2 standard for MDF; CARB ATCM 93120 / TSCA Title VI formaldehyde emission standards

Sustainability

  • embodied carbon kg co2e per kg0.65
  • sourceEditorial estimate from ICE / Granta CES EduPack class data for engineered wood, cradle-to-gate. The resin component contributes ~40 percent of the carbon load; using recycled-fiber MDF (Medite Vent, some Egger grades) reduces this further.
  • recyclabilitylow — the resin matrix prevents fiber recovery; MDF mostly goes to energy-recovery incineration or landfill at end of life
  • biodegradablepartially — wood fiber biodegrades, resin does not; combined panel is slow to decompose
  • certificationsANSI A208.2 (MDF panel standard), CARB ATCM 93120 Phase 2 (formaldehyde emission), TSCA Title VI (US formaldehyde emission standard), FSC and PEFC certifiable for sustainable-source fiber
  • localitymanufactured globally; major producers Egger (Austria/Europe), Kronospan (Europe), Roseburg (US Pacific Northwest), West Fraser (US/Canada), Arauco (South America)
visual
uniform tan-brown solid; no grain, no knots, no joints; cut edges show the slightly fibrous core texture; primed and painted face reads as a flawless plain surface
tactile
smooth and slightly waxy on the face (from the press release); cut edge is dense but porous and slightly soft to fingernail pressure
weight perception
heavy for its volume — heavier than plywood of equivalent thickness, the property that limits MDF use in mobile applications
acoustic
a soft thud when struck — the dense fiber matrix damps percussion completely; very dead acoustically
Otto von Busch (living — quote)

As the humidity affects the properties of massive wood, the use of plywood, chipboard, or MDF — materials made to limit the movement of the fibers — can be of great help to take shortcuts. A cabinet drawer made from massive wood requires a lot of knowledge of the wood's properties, whereas the equivalent made from plywood less so.

von Busch, *Making Trouble: Design and Material Activism* (Bloomsbury, 2022), Chapter 1 'Power in the making,' on the matter-versus-material distinction. von Busch's reading frames MDF (and plywood, chipboard) as materials engineered specifically to suppress the 'recalcitrance' of solid wood — the maker who works in MDF inherits a substrate already domesticated to industrial rationality. Pairs against the mahogany_honduran / oak_white voices that celebrate solid-wood grain — same wood category, opposite end of the matter-material spectrum. Otto von Busch (Parsons / Konstfack) verified living 2026-04-28.

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                      #9a7858
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": "#9a7858",
  "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
# MDF (Medium-Density Fiberboard) · finish: matte
import bpy
mat = bpy.data.materials.new(name="mat_mdf_medium")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.3231, 0.1878, 0.0976, 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
# MDF (Medium-Density Fiberboard) · finish: matte
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_mdf_medium", materialType="Generic")
mat.setProperty("diffuse",      (154, 120, 88))   # 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": "MDF (Medium-Density Fiberboard) \u00b7 finish: matte",
  "baseColor": {
    "r": 0.3231,
    "g": 0.1878,
    "b": 0.0976
  },
  "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_mdf_medium",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.3231,
          0.1878,
          0.0976,
          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
# MDF (Medium-Density Fiberboard) · finish: matte
def Material "mat_mdf_medium" {
    token outputs:surface.connect = </mat_mdf_medium/PreviewSurface.outputs:surface>

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

CNC milling on swarf

surface speed (carbide)1500–3500 (mills like soft wood at the bit; faster than oak)
chipload per tooth8–18 (1/4-inch 2-flute downcut for clean top edge)
coolantdust collection MANDATORY (urea-formaldehyde dust is a respiratory hazard; see CARB Phase 2 / TSCA Title VI notes); no liquid coolant — water swells MDF irreversibly
swarf-compatible toolsend 1/8end 1/4end 3/8ball 1/4vee 1/8drill 1/8drill 1/4

The model-shop staple. Mills cleanly with sharp carbide; carbide non-negotiable (steel dulls in minutes against wood-fiber + resin matrix). Edges accept paint after sanding-sealer + primer. Use the swarf 'pocket' op with the 1/4 endmill for relief milling, 'contour' with the 1/8 ball for sculpted surfaces. The model-shop bench reference for paint-grade prototypes.

Onsrud Cutter MDF feeds & speeds; CARB Phase 2 dust-handling guidance; ShopBot Forum MDF best-practices.

→ try this material in swarf

Second life

repairabilitylow — water exposure swells MDF irreversibly; damaged MDF panels are typically replaced rather than repaired.
recyclabilityvery low — urea-formaldehyde resin precludes wood-product recycling; specialty incineration for energy recovery (CARB Phase 2 / TSCA Title VI compliance issues).
disposal pathconstruction debris; some specialty MDF-grinding recyclers.
typical longevity30 years (typical)
failure modes
  • water-swelling of any unsealed edge
  • formaldehyde off-gassing over the first 6–12 months in service (mitigated in CARB Phase 2 / TSCA Title VI panels)
  • edge-screw stripping under sustained load

Wood Handbook engineered-panel section; CARB Phase 2 ATCM 93120; TSCA Title VI EPA composite-wood-products rule.

Citations

  • url · https://en.wikipedia.org/wiki/Medium-density_fibreboard
  • standard · ANSI A208.2 — Medium Density Fiberboard for Interior Applications
  • standard · CARB ATCM 93120 — Airborne Toxic Control Measure to Reduce Formaldehyde Emissions from Composite Wood Products
  • book · von Busch, *Making Trouble: Design and Material Activism* (Bloomsbury, 2022), Chapter 1 — MDF as a material engineered to 'limit the movement of the fibers' and let designers 'take shortcuts' compared to solid wood; the matter-material spectrum applied to engineered-wood panels.

Further reading