ForMatter/Materials/wood/Marine Plywood (BS 1088 / Mahogany or Okoume Veneer)
mat_plywood_marine

Marine Plywood (BS 1088 / Mahogany or Okoume Veneer)

engineered wood, structural plywood with waterproof glue and rot-resistant veneer plies · BS 1088 plywood, marine-grade plywood, okoume marine plywood, Hydrotek, Aquatek

The boat-grade plywood. The plywood that builds the hulls of small craft, the decks of medium ones, the structural elements of every wooden / cold-molded boat built since the 1950s. Marine plywood differs from construction plywood (CDX, BB) in three ways: (1) the veneer plies are rot-resistant species (mahogany, okoume, or other tropical hardwoods), (2) the glue is waterproof phenol-formaldehyde rather than urea-formaldehyde, and (3) the plies are continuous and void-free (no gaps in the inner laminations, which would let water in). The international standard is BS 1088 (the British marine-plywood standard, the global reference) — a board labeled BS 1088 is genuine marine plywood; plywood labeled 'marine grade' or 'exterior grade' without the BS 1088 stamp is an inferior alternative. The premium boatbuilding source is Boulter Plywood in Massachusetts (Joubert and Hydrotek brands); other reputable sources are Edensaw Woods, World Timber. Costs 5-10x construction plywood per sheet — pay it once, get the boat to last.

Engineered wood panel, multiple cross-laminated veneer plies bonded with waterproof phenol-formaldehyde resin (PF) under heat and pressure. Veneer species typically Khaya (African mahogany), Aucoumea klaineana (okoume), or Swietenia (genuine mahogany) for premium grades. Standard panel sizes 4x8 ft (1220x2440 mm), 4x10 ft (1220x3050 mm); thicknesses 4 to 25 mm in 0.5 mm increments at the premium tier. Density 540–680 kg/m³ depending on species. Modulus of rupture 60–90 MPa parallel to face grain, 30–45 MPa across. Internal-bond shear strength is the load-bearing-property at the glue line, tested per BS 1088 in boil-and-shear cycles (3-cycle boil test on a sample coupon, the bond must remain intact). Voids and gaps in inner plies must be < 1.5 mm, addressed by mill-stage QC. Face veneers grade A (clear, no defects) or B (minor defects acceptable); marine plywood is typically faced A/B or A/A. Works exceptionally well — saws, routes, drills cleanly, takes epoxy excellently (cold-molded boatbuilding is largely epoxy-and-marine-plywood), bonds end-grain to face-grain when fillet-glued. Edges seal with epoxy or marine sealant before painting; unsealed edges are the failure path that lets water start the rot cycle.

mechanical

  • density_kg_m3600
  • modulus_of_rupture_mpa_face_grain75
  • shear_strength_mpa1.6
  • max_void_size_mm1.5
source: BS 1088 marine plywood standard; Boulter Plywood (Joubert / Hydrotek) technical data; WoodenBoat magazine technical references

Sustainability

  • embodied carbon kg co2e per kg0.85
  • sourceEditorial estimate from ICE / Granta CES EduPack class data for plywood, cradle-to-gate. The PF resin and the tropical-hardwood veneer transport contribute most of the carbon load; FSC-certified marine plywood (Lloyd's-approved BS 1088 from FSC mills) is the responsible specification.
  • recyclabilitylow — the PF resin prevents fiber recovery; marine plywood end-of-life is mostly energy-recovery or landfill
  • biodegradablepartially — wood fiber biodegrades slowly, resin does not
  • certificationsBS 1088 (British marine plywood standard, the global reference), Lloyd's Register approval for marine use, FSC and PEFC certifiable for sustainable-source veneers
  • localitypremium production France (Joubert), Italy, Indonesia, Malaysia; designer-quantity distribution in US via Boulter Plywood (Massachusetts), Edensaw Woods (Washington), specialty boatbuilding suppliers
visual
rich mahogany or warm tan-brown face veneer; the multi-ply edge shows alternating cross-grain layers as a stripe pattern; reads as premium boatbuilding stock
tactile
smooth face from premium-grade veneer; cut edge slightly more textured but uniform; the lacquer-friendly hand of a fine cabinet wood
weight perception
moderate; heavier than softwood plywood for same thickness because of the dense veneer species
acoustic
a clear thud — denser ring than MDF, less than solid hardwood
Penny Sparke (living — quote)

New materials and new techniques broadened the vocabulary of the designer.

Sparke, *Design in Context* (Bloomsbury, 1991 [first published Quarto, 1987]), Chapter 5, 'Industry, Technology and Design,' caption to a Marcel Breuer bent-plywood dining suite (1936). Sparke positions Breuer's plywood furniture, alongside the Aalto-led Finnish moulded-plywood industry of the same decade, as the canonical demonstration that plywood was a primary architectural / furniture material in the inter-war years, not a substitute.

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                      #7a4a2b
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": "#7a4a2b",
  "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
# Marine Plywood (BS 1088 / Mahogany or Okoume Veneer) · finish: woodgrain
import bpy
mat = bpy.data.materials.new(name="mat_plywood_marine")
mat.use_nodes = True
bsdf = mat.node_tree.nodes["Principled BSDF"]
bsdf.inputs["Base Color"].default_value         = (0.1946, 0.0685, 0.0242, 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
# Marine Plywood (BS 1088 / Mahogany or Okoume Veneer) · finish: woodgrain
# Run from Window → Scripting Console
import lux
mat = lux.createMaterial(name="mat_plywood_marine", materialType="Generic")
mat.setProperty("diffuse",      (122, 74, 43))   # 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": "Marine Plywood (BS 1088 / Mahogany or Okoume Veneer) \u00b7 finish: woodgrain",
  "baseColor": {
    "r": 0.1946,
    "g": 0.0685,
    "b": 0.0242
  },
  "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_plywood_marine",
      "pbrMetallicRoughness": {
        "baseColorFactor": [
          0.1946,
          0.0685,
          0.0242,
          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
# Marine Plywood (BS 1088 / Mahogany or Okoume Veneer) · finish: woodgrain
def Material "mat_plywood_marine" {
    token outputs:surface.connect = </mat_plywood_marine/PreviewSurface.outputs:surface>

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

CNC milling on swarf

surface speed (carbide)1500–3000
chipload per tooth8–15 (1/4-inch 2-flute compression endmill preferred)
coolantdust collection mandatory; spray-mist of denatured alcohol acceptable for cleaner edges on phenolic-bonded plies
swarf-compatible toolsend 1/8end 1/4end 3/8ball 1/4drill 1/8drill 1/4

Compression bits cut both faces clean — critical when both sides are visible. Watch for ply-edge tearout on through-cuts; tab the part with the swarf 'outline' op. Phenolic resin is harder on tools than the wood plies — expect shorter tool life than solid hardwood.

Onsrud Cutter solid-wood and plywood feeds & speeds (compression-bit table); ShopBot Forum plywood best-practices.

→ try this material in swarf

Second life

repairabilitymoderate — patch-replacement of damaged plies is the marine-repair tradition (West System epoxy; cold-molded wooden boat construction).
recyclabilitylow — phenolic-resin-bonded plies cannot be recycled into new wood products; specialty incineration for energy recovery.
disposal pathconstruction debris; boat-builders salvage usable boards.
typical longevity40 years (typical)
failure modes
  • ply-edge water ingress causing delamination (the canonical marine-ply failure — handled by encapsulating all edges in epoxy)
  • rot in cores between epoxy-sealed faces
  • UV degradation of unprotected face plies

USDA Forest Products Lab Wood Handbook, plywood section; West System Epoxy technical literature; British Standard BS 1088 marine-plywood specification.

In the collection

Citations

  • url · https://en.wikipedia.org/wiki/Plywood
  • standard · BS 1088 — Marine Plywood Specification (British / international reference standard)
  • book · Sparke, *Design in Context* (Bloomsbury, 1991), Chapter 5, 'Industry, Technology and Design,' on Breuer / Aalto inter-war bent-plywood furniture as the moment plywood became an authored material rather than a substitute.

Further reading