Introduction
The Flamant equation is an empirical formula widely used in agricultural hydraulics, particularly for micro-irrigation systems (drip and micro-sprinkler irrigation). It is highly accurate for calculating friction head loss in small-diameter pipes (typically under 50 mm) made of smooth materials like PVC and Polyethylene (PE).
1. Calculating Head Loss
To calculate the friction head loss, use the
calc_head_loss_flamant() function. Let’s calculate the
expected head loss for a 50-meter PE pipe
()
with an internal diameter of 0.015 meters (15 mm) carrying a flow of
(0.2 L/s).
library(hf)
calc_head_loss_flamant(length = 50, flow = 0.0002, diameter = 0.015)
#> [1] 6.3899982. Calculating Required Diameter
If you know the maximum allowable head loss for your lateral
irrigation line, you can determine the required minimum pipe diameter
using calc_diameter_flamant(). Suppose the system allows a
maximum head loss of 1.5 meters for a 50m length and a
flow rate.
library(hf)
calc_diameter_flamant(loss = 1.5, length = 50, flow = 0.0002)
#> [1] 0.02035163. Calculating Flow Rate
To find the maximum flow rate a small pipe can deliver given an
available pressure head, use the calc_flow_flamant()
function.
library(hf)
calc_flow_flamant(loss = 1.5, length = 50, diameter = 0.015)
#> [1] 8.737103e-05