I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com

headloss Bernoulli

Calculates the head loss using the extended Bernoulli equation.
Controller: CodeCogs

Private project under development, to help contact the author: Contact Controller

Interface

C++
Excel

Headloss Bernoulli

 
doubleheadloss_Bernoullidoubledensity
doubleelevation1
doubleelevation2
doublepressure1
doublepressure2
doublevelocity1
doublevelocity2 )[inline]
Considering two different points within a fluid given by their elevations \inline Z_{1,2} , pressures \inline P_{1,2} and velocity of the fluid at those points \inline v_{1,2}, the Bernoulli equation takes the form: where \inline \rho is the weight density of the fluid and \inline h_L is the pipe friction loss or head loss from point 1 to point 2. The acceleration of gravity \inline g is assumed to be 32.2 feet per second per second.

Example 1

#include <stdio.h>
#include <codecogs/engineering/fluids/imperial/headloss_bernoulli.h>
 
int main()
{
  double loss = Engineering::Fluids::Imperial::headloss_Bernoulli
  (0.45345, 2.5, 3.4, 10, 7, 100, 95);
  printf("Head loss = %.14lf ft\n", loss);
 
  return 0;
}

Output

Head loss = 43.82658376874603 ft

References

The Engineering Division, Crane Co., "Flow of fluids through valves, fittings, and pipe", Chicago, 1957

Parameters

densityweight density of fluid (pounds per cubic feet)
elevation1elevation at point 1 above reference level (feet)
elevation2elevation at point 2 above reference level (feet)
pressure1pressure at point 1 (pounds per square)
pressure2pressure at point 2 (pounds per square)
velocity1mean velocity of flow at point 1 (feet per second)
velocity2mean velocity of flow at point 2 (feet per second)

Returns

The head loss between point 1 and point 2.

Authors

Lucian Bentea (July 2006)
Source Code

This module is private, for owner's use only.

Not a member, then Register with CodeCogs. Already a Member, then Login.