Flood Damage Replacement Cost Estimator
ANA›Life Services Authority›National Calculator Authority›Flood Damage Replacement Cost Estimator
.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; } }
Flood Damage Replacement Cost Estimator
Estimates the replacement cost of flood-damaged property using FEMA depth-damage functions, regional construction costs, and structure characteristics.
Structure Type
Single-Family Residential (1-story, no basement) Single-Family Residential (2-story, no basement) Single-Family Residential (with basement) Mobile / Manufactured Home Commercial / Retail Industrial / Warehouse
Total Finished Floor Area (sq ft)
Flood Depth Above First Floor (ft) (use negative for below-floor)
Replacement Cost Value of Structure ($)
Contents Value ($) (optional, 0 to skip)
Regional Cost Multiplier
Low-Cost Region (e.g. rural Midwest/South) — 0.82× National Average — 1.00× Moderate-Cost Region (e.g. Southeast coast) — 1.15× High-Cost Region (e.g. Mid-Atlantic, Gulf Coast) — 1.30× Very High-Cost Region (e.g. NYC, San Francisco) — 1.55×
Year Structure Built
Foundation Type
Slab-on-Grade Crawlspace Full Basement Elevated / Pier & Beam
Calculate Replacement Cost Enter values above to estimate flood damage replacement cost.
function floCalc() { // ── Inputs ────────────────────────────────────────────────────────────── var structType = parseFloat(document.getElementById('flo-struct-type').value); var sqft = parseFloat(document.getElementById('flo-sqft').value); var floodDepth = parseFloat(document.getElementById('flo-flood-depth').value); var rcv = parseFloat(document.getElementById('flo-rcv').value); var contents = parseFloat(document.getElementById('flo-contents').value) || 0; var regionMult = parseFloat(document.getElementById('flo-region').value); var yearBuilt = parseFloat(document.getElementById('flo-age').value); var foundation = document.getElementById('flo-foundation').value; var resultDiv = document.getElementById('flo-result');
// ── Validation ─────────────────────────────────────────────────────────── var errors = []; if (isNaN(sqft) || sqft 2025) errors.push("Year built must be between 1800 and 2025."); if (errors.length > 0) { resultDiv.innerHTML = '' + errors.join('') + ''; return; }
// ── FEMA Depth-Damage Functions (% of structure value) ────────────────── // Source: FEMA Flood Damage Functions (Hazus-MH 4.2, Table 7.11 / USACE IWR) // Depth breakpoints: -4, -2, 0, 1, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 24 ft // Damage % for each structure type at each depth var depthBreaks = [-4, -2, 0, 1, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 24];
// Damage fractions (0–1) per structure type (1–6) at each depth break var damageTables = { 1: [0.00, 0.00, 0.04, 0.08, 0.14, 0.24, 0.34, 0.43, 0.52, 0.59, 0.65, 0.70, 0.74, 0.77, 0.82], 2: [0.00, 0.00, 0.02, 0.05, 0.09, 0.16, 0.23, 0.30, 0.37, 0.43, 0.48, 0.53, 0.57, 0.60, 0.65], 3: [0.00, 0.02, 0.06, 0.11, 0.18, 0.28, 0.38, 0.47, 0.55, 0.62, 0.67, 0.72, 0.76, 0.79, 0.84], 4: [0.00, 0.00, 0.08, 0.15, 0.25, 0.40, 0.55, 0.65, 0.72, 0.78, 0.83, 0.87, 0.90, 0.92, 0.95], 5: [0.00, 0.00, 0.03, 0.07, 0.12, 0.20, 0.28, 0.36, 0.43, 0.50, 0.56, 0.61, 0.65, 0.68, 0.73], 6: [0.00, 0.00, 0.01, 0.03, 0.06, 0.11, 0.17, 0.23, 0.29, 0.35, 0.40, 0.45, 0.49, 0.52, 0.57] };
// Linear interpolation between depth breakpoints function interpolateDamage(depth, table) { if (depth = depthBreaks[depthBreaks.length - 1]) return table[table.length - 1]; for (var i = 0; i = depthBreaks[i] && depth 20) { ageAdj = 1.0 + Math.min((age - 20) * 0.005, 0.15); }
// ── Adjusted Structure Damage Fraction ─────────────────────────────────── var adjDamageFraction = Math.min(baseDamageFraction * foundMult * ageAdj, 1.0);
// ── Structure Replacement Cost ──────────────────────────────────────────── // Damaged portion × RCV × regional multiplier var structDamageCost = adjDamageFraction * rcv * regionMult;
// ── Contents Damage ─────────────────────────────────────────────────────── // FEMA contents damage functions (simplified: ~1.4× structure damage fraction for residential, // ~1.1× for commercial, capped at 1.0) // Source: Hazus-MH 4.2 Table 7.14 var contentsDamageMultipliers = { 1: 1.40, 2: 1.30, 3: 1.45, 4: 1.50, 5: 1.10, 6: 0.90 }; var contentsFraction = Math.min(baseDamageFraction * (contentsDamageMultipliers[structType] || 1.2), 1.0); var contentsDamageCost = contentsFraction * contents;
// ── Cleanup & Mitigation Costs ──────────────────────────────────────────── // FEMA estimates cleanup at $3–$8/sq ft depending on depth; use depth-scaled formula // Cleanup cost = sqft × base_rate × depth_factor × regional_mult var baseCleanupRate = 3.50; // $/sq ft baseline var depthFactor = 1.0 + Math.max(floodDepth, 0) * 0.08; // +8% per foot above floor var cleanupCost = sqft * baseCleanupRate * depthFactor * regionMult;
// ── Mold Remediation ───────────────────────────────────────────────────── // Triggered when flood depth > 0 ft; cost scales with depth and area // Source: EPA / IICRC S520 Standard var moldCost = 0; if (floodDepth > 0) { var moldRate = 2.00 + floodDepth * 0.25; // $/sq ft, increases with depth moldCost = sqft * moldRate * regionMult; }
// ── Total Replacement / Repair Cost ────────────────────────────────────── var totalCost = structDamageCost + contentsDamageCost + cleanupCost + moldCost;
// ── 50% Rule Check (NFIP Substantial Damage) ───────────────────────────── var substantialDamage = (structDamageCost / rcv) >= 0.50;
// ── Formatting ──────────────────────────────────────────────────────────── function fmt(n) { return '$' + n.toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ','); } function pct(n) { return (n * 100).toFixed(1) + '%'; }
- var sdWarning = substantialDamage
- ? '' +
- '⚠ NFIP Substantial Damage Alert: Estimated structure damage (' +
- pct(structDamageCost / rcv) + ' of RCV) meets or exceeds the 50% threshold. ' +
- 'Under NFIP regulations, the structure may need to be brought into full compliance with current floodplain management standards before repair.'
- '';
- resultDiv.innerHTML =
- '### Flood Damage Replacement Cost Estimate
- ' +
- '' +
- 'Base Structure Damage Fraction (FEMA)' +
- '' + pct(baseDamageFraction) + '' +
- 'Adjusted Damage Fraction (foundation + age)' +
- '' + pct(adjDamageFraction) + '' +
- 'Structure Replacement / Repair Cost' +
- '' + fmt(structDamageCost) + '' +
- (contents > 0
- ? 'Contents Damage Cost' +
- '' + fmt(contentsDamageCost) + ''
-
- '') +
- 'Cleanup & Debris Removal' +
- '' + fmt(cleanupCost) + '' +
- (moldCost > 0
- ? 'Mold Remediation' +
- '' + fmt(moldCost) + ''
- '') + 'Total Estimated Replacement Cost' + '' + fmt(totalCost) + '' + '' + sdWarning + '* Estimates are based on FEMA Hazus-MH depth-damage functions and USACE IWR data. Actual costs may vary. Consult a licensed adjuster for official claims.
'; }
#### Formulas Used
1. Base Damage Fraction — Linear interpolation of FEMA Hazus-MH 4.2 depth-damage tables by structure type and flood depth above first floor (ft).
2. Adjusted Damage Fraction
AdjFraction = min(BaseFraction × FoundationAdj × AgeAdj, 1.0)
FoundationAdj: Slab=1.00, Crawlspace=1.05, Basement=1.18, Elevated=0.72 AgeAdj = 1.0 + min((Age − 20) × 0.005, 0.15) [if Age > 20 years] 3. Structure Replacement Cost
StructCost = AdjFraction × RCV × RegionalMultiplier 4. Contents Damage Cost
ContentsFraction = min(BaseFraction × ContentsMult, 1.0) ContentsCost = ContentsFraction × ContentsValue ContentsMult: Residential ≈ 1.30–1.50, Commercial ≈ 1.10, Industrial ≈ 0.90 5. Cleanup & Debris Removal
CleanupCost = SqFt × $3.50 × (1 + max(Depth,0) × 0.08) × RegionalMult 6. Mold Remediation (when depth > 0 ft)
MoldCost = SqFt × ($2.00 + Depth × $0.25) × RegionalMult 7. Total Cost
Total = StructCost + ContentsCost + CleanupCost + MoldCost 8. NFIP Substantial Damage Rule
Substantial Damage = (StructCost / RCV) ≥ 50%
#### Assumptions & References
- Depth-damage functions sourced from FEMA Hazus-MH 4.2, Table 7.11 (structure) and Table 7.14 (contents), and USACE IWR Flood Damage Functions.
- Regional cost multipliers are approximate and based on RSMeans Construction Cost Data and FEMA BRIC regional indices.
- Cleanup cost baseline of $3.50/sq ft is derived from FEMA P-936 (Floodproofing Non-Residential Buildings) and industry restoration data.
- Mold remediation costs follow IICRC S520 Standard and EPA guidance; triggered only when floodwater reaches above the first floor.
- Age adjustment reflects reduced material resilience in pre-1980 construction per ASCE 7 and NFIP loss statistics.
- The NFIP Substantial Damage Rule (50% threshold) is defined under 44 CFR § 59.1 and enforced by local floodplain administrators.
More Calculators
- Guardianship Bond Amount Estimator
- Required Minimum Distribution (RMD) Calculator
- Alimony / Spousal Support Estimator
- Child Support Calculator
- Parenting Time Percentage Calculator
- HUD Complaint Deadline Calculator
Read Next
Study Time Planner Authority Network America › Life Services Authority › National Calculator Authority .calc-container { max-width: 640px;...