F&a Rate Model Calculator

F&A Rate Model Calculator (MTDC vs TDC) body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; } .calculator-container { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 25px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calc-header { text-align: center; margin-bottom: 25px; color: #2c3e50; } .input-group { margin-bottom: 15px; } .input-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #495057; } .input-group input { width: 100%; padding: 10px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group .hint { display: block; font-size: 0.85em; color: #6c757d; margin-top: 4px; } .section-title { font-size: 1.1em; font-weight: bold; color: #0056b3; margin-top: 20px; margin-bottom: 10px; border-bottom: 2px solid #e9ecef; padding-bottom: 5px; } .btn-container { margin-top: 25px; text-align: center; } button { background-color: #0056b3; color: white; border: none; padding: 12px 25px; font-size: 16px; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; margin: 0 5px; } button:hover { background-color: #004494; } button.reset-btn { background-color: #6c757d; } button.reset-btn:hover { background-color: #5a6268; } #result-area { margin-top: 30px; background: white; border: 1px solid #dee2e6; border-radius: 6px; padding: 20px; display: none; } .result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f1f3f5; } .result-row:last-child { border-bottom: none; } .result-label { font-weight: 500; color: #495057; } .result-value { font-weight: bold; color: #212529; } .highlight-result { background-color: #e8f4fd; padding: 15px; border-radius: 4px; margin-top: 10px; border-left: 4px solid #0056b3; } .article-content h2 { color: #2c3e50; margin-top: 30px; } .article-content h3 { color: #34495e; margin-top: 20px; } .article-content ul { padding-left: 20px; } .article-content li { margin-bottom: 8px; } .definition-box { background: #fff3cd; border: 1px solid #ffeeba; padding: 15px; border-radius: 4px; margin: 20px 0; }

F&A Rate Model Calculator

Calculate Indirect Costs (IDC) based on Modified Total Direct Costs (MTDC)

Included in F&A Base (Subject to Overhead)
Salaries, wages, and fringe benefits.
Materials, supplies, travel, publication costs, services.
Only the first $25k of each subcontract is subject to F&A.
Excluded from F&A Base
Items with useful life >1yr and cost >$5,000 (standard threshold).
Student tuition or stipends/travel for training participants.
The remaining amount of subcontracts exceeding $25k.
Rate Parameter
Enter the percentage (e.g., 52.5 for 52.5%).
Total Direct Costs (TDC): $0.00
Exclusions (Not Taxed): $0.00
Modified Total Direct Costs (MTDC Base): $0.00
F&A (Indirect) Cost: $0.00
Total Project Cost: $0.00
(TDC + F&A Cost)

Understanding the F&A Rate Model

The F&A Rate Model Calculator is designed to assist grant administrators, principal investigators (PIs), and university finance officers in modeling the total costs of a research proposal. F&A stands for Facilities and Administrative costs, often referred to as "Indirect Costs" or "Overhead."

Key Concept: MTDC (Modified Total Direct Costs)
Most federal grants (NIH, NSF) do not calculate overhead on the absolute total of direct costs. Instead, they use a "Modified" base that excludes certain expense categories like equipment, tuition, and large subcontract portions.

How the Calculation Works

This calculator separates your budget into two primary buckets to ensure accuracy:

  • MTDC Base (Included): Costs that attract overhead charges. This typically includes salaries, fringe benefits, materials, supplies, travel, and the first $25,000 of each subaward.
  • Exclusions (Excluded): Costs that are exempt from overhead charges. This typically includes capital equipment (usually defined as items >$5,000 with a life >1 year), tuition remission, patient care costs, and the portion of any subaward exceeding $25,000.

Formula Definitions

The model uses the following logic to determine the final grant request amount:

  • Total Direct Costs (TDC) = Personnel + Operational + Equipment + Tuition + All Subcontracts.
  • MTDC Base = Personnel + Operational + First $25k of Subcontracts.
  • F&A Cost = MTDC Base × (F&A Rate / 100).
  • Total Project Cost = TDC + F&A Cost.

Why This Matters for Budgeting

Miscalculating F&A is a common error in grant proposals. If you apply your rate to the Total Direct Costs (TDC) instead of the Modified Total Direct Costs (MTDC), you may significantly overestimate the budget, potentially leading to administrative rejection or budget cuts later. Conversely, forgetting to exclude equipment or tuition will inflate your indirect cost request improperly.

Note: While MTDC is the standard federal base, some non-federal sponsors may use TDC (Total Direct Costs) as the base. If your sponsor uses TDC, simply enter 0 in the exclusion fields or treat all costs as "Operational Costs."

function formatCurrency(num) { return '$' + num.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); } function getVal(id) { var el = document.getElementById(id); var val = parseFloat(el.value); if (isNaN(val)) return 0; return val; } function calculateFAModel() { // 1. Get Inputs – Included in Base var personnel = getVal("personnelCosts"); var operational = getVal("operationalCosts"); var subFirst25k = getVal("subcontractFirst25k"); // 2. Get Inputs – Excluded from Base var equipment = getVal("equipmentCosts"); var tuition = getVal("tuitionCosts"); var subExcess = getVal("subcontractExcess"); // 3. Get Rate var ratePercent = getVal("faRate"); // 4. Calculate Logic // MTDC Base = items subject to overhead var mtdcBase = personnel + operational + subFirst25k; // Total Exclusions var exclusions = equipment + tuition + subExcess; // Total Direct Costs (TDC) = Base + Exclusions var tdc = mtdcBase + exclusions; // F&A Cost = Base * (Rate / 100) var faCost = mtdcBase * (ratePercent / 100); // Total Project Cost = TDC + F&A Cost var totalProject = tdc + faCost; // 5. Display Results document.getElementById("valTDC").innerHTML = formatCurrency(tdc); document.getElementById("valExclusions").innerHTML = formatCurrency(exclusions); document.getElementById("valMTDC").innerHTML = formatCurrency(mtdcBase); document.getElementById("valFACost").innerHTML = formatCurrency(faCost); document.getElementById("valTotalProject").innerHTML = formatCurrency(totalProject); // Show result area document.getElementById("result-area").style.display = "block"; } function resetFACalculator() { document.getElementById("personnelCosts").value = ""; document.getElementById("operationalCosts").value = ""; document.getElementById("subcontractFirst25k").value = ""; document.getElementById("equipmentCosts").value = ""; document.getElementById("tuitionCosts").value = ""; document.getElementById("subcontractExcess").value = ""; document.getElementById("faRate").value = ""; document.getElementById("result-area").style.display = "none"; }

Leave a Comment