Government Wrap Rate Calculation

.wrap-rate-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .wrap-rate-container h2 { color: #004a99; text-align: center; margin-bottom: 25px; } .input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .input-group { display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .input-group input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .calc-btn { width: 100%; background-color: #004a99; color: white; padding: 15px; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #003366; } .results-area { margin-top: 25px; padding: 20px; background-color: #fff; border: 2px solid #004a99; border-radius: 6px; } .result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; } .result-label { font-weight: bold; } .result-value { color: #004a99; font-weight: 800; } .article-section { margin-top: 40px; line-height: 1.6; } .article-section h3 { color: #004a99; border-left: 4px solid #004a99; padding-left: 10px; } .example-box { background-color: #eef6ff; padding: 15px; border-radius: 4px; margin: 15px 0; }

Government Contractor Wrap Rate Calculator

Multiplier (Wrap Rate): 0.00
Fully Burdened Hourly Rate: $0.00
Total Indirect Cost per Hour: $0.00

Understanding Government Contract Wrap Rates

For federal contractors, the "Wrap Rate" is one of the most critical financial metrics. It represents the multiplier applied to direct labor costs to cover all indirect expenses and profit. Understanding your wrap rate is essential for competitive bidding on DCAA (Defense Contract Audit Agency) regulated contracts.

The Components of a Wrap Rate

A standard government wrap rate is typically composed of four primary layers:

  • Fringe Benefits: Costs related to the employee, such as payroll taxes (FICA, SUTA), health insurance, 401(k) contributions, and paid time off (PTO).
  • Overhead (OH): Expenses that support the direct labor but aren't specific to the entire company, such as project management, office space for a specific contract site, and specialized equipment.
  • General and Administrative (G&A): The cost of running the corporate entity, including executive salaries, HR, accounting, legal, and business development.
  • Profit/Fee: The percentage added on top of all costs to ensure company growth and sustainability.

Realistic Example Calculation

Imagine an IT consultant with a Base Salary of $50.00/hr.

  • Fringe: 35%
  • Overhead: 15%
  • G&A: 10%
  • Profit: 8%

The math follows a cascading multiplier effect: 1.35 (Fringe) × 1.15 (OH) × 1.10 (G&A) × 1.08 (Fee) = 1.846 Wrap Rate.

Fully Burdened Bill Rate: $50.00 × 1.846 = $92.30/hr.

Why the Calculation Logic Matters

Contractors must be careful with how they apply these rates. Most DCAA-compliant accounting systems apply Fringe to Labor first, then Overhead is often applied to the Labor + Fringe pool, and G&A is applied to the Total Value Added. This calculator uses the multiplicative method, which is the industry standard for determining a final bid multiplier.

function calculateWrapRate() { var baseRate = parseFloat(document.getElementById("baseLaborRate").value); var fringe = parseFloat(document.getElementById("fringeRate").value) || 0; var overhead = parseFloat(document.getElementById("overheadRate").value) || 0; var ga = parseFloat(document.getElementById("gaRate").value) || 0; var fee = parseFloat(document.getElementById("feeRate").value) || 0; if (isNaN(baseRate) || baseRate <= 0) { alert("Please enter a valid base labor rate."); return; } // Convert percentages to decimals var fDec = 1 + (fringe / 100); var oDec = 1 + (overhead / 100); var gDec = 1 + (ga / 100); var pDec = 1 + (fee / 100); // Calculate Multiplier (Wrap Rate) // Formula: (1+Fringe) * (1+OH) * (1+G&A) * (1+Profit) var wrapRate = fDec * oDec * gDec * pDec; // Calculate Final Rate var fullyBurdenedRate = baseRate * wrapRate; var indirectCost = fullyBurdenedRate – baseRate; // Display Results document.getElementById("resWrapRate").innerText = wrapRate.toFixed(4); document.getElementById("resBurdenedRate").innerText = "$" + fullyBurdenedRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("resIndirectCost").innerText = "$" + indirectCost.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById("results").style.display = "block"; }

Leave a Comment