How to Calculate Injector Flow Rate

Fuel Injector Size Calculator

4 Cylinders / Injectors 6 Cylinders / Injectors 8 Cylinders / Injectors 10 Cylinders / Injectors 12 Cylinders / Injectors
Typical: 0.45-0.50 (NA), 0.55-0.65 (Turbo/Supercharged)
Safe limit is typically 80% to 85%

Required Injector Size

Per Injector (lbs/hr)
0.00
lbs/hr
Per Injector (cc/min)
0
cc/min
Note: Result includes safety margin based on the Duty Cycle entered. Always round up to the nearest available injector size.
function calculateInjectorSize() { // 1. Get input values var hp = document.getElementById("targetHP").value; var injectors = document.getElementById("numInjectors").value; var bsfc = document.getElementById("bsfcInput").value; var dutyCyclePercent = document.getElementById("dutyCycle").value; // 2. Validate inputs if (hp === "" || hp <= 0) { alert("Please enter a valid Target Horsepower."); return; } if (bsfc === "" || bsfc <= 0) { alert("Please enter a valid BSFC."); return; } if (dutyCyclePercent === "" || dutyCyclePercent 100) { alert("Please enter a valid Duty Cycle (1-100)."); return; } // 3. Convert input strings to numbers var hpVal = parseFloat(hp); var injVal = parseFloat(injectors); var bsfcVal = parseFloat(bsfc); var dcVal = parseFloat(dutyCyclePercent) / 100; // Convert percentage to decimal // 4. Calculate Flow Rate in lbs/hr // Formula: (HP * BSFC) / (Number of Injectors * Duty Cycle) var flowLbs = (hpVal * bsfcVal) / (injVal * dcVal); // 5. Convert lbs/hr to cc/min // Standard Conversion: 1 lb/hr approx 10.5 cc/min var flowCc = flowLbs * 10.5; // 6. Update HTML Results document.getElementById("resultLbs").innerHTML = flowLbs.toFixed(2); document.getElementById("resultCc").innerHTML = Math.round(flowCc); }

How to Calculate Injector Flow Rate for Your Engine

Selecting the correct fuel injector size is critical for engine performance and reliability. If your injectors are too small, the engine will run lean at high RPM, potentially causing catastrophic failure. If they are too large, you may struggle with idle quality and low-speed drivability. This calculator helps you determine the ideal flow rate based on your specific horsepower goals and engine configuration.

Understanding the Variables

  • Target Horsepower (HP): This is the flywheel horsepower you intend to achieve. Since fuel requirements are based on the power generated, this is the primary variable in the equation.
  • B.S.F.C. (Brake Specific Fuel Consumption): This number represents how efficiently your engine converts fuel into horsepower. It is defined as the amount of fuel (in lbs) required to produce 1 HP for one hour.
    General Guidelines:
    – Naturally Aspirated Engines: 0.45 – 0.50
    – Turbocharged / Supercharged Engines: 0.55 – 0.65
  • Injector Duty Cycle: This is the percentage of time the injector is open during a complete engine cycle. You never want to run injectors at 100% static capacity. A safe maximum duty cycle is 80% to 85%. This safety margin accounts for varying environmental conditions and ensures the injector doesn't overheat or lock open.

The Injector Sizing Formula

To calculate the required flow rate manually, the automotive industry uses the following standard equation:

Flow Rate (lbs/hr) = (Target HP × BSFC) ÷ (No. of Injectors × Duty Cycle)

Once you have the result in lbs/hr, you can convert it to cubic centimeters per minute (cc/min), which is a common rating for import and modern domestic injectors. The conversion factor is roughly 10.5.

Flow Rate (cc/min) = Flow Rate (lbs/hr) × 10.5

Example Calculation

Let's assume you are building a Turbocharged V8 engine targeting 800 HP.

  • HP: 800
  • BSFC: 0.60 (Typical for Turbo)
  • Injectors: 8
  • Max Duty Cycle: 0.80 (80%)

Step 1: (800 × 0.60) = 480 lbs of fuel per hour total.

Step 2: (8 × 0.80) = 6.4 (Divisor).

Step 3: 480 ÷ 6.4 = 75 lbs/hr.

In this scenario, you would need injectors capable of flowing at least 75 lbs/hr (or approx 788 cc/min) to support 800 HP safely.

Leave a Comment