Steel Beam Span and Load Calculator
ANA›Life Services Authority›National Calculator Authority›Steel Beam Span and Load Calculator
.calc-container { max-width: 640px; margin: 2rem 0; padding: 1.5rem; background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); font-family: system-ui, -apple-system, sans-serif; } .calc-container h3 { font-family: Georgia, serif; font-size: 1.15rem; color: #1a1a1a; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; } .calc-row label { min-width: 160px; font-size: 0.9rem; color: #333; font-weight: 500; } .calc-row input[type="number"], .calc-row select { flex: 1; min-width: 120px; max-width: 200px; padding: 0.5rem 0.6rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.9rem; font-family: system-ui, sans-serif; color: #1a1a1a; background: #fafaf8; } .calc-row input:focus, .calc-row select:focus { outline: none; border-color: var(--ac, #3d5a80); box-shadow: 0 0 0 2px rgba(26,74,138,0.12); } .calc-row .unit { font-size: 0.82rem; color: #888; min-width: 30px; } .calc-btn { display: inline-block; margin-top: 0.5rem; padding: 0.55rem 1.5rem; background: var(--ac, #3d5a80); color: #fff; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: system-ui, sans-serif; } .calc-btn:hover { opacity: 0.9; } .calc-result { margin-top: 1.25rem; padding: 1rem 1.25rem; background: #f0f6fc; border-left: 3px solid var(--ac, #3d5a80); border-radius: 0 6px 6px 0; display: none; } .calc-result.visible { display: block; } .calc-result-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #666; margin-bottom: 0.25rem; } .calc-result-value { font-size: 1.6rem; font-weight: 700; color: var(--ac, #3d5a80); } .calc-result-detail { font-size: 0.85rem; color: #555; margin-top: 0.5rem; line-height: 1.5; } .calc-note { margin-top: 1rem; font-size: 0.8rem; color: #888; font-style: italic; } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; } .calc-grid-item { padding: 0.6rem 0.8rem; background: #f8f9fa; border-radius: 4px; border: 1px solid #eee; } .calc-grid-item .label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; } .calc-grid-item .value { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; } @media (max-width: 720px) { .calc-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; } .calc-row label { min-width: auto; } .calc-row input[type="number"], .calc-row select { max-width: 100%; width: 100%; } .calc-grid { grid-template-columns: 1fr; } } .calc-chart { margin: 1rem 0; text-align: center; } .calc-chart svg { max-width: 100%; height: auto; } .calc-chart-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.2rem; margin-top: 0.6rem; font-size: 0.8rem; color: #555; } .calc-chart-legend span { display: inline-flex; align-items: center; gap: 0.3rem; } .calc-chart-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; font-style: normal; } .calc-related { max-width: 640px; margin: 2rem 0 1rem; padding: 1.25rem 1.5rem; background: #f8f9fa; border: 1px solid #e8e8e8; border-radius: 8px; } .calc-related h3 { font-family: Georgia, serif; font-size: 1rem; color: #1a1a1a; margin: 0 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-related-list { list-style: none; padding: 0; margin: 0 0 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; } .calc-related-list li a { font-size: 0.88rem; color: var(--ac, #3d5a80); text-decoration: none; } .calc-related-list li a:hover { text-decoration: underline; } .calc-browse-all { margin: 0.5rem 0 0; font-size: 0.9rem; font-weight: 600; } .calc-browse-all a { color: var(--ac, #3d5a80); text-decoration: none; } .calc-browse-all a:hover { text-decoration: underline; } @media (max-width: 720px) { .calc-related-list { grid-template-columns: 1fr; } }
Steel Beam Span and Load Calculator
Calculate the maximum allowable uniform distributed load (UDL) or maximum safe span for a simply supported steel beam using elastic bending theory and standard steel section properties.
Beam Span, L (m)
Elastic Section Modulus, Z (cm³)
Find Z from steel section tables (e.g. UB 305×127×48 → Z ≈ 711 cm³)
Steel Yield Strength, fy (MPa)
S275 = 275 MPa, S355 = 355 MPa, S460 = 460 MPa
Safety Factor (typically 1.5 – 1.67)
Beam Self-Weight (kN/m) (optional, 0 to ignore)
Calculate
Results will appear here.
function steCalc() { const resultDiv = document.getElementById('ste-result');
const L = parseFloat(document.getElementById('ste-span').value); const Z = parseFloat(document.getElementById('ste-section-modulus').value); const fy = parseFloat(document.getElementById('ste-yield-strength').value); const SF = parseFloat(document.getElementById('ste-safety-factor').value); const sw = parseFloat(document.getElementById('ste-self-weight').value) || 0;
// --- Validation --- if (isNaN(L) || L ⚠ Please enter a valid positive beam span (L).'; return; } if (isNaN(Z) || Z ⚠ Please enter a valid positive section modulus (Z).'; return; } if (isNaN(fy) || fy 700) { resultDiv.innerHTML = '⚠ Yield strength must be between 100 and 700 MPa.'; return; } if (isNaN(SF) || SF 3.0) { resultDiv.innerHTML = '⚠ Safety factor must be between 1.0 and 3.0.'; return; } if (sw ⚠ Self-weight cannot be negative.'; return; }
// --- Core Calculations --- // Allowable bending stress // f_allow = fy / SF [MPa = N/mm²] const f_allow = fy / SF;
// Allowable moment capacity // M_allow = f_allow × Z [Z in cm³ → convert to mm³ × 1000] // M_allow [N·mm] = f_allow [N/mm²] × Z [mm³] // Z cm³ → mm³: multiply by 1000 const Z_mm3 = Z * 1000; // mm³ const M_allow_Nmm = f_allow * Z_mm3; // N·mm const M_allow_kNm = M_allow_Nmm / 1e6; // kN·m
// For a simply supported beam with UDL (w total including self-weight): // M_max = w × L² / 8 // Solving for w_total: w_total = 8 × M_allow / L² const w_total_kNm = (8 * M_allow_kNm) / (L * L); // kN/m
// Subtract self-weight to get net allowable applied load const w_applied_kNm = w_total_kNm - sw;
// Total allowable load on beam const W_total_kN = w_applied_kNm * L;
// Maximum safe span (if load is given as self-weight only, solve for L) // L_max = sqrt(8 × M_allow / w_total) — shown for reference using sw as total load let L_max_m = null; if (sw > 0) { L_max_m = Math.sqrt((8 * M_allow_kNm) / sw); }
// Deflection check (span/360 serviceability limit, elastic, EI needed) // Using E = 210,000 MPa for steel; I not directly available from Z alone // Approximate: I ≈ Z × (d/2), but d unknown — skip exact deflection, // provide span-to-depth guidance instead.
// Slenderness / span-to-depth ratio guidance const span_depth_typical = L * 1000 / 20; // typical d = L/20 for steel beams (mm)
// --- Output --- let html = '### 📊 Results ';
html += ''; html += 'ParameterValue'; html += 'Allowable Bending Stress (fallow)' + f_allow.toFixed(2) + ' MPa'; html += 'Allowable Moment Capacity (Mallow)' + M_allow_kNm.toFixed(2) + ' kN·m'; html += 'Max Total UDL (incl. self-weight)' + w_total_kNm.toFixed(3) + ' kN/m'; html += 'Beam Self-Weight' + sw.toFixed(3) + ' kN/m';
if (w_applied_kNm > 0) { html += '✅ Max Allowable Applied UDL' + w_applied_kNm.toFixed(3) + ' kN/m'; html += '✅ Max Total Applied Load on Beam' + W_total_kN.toFixed(2) + ' kN'; } else { html += '⚠ Self-weight alone exceeds beam capacity at this span. Increase section modulus or reduce span.'; }
if (L_max_m !== null) { html += 'Max Safe Span (self-weight load only)' + L_max_m.toFixed(2) + ' m'; }
html += 'Typical Min. Beam Depth (L/20 rule)' + span_depth_typical.toFixed(0) + ' mm'; html += '';
// Warnings if (w_applied_kNm > 0 && w_applied_kNm 12) { html += '⚠ Spans over 12 m: lateral torsional buckling (LTB) must be checked separately per BS EN 1993-1-1 §6.3.2.
'; } if (Z
#### Formulas Used
1. Allowable Bending Stress:
fallow = fy / SF
2. Allowable Moment Capacity (Elastic):
Mallow = fallow × Z
where Z is the elastic section modulus (cm³ → converted to mm³ × 1000)
3. Maximum UDL for Simply Supported Beam:
Mmax = w × L² / 8 → wtotal = 8 × Mallow / L²
4. Net Allowable Applied Load:
wapplied = wtotal − wself-weight
Wtotal = wapplied × L
5. Maximum Safe Span (given self-weight as governing load):
Lmax = √(8 × Mallow / wsw)
#### Assumptions & References
- Default yield strength fy = 275 MPa corresponds to Grade S275 steel (BS EN 10025).
- Lateral torsional buckling (LTB) is not accounted for — adequate lateral restraint is assumed. For unrestrained beams, check per BS EN 1993-1-1 §6.3.2.
- Shear capacity is not checked here; verify VEd ≤ Vpl,Rd separately.
More Calculators
- Price Gouging Detection Calculator
- National Construction Code (NCC) Energy Efficiency Rating Calculator
- Consumer Rights Settlement Estimator
- Debt Settlement Savings Calculator
- Civil Rights Statute of Limitations Calculator
- Network Vulnerability Exposure Calculator
- Deck Railing Baluster Spacing Calculator
- Class Action Settlement Per-Member Payout Estimator
- Contingency Fee vs. Hourly Fee Cost Comparator
- Civil Penalty & Damages Estimator
- Nebraska Small Claims Court Limit Checker
- Nebraska Divorce Filing Cost Estimator
Read Next
Contingency Fee Vs Hourly Fee Cost Comparator ANA › Life Services Authority › National Calculator Authority › Contingency Fee vs.
Nebraska Small Claims Court Limit Checker ANA › Life Services Authority › National Calculator Authority › Nebraska Small Claims Court Limit Checker .calc-container {...
Study Time Planner Authority Network America › Life Services Authority › National Calculator Authority .calc-container { max-width: 640px;...