Mortageg Calculator

.mort-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 12px; background-color: #f9f9f9; color: #333; } .mort-calc-header { text-align: center; margin-bottom: 30px; } .mort-calc-header h2 { color: #2c3e50; margin-bottom: 10px; } .mort-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .mort-input-group { display: flex; flex-direction: column; } .mort-input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #555; } .mort-input-group input { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; } .mort-calc-btn { grid-column: span 2; background-color: #d35400; color: white; border: none; padding: 15px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; transition: background 0.3s; } .mort-calc-btn:hover { background-color: #e67e22; } .mort-results { margin-top: 30px; padding: 20px; background-color: #fff; border-radius: 8px; border-left: 5px solid #d35400; display: none; } .mort-result-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .mort-result-item:last-child { border-bottom: none; } .mort-result-label { font-weight: 600; } .mort-result-value { color: #d35400; font-weight: bold; } .mort-article { margin-top: 40px; line-height: 1.6; } .mort-article h2 { color: #2c3e50; border-bottom: 2px solid #d35400; padding-bottom: 5px; } @media (max-width: 600px) { .mort-calc-grid { grid-template-columns: 1fr; } .mort-calc-btn { grid-column: 1; } }

Mortageg Joinery Precision Calculator

Calculate structural dimensions and mechanical tolerances for woodworking joints.

Recommended Tenon Thickness: 0 mm
Computed Tenon Width: 0 mm
Minimum Mortise Depth: 0 mm
Glue Surface Area: 0 mm²

Understanding Mortageg Mechanics

In structural woodworking, the "Mortageg" refers to the mechanical interface between two timber members. Unlike financial calculations, this physics-based approach focuses on the Rule of Thirds. This principle dictates that for maximum structural integrity, the thickness of the inner member should occupy exactly one-third of the total stock thickness.

The Physics of Joint Stability

When calculating dimensions for a joint, you must account for wood fiber compression and glue clearance. A joint that is too tight will starve the interface of adhesive, while a joint that is too loose lacks the mechanical friction necessary to resist shear forces. Our calculator uses the following logic:

  • Tenon Thickness: Derived by dividing the primary stock thickness by 3.0.
  • Tenon Width: Calculated by subtracting the dual shoulder offsets from the total stock width to prevent end-grain splitting.
  • Mortise Depth: Always calculated as the tenon length plus a 2mm "expansion pocket" for excess adhesive and seasonal movement.

Real-World Example

Consider a standard table rail with a thickness of 21mm and a width of 75mm. If you require a 30mm tenon length with 5mm shoulders:

  1. The Tenon Thickness will be 7mm (21 / 3).
  2. The Tenon Width will be 65mm (75 – 10).
  3. The Mortise Depth must be at least 32mm to ensure the tenon doesn't "bottom out" before the shoulders meet the face of the wood.

Critical Safety Margins

Always ensure that the "haunch" or shoulder size is sufficient to hide the mortise slot. If the shoulder offset is too small (less than 3mm), the joint is susceptible to racking forces which can lead to catastrophic failure of the timber fibers under load.

function calculateMortageg() { var thickness = parseFloat(document.getElementById('stockThickness').value); var width = parseFloat(document.getElementById('stockWidth').value); var shoulder = parseFloat(document.getElementById('shoulderOffset').value); var depth = parseFloat(document.getElementById('targetDepth').value); if (isNaN(thickness) || isNaN(width) || isNaN(shoulder) || isNaN(depth)) { alert("Please enter valid numerical dimensions."); return; } // Logic: Rule of Thirds for joinery physics var tenonThick = thickness / 3; var tenonWidth = width – (shoulder * 2); var mortiseDepth = depth + 2; // 2mm clearance for glue/air // Surface area calculation for glue bond strength // Area = 2 * (TenonWidth * Depth) + 2 * (TenonThick * Depth) var surfaceArea = (2 * (tenonWidth * depth)) + (2 * (tenonThick * depth)); document.getElementById('resTenonThick').innerText = tenonThick.toFixed(2) + " mm"; document.getElementById('resTenonWidth').innerText = tenonWidth.toFixed(2) + " mm"; document.getElementById('resMortiseDepth').innerText = mortiseDepth.toFixed(2) + " mm"; document.getElementById('resSurfaceArea').innerText = Math.round(surfaceArea) + " mm²"; document.getElementById('mortResults').style.display = 'block'; }

Leave a Comment