How is the Treasury Rate Applied in Calculating Fccom

Facilities Capital Cost of Money (FCCOM) Calculator .fccom-calculator-container { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .fccom-header { text-align: center; margin-bottom: 30px; color: #2c3e50; } .fccom-input-group { margin-bottom: 20px; } .fccom-label { display: block; margin-bottom: 8px; font-weight: 600; color: #34495e; } .fccom-input { width: 100%; padding: 12px; border: 1px solid #bdc3c7; border-radius: 4px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .fccom-input:focus { border-color: #3498db; outline: none; } .fccom-btn { width: 100%; padding: 15px; background-color: #2c3e50; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .fccom-btn:hover { background-color: #34495e; } .fccom-results { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 4px; border-left: 5px solid #2c3e50; display: none; } .fccom-result-item { margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e9ecef; padding-bottom: 10px; } .fccom-result-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .fccom-result-label { color: #7f8c8d; font-weight: 500; } .fccom-result-value { font-size: 18px; font-weight: bold; color: #2c3e50; } .fccom-article { margin-top: 50px; line-height: 1.6; color: #333; } .fccom-article h2 { color: #2c3e50; border-bottom: 2px solid #ecf0f1; padding-bottom: 10px; } .fccom-article h3 { color: #34495e; margin-top: 25px; } .fccom-article p { margin-bottom: 15px; } .fccom-article ul { margin-bottom: 15px; padding-left: 20px; } .fccom-article li { margin-bottom: 8px; }

FCCOM Calculator

Facilities Capital Cost of Money & Treasury Rate Application

Current Prompt Payment Act Interest Rate
Total base for the indirect pool (e.g., Total Direct Labor)
Portion of the base attributed to the specific contract
Total Cost of Money (Pool Level): $0.00
FCCOM Factor: 0.00000
Contract FCCOM Amount: $0.00

How is the Treasury Rate Applied in Calculating FCCOM?

Facilities Capital Cost of Money (FCCOM) is an allowable cost in government contracting that compensates a contractor for the investment of capital in facilities used to perform government contracts. The calculation is governed by Cost Accounting Standard (CAS) 414. A critical component of this calculation is the application of the Treasury Rate.

The Role of the Treasury Rate

The Treasury Rate used in calculating FCCOM is technically known as the "Renegotiation Board Interest Rate" or the "Prompt Payment Act Interest Rate." This rate is determined semi-annually (usually in January and July) by the Secretary of the Treasury. It acts as an imputed interest rate, representing the opportunity cost of the capital tied up in the contractor's facilities.

It is important to note that this is not an actual interest expense paid to a bank. Instead, it is a calculated amount that the government allows the contractor to recover to encourage investment in efficient facilities.

Step-by-Step Calculation Logic

To determine the FCCOM allocable to a specific contract, the Treasury Rate is applied through the following logical flow:

  • Step 1: Determine Net Book Value (NBV). The contractor identifies the average Net Book Value of the tangible capital assets (land, buildings, equipment) allocable to a specific overhead pool (e.g., Engineering Overhead or Manufacturing Overhead).
  • Step 2: Apply the Treasury Rate. The average NBV is multiplied by the current Treasury Rate. This yields the "Total Facilities Capital Cost of Money" for that specific pool.
    Formula: NBV × Treasury Rate = Pool FCCOM
  • Step 3: Calculate the FCCOM Factor. The Pool FCCOM is divided by the total allocation base for that pool (e.g., Total Direct Labor Dollars). This results in a decimal factor.
    Formula: Pool FCCOM / Allocation Base = FCCOM Factor
  • Step 4: Allocate to Contract. Finally, the FCCOM Factor is multiplied by the specific base costs incurred on the contract in question.
    Formula: Contract Base × FCCOM Factor = Contract FCCOM

Practical Example

If a company has machinery with a Net Book Value of $1,000,000 assigned to the manufacturing pool, and the current Treasury Rate is 4.5%, the total Cost of Money for that pool is $45,000 ($1M × 4.5%). If the total manufacturing labor (the allocation base) is $500,000, the FCCOM factor is 0.09 (or 9%). For a contract with $50,000 in manufacturing labor, the billable FCCOM would be $4,500.

Why it Matters

Understanding how the Treasury Rate is applied is vital for compliance and pricing. FCCOM is an allowable cost but is excluded from the cost base when calculating profit or fee objectives in weighted guidelines. Correct application ensures contractors recover their facility investment costs without inflating profit calculations improperly.

function calculateFCCOM() { // Get input values using var var netBookValue = parseFloat(document.getElementById('netBookValue').value); var treasuryRate = parseFloat(document.getElementById('treasuryRate').value); var allocationBaseTotal = parseFloat(document.getElementById('allocationBaseTotal').value); var contractBase = parseFloat(document.getElementById('contractBase').value); // Validation if (isNaN(netBookValue) || isNaN(treasuryRate) || isNaN(allocationBaseTotal) || isNaN(contractBase)) { alert("Please enter valid numeric values for all fields."); return; } if (allocationBaseTotal === 0) { alert("Allocation Base Total cannot be zero."); return; } // Logic Step 1: Calculate Total Cost of Money for the Pool // Formula: Net Book Value * (Treasury Rate / 100) var poolCostOfMoney = netBookValue * (treasuryRate / 100.0); // Logic Step 2: Calculate FCCOM Factor // Formula: Pool Cost of Money / Allocation Base Total var fccomFactor = poolCostOfMoney / allocationBaseTotal; // Logic Step 3: Calculate Contract Specific FCCOM // Formula: Contract Base * FCCOM Factor var contractFccom = contractBase * fccomFactor; // Display Results var resultDiv = document.getElementById('fccomResults'); resultDiv.style.display = "block"; document.getElementById('resultTotalCostOfMoney').innerHTML = "$" + poolCostOfMoney.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2}); // Factors are often displayed with 5 decimal places in government accounting document.getElementById('resultFccomFactor').innerHTML = fccomFactor.toFixed(5); document.getElementById('resultContractFccom').innerHTML = "$" + contractFccom.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2}); }

Leave a Comment