ForMatter/Materials/paper/Chipboard (Recycled Backing Board)
mat_paper_chipboard_recycled

Chipboard (Recycled Backing Board)

100 percent recycled paperboard, dense backing and structural-paper use · chipboard, binder's board, book-back board, kraft chipboard, recycled paperboard

The gray-brown stiff cardboard at the back of every notepad and the bottom of every drawing pad. Chipboard is the cheapest paperboard in the catalog — 100 percent recycled paper pulp pressed into stiff sheets used as backings, drawer dividers, sketch-pad backboards, picture-framing matboards, model-making structural sheets, bookbinding cores. The gray color is the visible mark of recycled fiber (no bleaching pass to whiten the pulp). Standard caliper (thickness) runs 0.022 to 0.080 inch (0.55-2 mm) — thinner for backings, thicker for bookbinding cores and small-box construction. Cuts cleanly with a knife or board shear; scores and folds; takes paint, paste, and bookbinding cloth. The model-making and bookbinding workhorse — buy from Dick Blick / art-supply houses for hobby use, by the carton from packaging suppliers (Uline) for production.

Multi-ply paperboard, 100 percent post-consumer recycled paper pulp pressed into a dense single-ply or laminated multi-ply sheet. Density 600-900 kg/m³. Standard caliper 0.022, 0.030, 0.046, 0.060, 0.080 inch (point-22 chipboard, point-30, etc., the trade designations). Tensile strength along the grain 10-25 MPa; across grain 5-15 MPa (the differential reflects pulp-fiber alignment from the manufacturing process). Stiffness measured per Taber stiffness test — the higher the better, ranges 50-500 Taber units depending on caliper. Surface is uncoated and gray-brown; faceable on one side with a kraft brown liner for premium grades (the binder's-board grade typically has a brown kraft face). pH typically slightly acidic (4-5.5) reflecting the unbuffered recycled fiber — not archival-grade for direct contact with photographs or fine art (acid migration etches surface contact areas over years; conservation framing uses acid-free buffered matboard, not chipboard). Cuts on knife / board shear / die press; scores cleanly for folding into small-box construction. Glues with PVA, paste, or hot-melt readily.

mechanical

  • density_kg_m3750
  • caliper_mm_typical1.0
  • tensile_strength_mpa18
  • ph5.0
source: Mohawk Paper recycled-paperboard specifications; ASTM D828 paperboard tensile test

Sustainability

  • embodied carbon kg co2e per kg0.5
  • sourceEditorial estimate from ICE / Granta CES EduPack class data for recycled paperboard, cradle-to-gate. Among the lowest embodied-carbon paper materials because of the 100 percent recycled fiber.
  • recyclabilityhigh — recyclable in mixed-paper streams indefinitely (subject to fiber-length degradation each cycle)
  • biodegradableTrue
  • certifications100 percent post-consumer waste (PCW) certified by major suppliers, FSC Recycled chain-of-custody certifiable
  • localitymanufactured globally; major North American suppliers International Paper, WestRock, Mohawk; minor specialty suppliers for binder's-grade through bookbinding-supply houses
visual
warm gray-brown solid; visible recycled-fiber texture under raking light; reads as honest utility material
tactile
stiff and dense; cut edge slightly fibrous; does not have the smoothness of premium cardstock
weight perception
substantial for paper; thicker calipers approach light wood
acoustic
a soft thud rather than a ring — denser than cardstock, less than wood

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                      #9a8868
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": "#9a8868",
  "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
# Chipboard (Recycled Backing Board) · finish: matte
import bpy
mat = bpy.data.materials.new(name="mat_paper_chipboard_recycled")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.3231, 0.2462, 0.1384, 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
# Chipboard (Recycled Backing Board) · finish: matte
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_paper_chipboard_recycled", materialType="Generic")
mat.setProperty("diffuse",      (154, 136, 104))   # 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": "Chipboard (Recycled Backing Board) \u00b7 finish: matte",
  "baseColor": {
    "r": 0.3231,
    "g": 0.2462,
    "b": 0.1384
  },
  "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_paper_chipboard_recycled",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.3231,
          0.2462,
          0.1384,
          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
# Chipboard (Recycled Backing Board) · finish: matte
def Material "mat_paper_chipboard_recycled" {
    token outputs:surface.connect = </mat_paper_chipboard_recycled/PreviewSurface.outputs:surface>

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

repairabilityvery low — replace.
recyclabilityhigh — closed-loop in chipboard manufacture.
disposal pathcurbside.
typical longevity10 years (typical)
failure modes
  • water damage
  • fold-creasing fatigue
  • UV yellowing

American Forest & Paper Association.