Keep track of fluid transfers with this inline diesel flow meter. It installs directly into standard 1-inch NPT pipe setups to measure diesel, kerosene, and gasoline. The internal turbine provides 1% accuracy, while the four-digit LCD screen gives you clear batch numbers and total lifetime volume. Features and Benefits
- 1-inch standard NPT threaded connections - Screws right into your existing transfer pump hoses without needing special adapters.
- Internal precision turbine sensor - Reads fluid movement accurately across varying flow rates with roughly 1% margin of error.
- Four-digit backlit digital counter - Displays immediate batch volume clearly and tracks lifetime pumped gallons on a totalizer.
- Anodized aluminum inner housing - Handles petroleum solvents, diesel, and gasoline without corroding or gumming up over time. Applications
- Tracking diesel fuel delivery when filling tractors, combines, and support trucks from farm bulk tanks.
- Monitoring equipment fuel consumption from mobile slip tanks mounted on the back of utility pickup trucks.
- Checking gasoline and light oil throughput during liquid transfers across commercial workshops and fleet yards.
Safety & Materials
Working with fuel systems requires strict fire safety precautions. Ensure all pipe threads are clean and sealed using fuel-resistant thread paste or PTFE tape rated for hydrocarbons. Ground the metal pipework to discharge static electricity before pumping diesel, fuel, or oil. Avoid overtightening the 1-inch female ports to prevent cracking the housing. If you pair this unit with an automatic shut-off nozzle, ensure your lines can handle sudden pressure spikes when the internal venturi port shuts the poppet valve. Check all joins for weeping before putting the line under constant pressure.
Core Parts Needed:
To build an electronic monitoring rig alongside your mechanical meter, you will need several workshop components:
- A 1-inch in-line flow meter body
- Electronic pickup sensor or turbine sensor
- Arduino Uno or similar microcontroller
- 10k ohm pull-up resistor
- 5V or 12V regulated power supply
- Shielded three-core signal cable
- Fuel-rated 1-inch BSP or NPT pipe nipples
- Stainless steel hose clamps and fuel delivery hose
Ensure all electronic enclosures are sealed against vapour ingress. Standard PVC wire degrades in diesel, so route wiring through protective conduit away from discharge points.
Hardware Connection & Schematic
To log pulses from a sensor, connect the device to your microcontroller using a digital interrupt pin. Feed the sensor with a stable 5V or 12V supply depending on its rating. Connect the sensor ground directly to the Arduino ground terminal. Place a 10k ohm resistor between the 5V supply and the sensor signal line to pull the digital input high. Attach the signal wire to Arduino digital pin 2. Keep the signal run short to avoid interference from nearby pump motors. The mechanical counter continues operating independently on the fluid line regardless of whether the external wiring is connected.
Calibration & Math
Understanding how fuel flow meter works relies on measuring fluid displacement or internal gear revolutions. To calibrate an electronic sensor alongside this mechanical meter, pump an exact volume into an approved measuring container. Count the pulses generated during the run. The calibration factor, or K-factor, equals the total pulses divided by the volume dispensed. If the setup yields 450 pulses over 10 litres, the K-factor is 45 pulses per litre. Use the mechanical counter, which delivers measurement accuracy within 1%, as your baseline visual reference to verify your mathematical calculations and adjust for variations in fluid viscosity.
Arduino Code Example
Use this interrupt-driven sketch to capture pulses from your fuel sensor:
volatile unsigned long pulses = 0;
const float kFactor = 45.0;
void countPulse() {
pulses++;
}
void setup() {
Serial.begin(9600);
pinMode(2, INPUTPULLUP);
attachInterrupt(digitalPinToInterrupt(2), countPulse, FALLING);
}
void loop() {
static unsigned long lastPrint = 0;
if (millis() - lastPrint >= 1000) {
lastPrint = millis();
noInterrupts();
unsigned long currentPulses = pulses;
interrupts();
float litres = currentPulses / kFactor;
Serial.print("Litres: ");
Serial.println(litres, 2);
}
}
Display Type: 4-Digit Mechanical Counter. Applicable Media: Diesel, Gas, Fuel, Oil. Inlet/Outlet Diameter: 1 inch (25.4 mm). Measurement Accuracy: ±1%. Product Type: Diesel Flowm. Inlet/Outlet Port Size: 1 Inch (25 mm) NPT/BSPT. Housing Material: Die-Cast Aluminum. Flow Rate Range: 20 - 120 L/min. Working Temperature: -10°C to 60°C. Maximum Operating Pressure: 3.5 bar (50 PSI). Compatible Media: Diesel, Gas, Kerosene, Light Fuel Oil. Display Type: 4-Digit Mechanical Subtotal / 8-Digit Totalizer. Measurement Accuracy: ±1%. Product Type: Diesel Flow Meter. Register Reset: Manual Push-Button / Reset Knob. Repeatability: ±0.2%. Unit of Measure: Liters (L). Q: What are the main measurement specs for this diesel flow meter? A: This diesel flow meter features 1-inch NPT inlet and outlet ports and an accuracy rating within 1%. The mechanical register shows up to 9,999 liters on the resettable readout and tracks up to 99,999,999 liters on the lifetime counter.. Q: What materials make this meter suitable for outdoor fuel tanks? A: The outer body consists of thick cast aluminum that withstands line pressure up to 50 PSI. The internal nutating disk uses fuel-resistant polymers that keep measuring accurately across hot summers and freezing winter temperatures.. Q: Can I install this meter on gravity-fed fuel systems? A: It works on gravity setups if you have sufficient head height, but it runs best with pump-driven systems moving at least 20 liters per minute. You can plumb it directly onto electric fuel pumps, storage tanks, or truck-bed transfer tanks.. Q: Does this meter come with a warranty? A: Yes, it carries a 12-month warranty against mechanical failure and calibration drift. The policy covers the internal gear cluster and register face if they stop turning under normal diesel flow.. Q: How does this gauge offer solid long-term value for farm or shop fuel storage? A: It lets you track exact fuel burn across equipment without buying expensive digital electronics. The purely mechanical counter needs no battery replacements, keeping maintenance costs at zero for years of daily fueling..