Friction factor and pipe roughness (fluids.friction)

This module contains correlations for single-phase friction factor in a range of geometries. It also contains several tables of reported material roughnesses, and some basic functionality showing how to calculate single-phase pressure drop.

For reporting bugs, adding feature requests, or submitting pull requests, please use the GitHub issue tracker or contact the author at Caleb.Andrew.Bell@gmail.com.

Friction Factor Interfaces

fluids.friction.friction_factor(Re, eD=0.0, Method='Clamond', Darcy=True)[source]

Calculates friction factor. Uses a specified method, or automatically picks one from the dictionary of available methods. 29 approximations are available as well as the direct solution, described in the table below. The default is to use the exact solution.

For Re < 2040, [1] the laminar solution is always returned, regardless of selected method.

Parameters
Refloat

Reynolds number, [-]

eDfloat, optional

Relative roughness of the wall, [-]

Returns
ffloat

Friction factor, [-]

Other Parameters
Methodstr, optional

A string of the function name to use

Darcybool, optional

If False, will return fanning friction factor, 1/4 of the Darcy value

See also

Colebrook
Clamond

Notes

A table of the supposed limits of each correlation is as follows. Note that the spaces in the method names are placed by underscores in the actual function names and when provided as the Method argument. The default method is likely to be sufficient.

Nice name

Re min

Re max

ϵ/D\epsilon/D Min

ϵ/D\epsilon/D Max

Clamond

0

None

0

None

Rao Kumar 2007

None

None

None

None

Eck 1973

None

None

None

None

Jain 1976

5000

1.0E+7

4.0E-5

0.05

Avci Karagoz 2009

None

None

None

None

Swamee Jain 1976

5000

1.0E+8

1.0E-6

0.05

Churchill 1977

None

None

None

None

Brkic 2011 1

None

None

None

None

Chen 1979

4000

4.0E+8

1.0E-7

0.05

Round 1980

4000

4.0E+8

0

0.05

Papaevangelo 2010

10000

1.0E+7

1.0E-5

0.001

Fang 2011

3000

1.0E+8

0

0.05

Shacham 1980

4000

4.0E+8

None

None

Barr 1981

None

None

None

None

Churchill 1973

None

None

None

None

Moody

4000

1.0E+8

0

1

Zigrang Sylvester 1

4000

1.0E+8

4.0E-5

0.05

Zigrang Sylvester 2

4000

1.0E+8

4.0E-5

0.05

Buzzelli 2008

None

None

None

None

Haaland

4000

1.0E+8

1.0E-6

0.05

Serghides 1

None

None

None

None

Serghides 2

None

None

None

None

Tsal 1989

4000

1.0E+8

0

0.05

Alshul 1952

None

None

None

None

Wood 1966

4000

5.0E+7

1.0E-5

0.04

Manadilli 1997

5245

1.0E+8

0

0.05

Brkic 2011 2

None

None

None

None

Romeo 2002

3000

1.5E+8

0

0.05

Sonnad Goudar 2006

4000

1.0E+8

1.0E-6

0.05

References

1

Avila, Kerstin, David Moxey, Alberto de Lozar, Marc Avila, Dwight Barkley, and Björn Hof. “The Onset of Turbulence in Pipe Flow.” Science 333, no. 6039 (July 8, 2011): 192-96. doi:10.1126/science.1203223.

Examples

>>> friction_factor(Re=1E5, eD=1E-4)
0.01851386607747165
>>> friction_factor(Re=2.9E5, eD=1E-5, Method='Serghides_2')
0.0146199041093456
fluids.friction.friction_factor_methods(Re, eD=0.0, check_ranges=True)[source]

Returns a list of correlation names for calculating friction factor for internal pipe flow.

Parameters
Refloat

Reynolds number, [-]

eDfloat, optional

Relative roughness of the wall, [-]

check_rangesbool, optional

Whether to filter the list for correlations which claim to be valid for the given values, [-]

Returns
methodslist

List of methods which claim to be valid for the range of Re and eD given, [-]

Examples

>>> len(friction_factor_methods(Re=1E5, eD=1E-4))
30
fluids.friction.friction_factor_curved(Re, Di, Dc, roughness=0.0, Method=None, Rec_method='Schmidt', laminar_method='Schmidt laminar', turbulent_method='Schmidt turbulent', Darcy=True)[source]

Calculates friction factor fluid flowing in a curved pipe or helical coil, supporting both laminar and turbulent regimes. Selects the appropriate regime by default, and has default correlation choices. Optionally, a specific correlation can be specified with the Method keyword.

The default correlations are those recommended in [1], and are believed to be the best publicly available.

Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the tube making up the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

roughnessfloat, optional

Roughness of pipe wall [m]

Returns
ffloat

Friction factor, [-]

Other Parameters
Methodstr, optional

A string of the function name to use, overriding the default turbulent/ laminar selection.

Rec_methodstr, optional

Critical Reynolds number transition criteria; one of [‘Seth Stahel’, ‘Ito’, ‘Kubair Kuloor’, ‘Kutateladze Borishanskii’, ‘Schmidt’, ‘Srinivasan’]; the default is ‘Schmidt’.

laminar_methodstr, optional

Friction factor correlation for the laminar regime; one of [‘White’, ‘Mori Nakayama laminar’, ‘Schmidt laminar’]; the default is ‘Schmidt laminar’.

turbulent_methodstr, optional

Friction factor correlation for the turbulent regime; one of [‘Guo’, ‘Ju’, ‘Schmidt turbulent’, ‘Prasad’, ‘Mandel Nigam’, ‘Mori Nakayama turbulent’, ‘Czop’]; the default is ‘Schmidt turbulent’.

Darcybool, optional

If False, will return fanning friction factor, 1/4 of the Darcy value

Notes

The range of accuracy of these correlations is much than that in a straight pipe.

References

1

Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983.

Examples

>>> friction_factor_curved(Re=1E5, Di=0.02, Dc=0.5)
0.022961996738387523
fluids.friction.friction_factor_curved_methods(Re, Di, Dc, roughness=0.0, check_ranges=True)[source]

Returns a list of correlation names for calculating friction factor of fluid flowing in a curved pipe or helical coil, supporting both laminar and turbulent regimes.

Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the tube making up the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

roughnessfloat, optional

Roughness of pipe wall [m]

check_rangesbool, optional

Whether or not to return only correlations suitable for the provided data, [-]

Returns
methodslist

List of methods in the regime the specified Re is in at the given Di and Dc.

Examples

>>> friction_factor_curved_methods(Re=1E5, Di=0.02, Dc=0.5)[0]
'Schmidt turbulent'
fluids.friction.helical_Re_crit(Di, Dc, Method='Schmidt')[source]

Calculates the transition Reynolds number for fluid flowing in a curved pipe or helical coil. Selects the appropriate regime by default. Optionally, a specific correlation can be specified with the Method keyword.

The default correlations are those recommended in [1], and are believed to be the best publicly available.

Parameters
Difloat

Inner diameter of the tube making up the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Methodstr, optional

Critical Reynolds number transition criteria correlation; one of [‘Seth Stahel’, ‘Ito’, ‘Kubair Kuloor’, ‘Kutateladze Borishanskii’, ‘Schmidt’, ‘Srinivasan’]; the default is ‘Schmidt’.

Returns
Re_critfloat

Reynolds number for critical transition between laminar and turbulent flow, [-]

References

1

Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983.

Examples

>>> helical_Re_crit(Di=0.02, Dc=0.5)
6946.792538856203

Pipe Friction Factor Correlations

fluids.friction.ft_Crane(D)[source]

Calculates the Crane fully turbulent Darcy friction factor for flow in commercial pipe, as used in the Crane formulas for loss coefficients in various fittings. Note that this is not generally applicable to loss due to friction in pipes, as it does not take into account the roughness of various pipe materials. But for fittings in any type of pipe, this is the friction factor to use in the Crane [1] method to get their loss coefficients.

Parameters
Dfloat

Pipe inner diameter, [m]

Returns
fdfloat

Darcy Crane friction factor for fully turbulent flow, [-]

Notes

There is confusion and uncertainty regarding the friction factor table given in Crane TP 410M [1]. This function does not help: it implements a new way to obtain Crane friction factors, so that it can better be based in theory and give more precision (not accuracy) and trend better with diameters not tabulated in [1].

The data in [1] was digitized, and nominal pipe diameters were converted to actual pipe diameters. An objective function was sought which would produce the exact same values as in [1] when rounded to the same decimal place. One was found fairly easily by using the standard Colebrook friction factor formula, and using the diameter-dependent roughness values calculated with the roughness_Farshad method for bare Carbon steel. A diameter-dependent Reynolds number was required to match the values; the ρV/μ\rho V/\mu term is set to 7.5E6.

The formula given in [1] is:

fT=0.25[log10(ϵ/D3.7)]2f_T = \frac{0.25}{\left[\log_{10}\left(\frac{\epsilon/D}{3.7}\right) \right]^2}

However, this function does not match the rounded values in [1] well and it is not very clear which roughness to use. Using both the value for new commercial steel (.05 mm) or a diameter-dependent value (roughness_Farshad), values were found to be too high and too low respectively. That function is based in theory - the limit of the Colebrook equation when Re goes to infinity - but in the end real pipe flow is not infinity, and so a large error occurs from that use.

The following plot shows all these options, and that the method implemented here matches perfectly the rounded values in [1].

(Source code, png, hires.png, pdf)

_images/ft_Crane_plot.png

References

1(1,2,3,4,5,6,7,8)

Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009.

Examples

>>> ft_Crane(.1)
0.01628845962146481

Explicitly spelling out the function (note the exact same answer is not returned; it is accurate to 5-8 decimals however, for increased speed):

>>> Di = 0.1
>>> Colebrook(7.5E6*Di, eD=roughness_Farshad(ID='Carbon steel, bare', D=Di)/Di)
0.0162884254312
fluids.friction.Colebrook(Re, eD, tol=None)[source]

Calculates Darcy friction factor using the Colebrook equation originally published in [1]. Normally, this function uses an exact solution to the Colebrook equation, derived with a CAS. A numerical can also be used.

1f=2log10(ϵ/D3.7+2.51Ref)\frac{1}{\sqrt{f}}=-2\log_{10}\left(\frac{\epsilon/D}{3.7} +\frac{2.51}{\text{Re}\sqrt{f}}\right)
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

tolfloat, optional

None for analytical solution (default); user specified value to use the numerical solution; 0 to use mpmath and provide a bit-correct exact solution to the maximum fidelity of the system’s float; -1 to apply the Clamond solution where appropriate for greater speed (Re > 10), [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

The solution is as follows:

fd=ln(10)23.722.512(ln(10)ϵ/DRe22.513.7lambertW[ln(10)10(ϵRe2.513.7D)Re2/2.512])f_d = \frac{\ln(10)^2\cdot {3.7}^2\cdot{2.51}^2} {\left(\ln(10)\epsilon/D\cdot\text{Re} - 2\cdot 2.51\cdot 3.7\cdot \text{lambertW}\left[\ln(\sqrt{10})\sqrt{ 10^{\left(\frac{\epsilon \text{Re}}{2.51\cdot 3.7D}\right)} \cdot \text{Re}^2/{2.51}^2}\right]\right)}

Some effort to optimize this function has been made. The lambertw function from scipy is used, and is defined to solve the specific function:

y=xexp(x)lambertW(y)=xy = x\exp(x) \text{lambertW}(y) = x

This is relatively slow despite its explicit form as it uses the mathematical function lambertw which is expensive to compute.

For high relative roughness and Reynolds numbers, an OverflowError can be encountered in the solution of this equation. The numerical solution is then used.

The numerical solution provides values which are generally within an rtol of 1E-12 to the analytical solution; however, due to the different rounding order, it is possible for them to be as different as rtol 1E-5 or higher. The 1E-5 accuracy regime has been tested and confirmed numerically for hundreds of thousand of points within the region 1E-12 < Re < 1E12 and 0 < eD < 0.1.

The numerical solution attempts the secant method using scipy’s newton solver, and in the event of nonconvergence, attempts the fsolve solver as well. An initial guess is provided via the Clamond function.

The numerical and analytical solution take similar amounts of time; the mpmath solution used when tol=0 is approximately 45 times slower. This function takes approximately 8 us normally.

References

1

Colebrook, C F.”Turbulent Flow in Pipes, with Particular Reference to the Transition Region Between the Smooth and Rough Pipe Laws.” Journal of the ICE 11, no. 4 (February 1, 1939): 133-156. doi:10.1680/ijoti.1939.13150.

Examples

>>> Colebrook(1E5, 1E-4)
0.018513866077471
fluids.friction.Clamond(Re, eD, fast=False)[source]

Calculates Darcy friction factor using a solution accurate to almost machine precision. Recommended very strongly. For details of the algorithm, see [1].

Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

fastbool, optional

If true, performs only one iteration, which gives roughly half the number of decimals of accuracy, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

This is a highly optimized function, 4 times faster than the solution using the LambertW function, and faster than many other approximations which are much less accurate.

The code used here is only slightly modified than that in [1], for further performance improvements.

For 10 < Re < 1E12, and 0 < eD < 0.01, this equation has been confirmed numerically to provide a solution to the Colebrook equation accurate to an rtol of 1E-9 or better - the same level of accuracy as the analytical solution to the Colebrook equation due to floating point precision.

Comparing this to the numerical solution of the Colebrook equation, identical values are given accurate to an rtol of 1E-9 for 10 < Re < 1E100, and 0 < eD < 1 and beyond.

However, for values of Re under 10, different answers from the Colebrook equation appear and then quickly a ValueError is raised.

References

1(1,2)

Clamond, Didier. “Efficient Resolution of the Colebrook Equation.” Industrial & Engineering Chemistry Research 48, no. 7 (April 1, 2009): 3665-71. doi:10.1021/ie801626g. http://math.unice.fr/%7Edidierc/DidPublis/ICR_2009.pdf

Examples

>>> Clamond(1E5, 1E-4)
0.01851386607747165
fluids.friction.friction_laminar(Re)[source]

Calculates Darcy friction factor for laminar flow, as shown in [1] or anywhere else.

fd=64Ref_d = \frac{64}{Re}
Parameters
Refloat

Reynolds number, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

For round pipes, this valid for Re<2040Re \approx< 2040.

Results in [2] show that this theoretical solution calculates too low of friction factors from Re = 10 and up, with an average deviation of 4%.

References

1

Cengel, Yunus, and John Cimbala. Fluid Mechanics: Fundamentals and Applications. Boston: McGraw Hill Higher Education, 2006.

2

McKEON, B. J., C. J. SWANSON, M. V. ZAGAROLA, R. J. DONNELLY, and A. J. SMITS. “Friction Factors for Smooth Pipe Flow.” Journal of Fluid Mechanics 511 (July 1, 2004): 41-44. doi:10.1017/S0022112004009796.

Examples

>>> friction_laminar(128)
0.5
fluids.friction.Moody(Re, eD)[source]

Calculates Darcy friction factor using the method in Moody (1947) as shown in [1] and originally in [2].

ff=1.375×103[1+(2×104ϵD+106Re)1/3]f_f = 1.375\times 10^{-3}\left[1+\left(2\times10^4\frac{\epsilon}{D} + \frac{10^6}{Re}\right)^{1/3}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is Re >= 4E3 and Re <= 1E8; eD >= 0 < 0.01.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Moody, L.F.: An approximate formula for pipe friction factors. Trans. Am. Soc. Mech. Eng. 69,1005-1006 (1947)

Examples

>>> Moody(1E5, 1E-4)
0.01809185666808665
fluids.friction.Blasius(Re)[source]

Calculates Darcy friction factor according to the Blasius formulation, originally presented in [1] and described more recently in [2].

fd=0.3164Re0.25f_d=\frac{0.3164}{Re^{0.25}}
Parameters
Refloat

Reynolds number, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Developed for 3000 < Re < 200000.

References

1

Blasius, H.”Das Aehnlichkeitsgesetz bei Reibungsvorgängen in Flüssigkeiten.” In Mitteilungen über Forschungsarbeiten auf dem Gebiete des Ingenieurwesens, edited by Verein deutscher Ingenieure, 1-41. Berlin, Heidelberg: Springer Berlin Heidelberg, 1913. http://rd.springer.com/chapter/10.1007/978-3-662-02239-9_1.

2

Hager, W. H. “Blasius: A Life in Research and Education.” In Experiments in Fluids, 566-571, 2003.

Examples

>>> Blasius(10000)
0.03164
fluids.friction.von_Karman(eD)[source]

Calculates Darcy friction factor for rough pipes at infinite Reynolds number from the von Karman equation (as given in [1] and [2]:

1fd=2log10(ϵ/D3.7)\frac{1}{\sqrt{f_d}} = -2 \log_{10} \left(\frac{\epsilon/D}{3.7}\right)
Parameters
eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

This case does not actually occur; Reynolds number is always finite. It is normally applied as a “limiting” value when a pipe’s roughness is so high it has a friction factor curve effectively independent of Reynods number.

References

1

Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012.

2

McGovern, Jim. “Technical Note: Friction Factor Diagrams for Pipe Flow.” Paper, October 3, 2011. http://arrow.dit.ie/engschmecart/28.

Examples

>>> von_Karman(1E-4)
0.01197365149564789
fluids.friction.Prandtl_von_Karman_Nikuradse(Re)[source]

Calculates Darcy friction factor for smooth pipes as a function of Reynolds number from the Prandtl-von Karman Nikuradse equation as given in [1] and [2]:

1f=2log10(2.51Ref)\frac{1}{\sqrt{f}} = -2\log_{10}\left(\frac{2.51}{Re\sqrt{f}}\right)
Parameters
Refloat

Reynolds number, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

This equation is often stated as follows; the correct constant is not 0.8, but 2log10(2.51) or approximately 0.7993474:

1f2log10(Ref)0.8\frac{1}{\sqrt{f}}\approx 2\log_{10}(\text{Re}\sqrt{f})-0.8

This function is calculable for all Reynolds numbers between 1E151 and 1E-151. It is solved with the LambertW function from SciPy. The solution is:

fd=14log102(lambertW(\lb(10)Re2(2.51)))2f_d = \frac{\frac{1}{4}\log_{10}^2}{\left(\text{lambertW}\left(\frac{ \lb(10)Re}{2(2.51)}\right)\right)^2}

References

1

Rennels, Donald C., and Hobart M. Hudson. Pipe Flow: A Practical and Comprehensive Guide. 1st edition. Hoboken, N.J: Wiley, 2012.

2

McGovern, Jim. “Technical Note: Friction Factor Diagrams for Pipe Flow.” Paper, October 3, 2011. http://arrow.dit.ie/engschmecart/28.

Examples

>>> Prandtl_von_Karman_Nikuradse(1E7)
0.008102669430
fluids.friction.Alshul_1952(Re, eD)[source]

Calculates Darcy friction factor using the method in Alshul (1952) as shown in [1].

fd=0.11(68Re+ϵD)0.25f_d = 0.11\left( \frac{68}{Re} + \frac{\epsilon}{D}\right)^{0.25}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

Examples

>>> Alshul_1952(1E5, 1E-4)
0.018382997825686878
fluids.friction.Wood_1966(Re, eD)[source]

Calculates Darcy friction factor using the method in Wood (1966) [2] as shown in [1].

fd=0.094(ϵD)0.225+0.53(ϵD)+88(ϵD)0.4ReA1f_d = 0.094(\frac{\epsilon}{D})^{0.225} + 0.53(\frac{\epsilon}{D}) + 88(\frac{\epsilon}{D})^{0.4}Re^{-A_1}
A1=1.62(ϵD)0.134A_1 = 1.62(\frac{\epsilon}{D})^{0.134}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 5E7; 1E-5 <= eD <= 4E-2.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Wood, D.J.: An Explicit Friction Factor Relationship, vol. 60. Civil Engineering American Society of Civil Engineers (1966)

Examples

>>> Wood_1966(1E5, 1E-4)
0.021587570560090762
fluids.friction.Churchill_1973(Re, eD)[source]

Calculates Darcy friction factor using the method in Churchill (1973) [2] as shown in [1]

1fd=2log10[ϵ3.7D+(7Re)0.9]\frac{1}{\sqrt{f_d}} = -2\log_{10}\left[\frac{\epsilon}{3.7D} + (\frac{7}{Re})^{0.9}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Churchill, Stuart W. “Empirical Expressions for the Shear Stress in Turbulent Flow in Commercial Pipe.” AIChE Journal 19, no. 2 (March 1, 1973): 375-76. doi:10.1002/aic.690190228.

Examples

>>> Churchill_1973(1E5, 1E-4)
0.01846708694482294
fluids.friction.Eck_1973(Re, eD)[source]

Calculates Darcy friction factor using the method in Eck (1973) [2] as shown in [1].

1fd=2log10[ϵ3.715D+15Re]\frac{1}{\sqrt{f_d}} = -2\log_{10}\left[\frac{\epsilon}{3.715D} + \frac{15}{Re}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Eck, B.: Technische Stromungslehre. Springer, New York (1973)

Examples

>>> Eck_1973(1E5, 1E-4)
0.01775666973488564
fluids.friction.Jain_1976(Re, eD)[source]

Calculates Darcy friction factor using the method in Jain (1976) [2] as shown in [1].

1ff=2.284log10[ϵD+(29.843Re)0.9]\frac{1}{\sqrt{f_f}} = 2.28 - 4\log_{10}\left[ \frac{\epsilon}{D} + \left(\frac{29.843}{Re}\right)^{0.9}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 5E3 <= Re <= 1E7; 4E-5 <= eD <= 5E-2.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Jain, Akalank K.”Accurate Explicit Equation for Friction Factor.” Journal of the Hydraulics Division 102, no. 5 (May 1976): 674-77.

Examples

>>> Jain_1976(1E5, 1E-4)
0.018436560312693327
fluids.friction.Swamee_Jain_1976(Re, eD)[source]

Calculates Darcy friction factor using the method in Swamee and Jain (1976) [2] as shown in [1].

1ff=4log10[(6.97Re)0.9+(ϵ3.7D)]\frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\left(\frac{6.97}{Re}\right)^{0.9} + (\frac{\epsilon}{3.7D})\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 5E3 <= Re <= 1E8; 1E-6 <= eD <= 5E-2.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Swamee, Prabhata K., and Akalank K. Jain.”Explicit Equations for Pipe-Flow Problems.” Journal of the Hydraulics Division 102, no. 5 (May 1976): 657-664.

Examples

>>> Swamee_Jain_1976(1E5, 1E-4)
0.018452424431901808
fluids.friction.Churchill_1977(Re, eD)[source]

Calculates Darcy friction factor using the method in Churchill and (1977) [2] as shown in [1].

ff=2[(8Re)12+(A2+A3)1.5]1/12f_f = 2\left[(\frac{8}{Re})^{12} + (A_2 + A_3)^{-1.5}\right]^{1/12}
A2={2.457ln[(7Re)0.9+0.27ϵD]}16A_2 = \left\{2.457\ln\left[(\frac{7}{Re})^{0.9} + 0.27\frac{\epsilon}{D}\right]\right\}^{16}
A3=(37530Re)16A_3 = \left( \frac{37530}{Re}\right)^{16}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Churchill, S.W.: Friction factor equation spans all fluid flow regimes. Chem. Eng. J. 91, 91-92 (1977)

Examples

>>> Churchill_1977(1E5, 1E-4)
0.018462624566280075
fluids.friction.Chen_1979(Re, eD)[source]

Calculates Darcy friction factor using the method in Chen (1979) [2] as shown in [1].

1ff=4log10[ϵ3.7065D5.0452Relog10A4]\frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7065D} -\frac{5.0452}{Re}\log_{10} A_4\right]
A4=(ϵ/D)1.10982.8257+(7.149Re)0.8981A_4 = \frac{(\epsilon/D)^{1.1098}}{2.8257} + \left(\frac{7.149}{Re}\right)^{0.8981}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 4E8; 1E-7 <= eD <= 5E-2.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Chen, Ning Hsing. “An Explicit Equation for Friction Factor in Pipe.” Industrial & Engineering Chemistry Fundamentals 18, no. 3 (August 1, 1979): 296-97. doi:10.1021/i160071a019.

Examples

>>> Chen_1979(1E5, 1E-4)
0.018552817507472126
fluids.friction.Round_1980(Re, eD)[source]

Calculates Darcy friction factor using the method in Round (1980) [2] as shown in [1].

1ff=3.6log10[Re0.135ReϵD+6.5]\frac{1}{\sqrt{f_f}} = -3.6\log_{10}\left[\frac{Re}{0.135Re \frac{\epsilon}{D}+6.5}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 4E8; 0 <= eD <= 5E-2.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Round, G. F.”An Explicit Approximation for the Friction Factor-Reynolds Number Relation for Rough and Smooth Pipes.” The Canadian Journal of Chemical Engineering 58, no. 1 (February 1, 1980): 122-23. doi:10.1002/cjce.5450580119.

Examples

>>> Round_1980(1E5, 1E-4)
0.01831475391244354
fluids.friction.Shacham_1980(Re, eD)[source]

Calculates Darcy friction factor using the method in Shacham (1980) [2] as shown in [1].

1ff=4log10[ϵ3.7D5.02Relog10(ϵ3.7D+14.5Re)]\frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7D} - \frac{5.02}{Re} \log_{10}\left(\frac{\epsilon}{3.7D} + \frac{14.5}{Re}\right)\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 4E8

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Shacham, M. “Comments on: ‘An Explicit Equation for Friction Factor in Pipe.’” Industrial & Engineering Chemistry Fundamentals 19, no. 2 (May 1, 1980): 228-228. doi:10.1021/i160074a019.

Examples

>>> Shacham_1980(1E5, 1E-4)
0.01860641215097828
fluids.friction.Barr_1981(Re, eD)[source]

Calculates Darcy friction factor using the method in Barr (1981) [2] as shown in [1].

1fd=2log10{ϵ3.7D+4.518log10(Re7)Re[1+Re0.5229(ϵD)0.7]}\frac{1}{\sqrt{f_d}} = -2\log_{10}\left\{\frac{\epsilon}{3.7D} + \frac{4.518\log_{10}(\frac{Re}{7})}{Re\left[1+\frac{Re^{0.52}}{29} \left(\frac{\epsilon}{D}\right)^{0.7}\right]}\right\}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Barr, Dih, and Colebrook White.”Technical Note. Solutions Of The Colebrook-White Function For Resistance To Uniform Turbulent Flow.” ICE Proceedings 71, no. 2 (January 6, 1981): 529-35. doi:10.1680/iicep.1981.1895.

Examples

>>> Barr_1981(1E5, 1E-4)
0.01849836032779929
fluids.friction.Zigrang_Sylvester_1(Re, eD)[source]
Calculates Darcy friction factor using the method in

Zigrang and Sylvester (1982) [2] as shown in [1].

1ff=4log10[ϵ3.7D5.02Relog10A5]A5=ϵ3.7D+13Re\frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7D} - \frac{5.02}{Re}\log_{10} A_5\right] A_5 = \frac{\epsilon}{3.7D} + \frac{13}{Re}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 1E8; 4E-5 <= eD <= 5E-2.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Zigrang, D. J., and N. D. Sylvester.”Explicit Approximations to the Solution of Colebrook’s Friction Factor Equation.” AIChE Journal 28, no. 3 (May 1, 1982): 514-15. doi:10.1002/aic.690280323.

Examples

>>> Zigrang_Sylvester_1(1E5, 1E-4)
0.018646892425980794
fluids.friction.Zigrang_Sylvester_2(Re, eD)[source]
Calculates Darcy friction factor using the second method in

Zigrang and Sylvester (1982) [2] as shown in [1].

1ff=4log10[ϵ3.7D5.02Relog10A6]\frac{1}{\sqrt{f_f}} = -4\log_{10}\left[\frac{\epsilon}{3.7D} - \frac{5.02}{Re}\log_{10} A_6\right]
A6=ϵ3.7D5.02Relog10A5A_6 = \frac{\epsilon}{3.7D} - \frac{5.02}{Re}\log_{10} A_5
A5=ϵ3.7D+13ReA_5 = \frac{\epsilon}{3.7D} + \frac{13}{Re}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 1E8; 4E-5 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Zigrang, D. J., and N. D. Sylvester.”Explicit Approximations to the Solution of Colebrook’s Friction Factor Equation.” AIChE Journal 28, no. 3 (May 1, 1982): 514-15. doi:10.1002/aic.690280323.

Examples

>>> Zigrang_Sylvester_2(1E5, 1E-4)
0.01850021312358548
fluids.friction.Haaland(Re, eD)[source]
Calculates Darcy friction factor using the method in

Haaland (1983) [2] as shown in [1].

ff=(1.8log10[(ϵ/D3.7)1.11+6.9Re])2f_f = \left(-1.8\log_{10}\left[\left(\frac{\epsilon/D}{3.7} \right)^{1.11} + \frac{6.9}{Re}\right]\right)^{-2}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 1E8; 1E-6 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Haaland, S. E.”Simple and Explicit Formulas for the Friction Factor in Turbulent Pipe Flow.” Journal of Fluids Engineering 105, no. 1 (March 1, 1983): 89-90. doi:10.1115/1.3240948.

Examples

>>> Haaland(1E5, 1E-4)
0.018265053014793857
fluids.friction.Serghides_1(Re, eD)[source]

Calculates Darcy friction factor using the method in Serghides (1984) [2] as shown in [1].

f=[A(BA)2C2B+A]2f=\left[A-\frac{(B-A)^2}{C-2B+A}\right]^{-2}
A=2log10[ϵ/D3.7+12Re]A=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{12}{Re}\right]
B=2log10[ϵ/D3.7+2.51ARe]B=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{2.51A}{Re}\right]
C=2log10[ϵ/D3.7+2.51BRe]C=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{2.51B}{Re}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Serghides T.K (1984).”Estimate friction factor accurately” Chemical Engineering, Vol. 91(5), pp. 63-64.

Examples

>>> Serghides_1(1E5, 1E-4)
0.01851358983180063
fluids.friction.Serghides_2(Re, eD)[source]

Calculates Darcy friction factor using the method in Serghides (1984) [2] as shown in [1].

fd=[4.781(A4.781)2B2A+4.781]2f_d = \left[ 4.781 - \frac{(A - 4.781)^2} {B-2A+4.781}\right]^{-2}
A=2log10[ϵ/D3.7+12Re]A=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{12}{Re}\right]
B=2log10[ϵ/D3.7+2.51ARe]B=-2\log_{10}\left[\frac{\epsilon/D}{3.7}+\frac{2.51A}{Re}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Serghides T.K (1984).”Estimate friction factor accurately” Chemical Engineering, Vol. 91(5), pp. 63-64.

Examples

>>> Serghides_2(1E5, 1E-4)
0.018486377560664482
fluids.friction.Tsal_1989(Re, eD)[source]

Calculates Darcy friction factor using the method in Tsal (1989) [2] as shown in [1].

A=0.11(68Re+ϵD)0.25A = 0.11(\frac{68}{Re} + \frac{\epsilon}{D})^{0.25}

if A>=0.018A >= 0.018 then fd = A;

if A<0.018A < 0.018 then fd=0.0028+0.85Afd = 0.0028 + 0.85 A.

Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 1E8; 0 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Tsal, R.J.: Altshul-Tsal friction factor equation. Heat-Piping-Air Cond. 8, 30-45 (1989)

Examples

>>> Tsal_1989(1E5, 1E-4)
0.018382997825686878
fluids.friction.Manadilli_1997(Re, eD)[source]

Calculates Darcy friction factor using the method in Manadilli (1997) [2] as shown in [1].

1fd=2log10[ϵ3.7D+95Re0.98396.82Re]\frac{1}{\sqrt{f_d}} = -2\log_{10}\left[\frac{\epsilon}{3.7D} + \frac{95}{Re^{0.983}} - \frac{96.82}{Re}\right]
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 5.245E3 <= Re <= 1E8; 0 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Manadilli, G.: Replace implicit equations with signomial functions. Chem. Eng. 104, 129 (1997)

Examples

>>> Manadilli_1997(1E5, 1E-4)
0.01856964649724108
fluids.friction.Romeo_2002(Re, eD)[source]

Calculates Darcy friction factor using the method in Romeo (2002) [2] as shown in [1].

1fd=2log10{ϵ3.7065D×5.0272Re×log10[ϵ3.827D4.567Re×log10(ϵ7.7918D0.9924+(5.3326208.815+Re)0.9345)]}\frac{1}{\sqrt{f_d}} = -2\log_{10}\left\{\frac{\epsilon}{3.7065D}\times \frac{5.0272}{Re}\times\log_{10}\left[\frac{\epsilon}{3.827D} - \frac{4.567}{Re}\times\log_{10}\left(\frac{\epsilon}{7.7918D}^{0.9924} + \left(\frac{5.3326}{208.815+Re}\right)^{0.9345}\right)\right]\right\}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 3E3 <= Re <= 1.5E8; 0 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Romeo, Eva, Carlos Royo, and Antonio Monzon.”Improved Explicit Equations for Estimation of the Friction Factor in Rough and Smooth Pipes.” Chemical Engineering Journal 86, no. 3 (April 28, 2002): 369-74. doi:10.1016/S1385-8947(01)00254-6.

Examples

>>> Romeo_2002(1E5, 1E-4)
0.018530291219676177
fluids.friction.Sonnad_Goudar_2006(Re, eD)[source]

Calculates Darcy friction factor using the method in Sonnad and Goudar (2006) [2] as shown in [1].

1fd=0.8686ln(0.4587ReSS/(S+1))\frac{1}{\sqrt{f_d}} = 0.8686\ln\left(\frac{0.4587Re}{S^{S/(S+1)}}\right)
S=0.1240×ϵD×Re+ln(0.4587Re)S = 0.1240\times\frac{\epsilon}{D}\times Re + \ln(0.4587Re)
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 4E3 <= Re <= 1E8; 1E-6 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Travis, Quentin B., and Larry W. Mays.”Relationship between Hazen-William and Colebrook-White Roughness Values.” Journal of Hydraulic Engineering 133, no. 11 (November 2007): 1270-73. doi:10.1061/(ASCE)0733-9429(2007)133:11(1270).

Examples

>>> Sonnad_Goudar_2006(1E5, 1E-4)
0.0185971269898162
fluids.friction.Rao_Kumar_2007(Re, eD)[source]

Calculates Darcy friction factor using the method in Rao and Kumar (2007) [2] as shown in [1].

1fd=2log10((2ϵD)1(0.444+0.135ReRe)β)\frac{1}{\sqrt{f_d}} = 2\log_{10}\left(\frac{(2\frac{\epsilon}{D})^{-1}} {\left(\frac{0.444 + 0.135Re}{Re}\right)\beta}\right)
β=10.55exp(0.33ln[Re6.5]2)\beta = 1 - 0.55\exp(-0.33\ln\left[\frac{Re}{6.5}\right]^2)
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation. This equation is fit to original experimental friction factor data. Accordingly, this equation should not be used unless appropriate consideration is given.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Rao, A.R., Kumar, B.: Friction factor for turbulent pipe flow. Division of Mechanical Sciences, Civil Engineering Indian Institute of Science Bangalore, India ID Code 9587 (2007)

Examples

>>> Rao_Kumar_2007(1E5, 1E-4)
0.01197759334600925
fluids.friction.Buzzelli_2008(Re, eD)[source]

Calculates Darcy friction factor using the method in Buzzelli (2008) [2] as shown in [1].

1fd=B1[B1+2log10(B2Re)1+2.18B2]\frac{1}{\sqrt{f_d}} = B_1 - \left[\frac{B_1 +2\log_{10}(\frac{B_2}{Re})} {1 + \frac{2.18}{B_2}}\right]
B1=0.774ln(Re)1.411+1.32ϵDB_1 = \frac{0.774\ln(Re)-1.41}{1+1.32\sqrt{\frac{\epsilon}{D}}}
B2=ϵ3.7DRe+2.51×B1B_2 = \frac{\epsilon}{3.7D}Re+2.51\times B_1
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Buzzelli, D.: Calculating friction in one step. Mach. Des. 80, 54-55 (2008)

Examples

>>> Buzzelli_2008(1E5, 1E-4)
0.018513948401365277
fluids.friction.Avci_Karagoz_2009(Re, eD)[source]

Calculates Darcy friction factor using the method in Avci and Karagoz (2009) [2] as shown in [1].

fD=6.4{ln(Re)ln[1+0.01ReϵD(1+10(ϵD)0.5)]}2.4f_D = \frac{6.4} {\left\{\ln(Re) - \ln\left[ 1 + 0.01Re\frac{\epsilon}{D}\left(1 + 10(\frac{\epsilon}{D})^{0.5} \right)\right]\right\}^{2.4}}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Avci, Atakan, and Irfan Karagoz.”A Novel Explicit Equation for Friction Factor in Smooth and Rough Pipes.” Journal of Fluids Engineering 131, no. 6 (2009): 061203. doi:10.1115/1.3129132.

Examples

>>> Avci_Karagoz_2009(1E5, 1E-4)
0.01857058061066499
fluids.friction.Papaevangelo_2010(Re, eD)[source]

Calculates Darcy friction factor using the method in Papaevangelo (2010) [2] as shown in [1].

fD=0.24790.0000947(7lnRe)4[log10(ϵ3.615D+7.366Re0.9142)]2f_D = \frac{0.2479 - 0.0000947(7-\ln Re)^4}{\left[\log_{10}\left (\frac{\epsilon}{3.615D} + \frac{7.366}{Re^{0.9142}}\right)\right]^2}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 1E4 <= Re <= 1E7; 1E-5 <= eD <= 1E-3

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Papaevangelou, G., Evangelides, C., Tzimopoulos, C.: A New Explicit Relation for the Friction Factor Coefficient in the Darcy-Weisbach Equation, pp. 166-172. Protection and Restoration of the Environment Corfu, Greece: University of Ioannina Greece and Stevens Institute of Technology New Jersey (2010)

Examples

>>> Papaevangelo_2010(1E5, 1E-4)
0.015685600818488177
fluids.friction.Brkic_2011_1(Re, eD)[source]

Calculates Darcy friction factor using the method in Brkic (2011) [2] as shown in [1].

fd=[2log10(100.4343β+ϵ3.71D)]2f_d = [-2\log_{10}(10^{-0.4343\beta} + \frac{\epsilon}{3.71D})]^{-2}
β=lnRe1.816ln(1.1Reln(1+1.1Re))\beta = \ln \frac{Re}{1.816\ln\left(\frac{1.1Re}{\ln(1+1.1Re)}\right)}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Brkic, Dejan.”Review of Explicit Approximations to the Colebrook Relation for Flow Friction.” Journal of Petroleum Science and Engineering 77, no. 1 (April 2011): 34-48. doi:10.1016/j.petrol.2011.02.006.

Examples

>>> Brkic_2011_1(1E5, 1E-4)
0.01812455874141297
fluids.friction.Brkic_2011_2(Re, eD)[source]

Calculates Darcy friction factor using the method in Brkic (2011) [2] as shown in [1].

fd=[2log10(2.18βRe+ϵ3.71D)]2f_d = [-2\log_{10}(\frac{2.18\beta}{Re}+ \frac{\epsilon}{3.71D})]^{-2}
β=lnRe1.816ln(1.1Reln(1+1.1Re))\beta = \ln \frac{Re}{1.816\ln\left(\frac{1.1Re}{\ln(1+1.1Re)}\right)}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

No range of validity specified for this equation.

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Brkic, Dejan.”Review of Explicit Approximations to the Colebrook Relation for Flow Friction.” Journal of Petroleum Science and Engineering 77, no. 1 (April 2011): 34-48. doi:10.1016/j.petrol.2011.02.006.

Examples

>>> Brkic_2011_2(1E5, 1E-4)
0.018619745410688716
fluids.friction.Fang_2011(Re, eD)[source]

Calculates Darcy friction factor using the method in Fang (2011) [2] as shown in [1].

fD=1.613{ln[0.234ϵD1.100760.525Re1.1105+56.291Re1.0712]}2f_D = 1.613\left\{\ln\left[0.234\frac{\epsilon}{D}^{1.1007} - \frac{60.525}{Re^{1.1105}} + \frac{56.291}{Re^{1.0712}}\right]\right\}^{-2}
Parameters
Refloat

Reynolds number, [-]

eDfloat

Relative roughness, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Range is 3E3 <= Re <= 1E8; 0 <= eD <= 5E-2

References

1

Winning, H. and T. Coole. “Explicit Friction Factor Accuracy and Computational Efficiency for Turbulent Flow in Pipes.” Flow, Turbulence and Combustion 90, no. 1 (January 1, 2013): 1-27. doi:10.1007/s10494-012-9419-7

2

Fang, Xiande, Yu Xu, and Zhanru Zhou.”New Correlations of Single-Phase Friction Factor for Turbulent Pipe Flow and Evaluation of Existing Single-Phase Friction Factor Correlations.” Nuclear Engineering and Design, The International Conference on Structural Mechanics in Reactor Technology (SMiRT19) Special Section, 241, no. 3 (March 2011): 897-902. doi:10.1016/j.nucengdes.2010.12.019.

Examples

>>> Fang_2011(1E5, 1E-4)
0.018481390682985432
fluids.friction.LAMINAR_TRANSITION_PIPE = 2040.0

Believed to be the most accurate result to date. Accurate to +/- 10. Avila, Kerstin, David Moxey, Alberto de Lozar, Marc Avila, Dwight Barkley, and Björn Hof. “The Onset of Turbulence in Pipe Flow.” Science 333, no. 6039 (July 8, 2011): 192-196. doi:10.1126/science.1203223.

Curved Pipe Friction Factor Correlations

fluids.friction.helical_laminar_fd_White(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under laminar conditions, using the method of White [1] as shown in [2].

fcurved=fstraight,laminar[1(1(11.6De)0.45)10.45]1f_{curved} = f_{\text{straight,laminar}} \left[1 - \left(1-\left( \frac{11.6}{De}\right)^{0.45}\right)^{\frac{1}{0.45}}\right]^{-1}
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

The range of validity of this equation is 11.6<De<200011.6< De < 2000, 3.878×104<Di/Dc<0.0663.878\times 10^{-4}<D_i/D_c < 0.066.

The form of the equation means it yields nonsense results for De < 11.6; at De < 11.6, the equation is modified to return the straight pipe value.

This model is recommended in [3], with a slight modification for Dean numbers larger than 2000.

References

1

White, C. M. “Streamline Flow through Curved Pipes.” Proceedings of the Royal Society of London A: Mathematical, Physical and Engineering Sciences 123, no. 792 (April 6, 1929): 645-63. doi:10.1098/rspa.1929.0089.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3

Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984.

Examples

>>> helical_laminar_fd_White(250, .02, .1)
0.4063281817830202
fluids.friction.helical_laminar_fd_Mori_Nakayama(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under laminar conditions, using the method of Mori and Nakayama [1] as shown in [2] and [3].

fcurved=fstraight,laminar(0.108De13.253De0.5)f_{curved} = f_{\text{straight,laminar}} \left(\frac{0.108\sqrt{De}} {1-3.253De^{-0.5}}\right)
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

The range of validity of this equation is 100<De<2000100 < De < 2000.

The form of the equation means it yields nonsense results for De < 42.328; under that, the equation is modified to return the value at De=42.328, which is a multiplier of 1.405296 on the straight pipe friction factor.

References

1

Mori, Yasuo, and Wataru Nakayama. “Study on Forced Convective Heat Transfer in Curved Pipes : 1st Report, Laminar Region.” Transactions of the Japan Society of Mechanical Engineers 30, no. 216 (1964): 977-88. doi:10.1299/kikai1938.30.977.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3

Pimenta, T. A., and J. B. L. M. Campos. “Friction Losses of Newtonian and Non-Newtonian Fluids Flowing in Laminar Regime in a Helical Coil.” Experimental Thermal and Fluid Science 36 (January 2012): 194-204. doi:10.1016/j.expthermflusci.2011.09.013.

Examples

>>> helical_laminar_fd_Mori_Nakayama(250, .02, .1)
0.42224582857795434
fluids.friction.helical_laminar_fd_Schmidt(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under laminar conditions, using the method of Schmidt [1] as shown in [2] and [3].

fcurved=fstraight,laminar[1+0.14(DiDc)0.97Re[10.644(DiDc)0.312]]f_{curved} = f_{\text{straight,laminar}} \left[1 + 0.14\left(\frac{D_i} {D_c}\right)^{0.97}Re^{\left[1 - 0.644\left(\frac{D_i}{D_c} \right)^{0.312}\right]}\right]
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

The range of validity of this equation is specified only for Re, 100<Re<Recritical100 < Re < Re_{critical}.

The form of the equation is such that as the curvature becomes negligible, straight tube result is obtained.

References

1

Schmidt, Eckehard F. “Wärmeübergang Und Druckverlust in Rohrschlangen.” Chemie Ingenieur Technik 39, no. 13 (July 10, 1967): 781-89. doi:10.1002/cite.330391302.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3

Pimenta, T. A., and J. B. L. M. Campos. “Friction Losses of Newtonian and Non-Newtonian Fluids Flowing in Laminar Regime in a Helical Coil.” Experimental Thermal and Fluid Science 36 (January 2012): 194-204. doi:10.1016/j.expthermflusci.2011.09.013.

Examples

>>> helical_laminar_fd_Schmidt(250, .02, .1)
0.47460725672835236
fluids.friction.helical_turbulent_fd_Schmidt(Re, Di, Dc, roughness=0)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Schmidt [1], also shown in [2].

For Recrit<Re<2.2×104Re_{crit} < Re < 2.2\times 10^{4}:

fcurv=fstr,turb[1+2.88×104Re(DiDc)0.62]f_{curv} = f_{\text{str,turb}} \left[1 + \frac{2.88\times10^{4}}{Re} \left(\frac{D_i}{D_c}\right)^{0.62}\right]

For 2.2×104<Re<1.5×1052.2\times 10^{4} < Re < 1.5\times10^{5}:

fcurv=fstr,turb[1+0.0823(1+DiDc)(DiDc)0.53Re0.25]f_{curv} = f_{\text{str,turb}} \left[1 + 0.0823\left(1 + \frac{D_i} {D_c}\right)\left(\frac{D_i}{D_c}\right)^{0.53} Re^{0.25}\right]
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

roughnessfloat, optional

Roughness of pipe wall [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Valid from the transition to turbulent flow up to Re=1.5×105Re=1.5\times 10^{5}. At very low curvatures, converges on the straight pipe result.

References

1

Schmidt, Eckehard F. “Wärmeübergang Und Druckverlust in Rohrschlangen.” Chemie Ingenieur Technik 39, no. 13 (July 10, 1967): 781-89. doi:10.1002/cite.330391302.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_turbulent_fd_Schmidt(1E4, 0.01, .02)
0.08875550767040916
fluids.friction.helical_turbulent_fd_Mori_Nakayama(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Mori and Nakayama [1], also shown in [2] and [3].

fcurv=0.3(DiDc)0.5[Re(DiDc)2]0.2[1+0.112[Re(DiDc)2]0.2]f_{curv} = 0.3\left(\frac{D_i}{D_c}\right)^{0.5} \left[Re\left(\frac{D_i}{D_c}\right)^2\right]^{-0.2}\left[1 + 0.112\left[Re\left(\frac{D_i}{D_c}\right)^2\right]^{-0.2}\right]
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Valid from the transition to turbulent flow up to Re=6.5×105Di/DcRe=6.5\times 10^{5}\sqrt{D_i/D_c}. Does not use a straight pipe correlation, and so will not converge on the straight pipe result at very low curvature.

References

1

Mori, Yasuo, and Wataru Nakayama. “Study of Forced Convective Heat Transfer in Curved Pipes (2nd Report, Turbulent Region).” International Journal of Heat and Mass Transfer 10, no. 1 (January 1, 1967): 37-59. doi:10.1016/0017-9310(67)90182-2.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3

Ali, Shaukat. “Pressure Drop Correlations for Flow through Regular Helical Coil Tubes.” Fluid Dynamics Research 28, no. 4 (April 2001): 295-310. doi:10.1016/S0169-5983(00)00034-4.

Examples

>>> helical_turbulent_fd_Mori_Nakayama(1E4, 0.01, .2)
0.037311802071379796
fluids.friction.helical_turbulent_fd_Prasad(Re, Di, Dc, roughness=0)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Prasad [1], also shown in [2].

fcurv=fstr,turb[1+0.18[Re(DiDc)2]0.25]f_{curv} = f_{\text{str,turb}}\left[1 + 0.18\left[Re\left(\frac{D_i} {D_c}\right)^2\right]^{0.25}\right]
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

roughnessfloat, optional

Roughness of pipe wall [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

No range of validity was specified, but the experiments used were with coil/tube diameter ratios of 17.24 and 34.9, hot water in the tube, and 1780<Re<595001780 < Re < 59500. At very low curvatures, converges on the straight pipe result.

References

1

Prasad, B. V. S. S. S., D. H. Das, and A. K. Prabhakar. “Pressure Drop, Heat Transfer and Performance of a Helically Coiled Tubular Exchanger.” Heat Recovery Systems and CHP 9, no. 3 (January 1, 1989): 249-56. doi:10.1016/0890-4332(89)90008-2.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_turbulent_fd_Prasad(1E4, 0.01, .2)
0.043313098093994626
fluids.friction.helical_turbulent_fd_Czop(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Czop [1], also shown in [2].

fcurv=0.096De0.1517f_{curv} = 0.096De^{-0.1517}
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Valid for 2×104<Re<1.5×1052\times10^4 < Re < 1.5\times10^{5}. Does not use a straight pipe correlation, and so will not converge on the straight pipe result at very low curvature.

References

1

Czop, V., D. Barbier, and S. Dong. “Pressure Drop, Void Fraction and Shear Stress Measurements in an Adiabatic Two-Phase Flow in a Coiled Tube.” Nuclear Engineering and Design 149, no. 1 (September 1, 1994): 323-33. doi:10.1016/0029-5493(94)90298-4.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_turbulent_fd_Czop(1E4, 0.01, .2)
0.02979575250574106
fluids.friction.helical_turbulent_fd_Guo(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Guo [1], also shown in [2].

fcurv=0.638Re0.15(DiDc)0.51f_{curv} = 0.638Re^{-0.15}\left(\frac{D_i}{D_c}\right)^{0.51}
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Valid for 2×104<Re<1.5×1052\times10^4 < Re < 1.5\times10^{5}. Does not use a straight pipe correlation, and so will not converge on the straight pipe result at very low curvature.

References

1

Guo, Liejin, Ziping Feng, and Xuejun Chen. “An Experimental Investigation of the Frictional Pressure Drop of Steam-water Two-Phase Flow in Helical Coils.” International Journal of Heat and Mass Transfer 44, no. 14 (July 2001): 2601-10. doi:10.1016/S0017-9310(00)00312-4.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_turbulent_fd_Guo(2E5, 0.01, .2)
0.022189161013253147
fluids.friction.helical_turbulent_fd_Ju(Re, Di, Dc, roughness=0.0)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Ju et al. [1], also shown in [2].

fcurv=fstr,turb[1+0.11Re0.23(DiDc)0.14]f_{curv} = f_{\text{str,turb}}\left[1 +0.11Re^{0.23}\left(\frac{D_i} {D_c}\right)^{0.14}\right]
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

roughnessfloat, optional

Roughness of pipe wall [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Claimed to be valid for all turbulent conditions with De>11.6De>11.6. At very low curvatures, converges on the straight pipe result.

References

1

Ju, Huaiming, Zhiyong Huang, Yuanhui Xu, Bing Duan, and Yu Yu. “Hydraulic Performance of Small Bending Radius Helical Coil-Pipe.” Journal of Nuclear Science and Technology 38, no. 10 (October 1, 2001): 826-31. doi:10.1080/18811248.2001.9715102.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_turbulent_fd_Ju(1E4, 0.01, .2)
0.04945959480770937
fluids.friction.helical_turbulent_fd_Srinivasan(Re, Di, Dc)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Srinivasan [1], as shown in [2] and [3].

fd=0.336[ReDiDc]0.2f_d = \frac{0.336}{{\left[Re\sqrt{\frac{D_i}{D_c}}\right]^{0.2}}}
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Valid for 0.01 < Di/Dc < 0.15, with no Reynolds number criteria given in [2] or [3].

[2] recommends this method, using the transition criteria of Srinivasan as well. [3] recommends using either this method or the Ito method. This method did not make it into the popular review articles on curved flow.

References

1

Srinivasan, PS, SS Nandapurkar, and FA Holland. “Friction Factors for Coils.” TRANSACTIONS OF THE INSTITUTION OF CHEMICAL ENGINEERS AND THE CHEMICAL ENGINEER 48, no. 4-6 (1970): T156

2(1,2,3)

Blevins, Robert D. Applied Fluid Dynamics Handbook. New York, N.Y.: Van Nostrand Reinhold Co., 1984.

3(1,2,3)

Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998.

Examples

>>> helical_turbulent_fd_Srinivasan(1E4, 0.01, .02)
0.0570745212117107
fluids.friction.helical_turbulent_fd_Mandal_Nigam(Re, Di, Dc, roughness=0)[source]

Calculates Darcy friction factor for a fluid flowing inside a curved pipe such as a helical coil under turbulent conditions, using the method of Mandal and Nigam [1], also shown in [2].

fcurv=fstr,turb[1+0.03De0.27]f_{curv} = f_{\text{str,turb}} [1 + 0.03{De}^{0.27}]
Parameters
Refloat

Reynolds number with D=Di, [-]

Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

roughnessfloat, optional

Roughness of pipe wall [m]

Returns
fdfloat

Darcy friction factor for a curved pipe [-]

Notes

Claimed to be valid for all turbulent conditions with 2500<De<150002500 < De < 15000. At very low curvatures, converges on the straight pipe result.

References

1

Mandal, Monisha Mridha, and K. D. P. Nigam. “Experimental Study on Pressure Drop and Heat Transfer of Turbulent Flow in Tube in Tube Helical Heat Exchanger.” Industrial & Engineering Chemistry Research 48, no. 20 (October 21, 2009): 9318-24. doi:10.1021/ie9002393.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_turbulent_fd_Mandal_Nigam(1E4, 0.01, .2)
0.03831658117115902
fluids.friction.helical_transition_Re_Seth_Stahel(Di, Dc)[source]

Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1].

Recrit=1900[1+8DiDc]Re_{crit} = 1900\left[1 + 8 \sqrt{\frac{D_i}{D_c}}\right]
Parameters
Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
Re_critfloat

Transition Reynolds number between laminar and turbulent [-]

Notes

At very low curvatures, converges to Re = 1900.

References

1

Seth, K. K., and E. P. Stahel. “HEAT TRANSFER FROM HELICAL COILS IMMERSED IN AGITATED VESSELS.” Industrial & Engineering Chemistry 61, no. 6 (June 1, 1969): 39-49. doi:10.1021/ie50714a007.

Examples

>>> helical_transition_Re_Seth_Stahel(1, 7.)
7645.0599897402535
fluids.friction.helical_transition_Re_Ito(Di, Dc)[source]

Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1], as shown in [2] and in [3].

Recrit=20000(DiDc)0.32Re_{crit} = 20000 \left(\frac{D_i}{D_c}\right)^{0.32}
Parameters
Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
Re_critfloat

Transition Reynolds number between laminar and turbulent [-]

Notes

At very low curvatures, converges to Re = 0. Recommended for 0.00116<di/Dc<0.0670.00116 < d_i/D_c < 0.067

References

1

H. Ito. “Friction factors for turbulent flow in curved pipes.” Journal Basic Engineering, Transactions of the ASME, 81 (1959): 123-134.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3

Mori, Yasuo, and Wataru Nakayama. “Study on Forced Convective Heat Transfer in Curved Pipes.” International Journal of Heat and Mass Transfer 10, no. 5 (May 1, 1967): 681-95. doi:10.1016/0017-9310(67)90113-5.

Examples

>>> helical_transition_Re_Ito(1, 7.)
10729.972844697186
fluids.friction.helical_transition_Re_Kubair_Kuloor(Di, Dc)[source]

Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1], as shown in [2].

Recrit=12730(DiDc)0.2Re_{crit} = 12730 \left(\frac{D_i}{D_c}\right)^{0.2}
Parameters
Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
Re_critfloat

Transition Reynolds number between laminar and turbulent [-]

Notes

At very low curvatures, converges to Re = 0. Recommended for 0.0005<di/Dc<0.1030.0005 < d_i/D_c < 0.103

References

1

Kubair, Venugopala, and N. R. Kuloor. “Heat Transfer to Newtonian Fluids in Coiled Pipes in Laminar Flow.” International Journal of Heat and Mass Transfer 9, no. 1 (January 1, 1966): 63-75. doi:10.1016/0017-9310(66)90057-3.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_transition_Re_Kubair_Kuloor(1, 7.)
8625.986927588123
fluids.friction.helical_transition_Re_Kutateladze_Borishanskii(Di, Dc)[source]

Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1], also shown in [2].

Recrit=2300+1.05×104(DiDc)0.3Re_{crit} = 2300 + 1.05\times 10^4 \left(\frac{D_i}{D_c}\right)^{0.3}
Parameters
Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
Re_critfloat

Transition Reynolds number between laminar and turbulent [-]

Notes

At very low curvatures, converges to Re = 2300. Recommended for 0.0417<di/Dc<0.16670.0417 < d_i/D_c < 0.1667

References

1

Kutateladze, S. S, and V. M Borishanskiĭ. A Concise Encyclopedia of Heat Transfer. Oxford; New York: Pergamon Press, 1966.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

Examples

>>> helical_transition_Re_Kutateladze_Borishanskii(1, 7.)
7121.143774574058
fluids.friction.helical_transition_Re_Schmidt(Di, Dc)[source]

Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1], also shown in [2] and [3]. Correlation recommended in [3].

Recrit=2300[1+8.6(DiDc)0.45]Re_{crit} = 2300\left[1 + 8.6\left(\frac{D_i}{D_c}\right)^{0.45}\right]
Parameters
Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
Re_critfloat

Transition Reynolds number between laminar and turbulent [-]

Notes

At very low curvatures, converges to Re = 2300. Recommended for di/Dc<0.14d_i/D_c < 0.14

References

1

Schmidt, Eckehard F. “Wärmeübergang Und Druckverlust in Rohrschlangen.” Chemie Ingenieur Technik 39, no. 13 (July 10, 1967): 781-89. doi:10.1002/cite.330391302.

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3(1,2)

Schlunder, Ernst U, and International Center for Heat and Mass Transfer. Heat Exchanger Design Handbook. Washington: Hemisphere Pub. Corp., 1983.

Examples

>>> helical_transition_Re_Schmidt(1, 7.)
10540.094061770815
fluids.friction.helical_transition_Re_Srinivasan(Di, Dc)[source]

Calculates the transition Reynolds number for flow inside a curved or helical coil between laminar and turbulent flow, using the method of [1], also shown in [2] and [3]. Correlation recommended in [3].

Recrit=2100[1+12(DiDc)0.5]Re_{crit} = 2100\left[1 + 12\left(\frac{D_i}{D_c}\right)^{0.5}\right]
Parameters
Difloat

Inner diameter of the coil, [m]

Dcfloat

Diameter of the helix/coil measured from the center of the tube on one side to the center of the tube on the other side, [m]

Returns
Re_critfloat

Transition Reynolds number between laminar and turbulent [-]

Notes

At very low curvatures, converges to Re = 2100. Recommended for 0.004<di/Dc<0.10.004 < d_i/D_c < 0.1.

References

1

Srinivasan, P. S., Nandapurkar, S. S., and Holland, F. A., “Pressure Drop and Heat Transfer in Coils”, Chemical Engineering, 218, CE131-119, (1968).

2

El-Genk, Mohamed S., and Timothy M. Schriener. “A Review and Correlations for Convection Heat Transfer and Pressure Losses in Toroidal and Helically Coiled Tubes.” Heat Transfer Engineering 0, no. 0 (June 7, 2016): 1-28. doi:10.1080/01457632.2016.1194693.

3(1,2)

Rohsenow, Warren and James Hartnett and Young Cho. Handbook of Heat Transfer, 3E. New York: McGraw-Hill, 1998.

Examples

>>> helical_transition_Re_Srinivasan(1, 7.)
11624.704719832524

Other Geometry Friction Factor Correlations

fluids.friction.friction_plate_Martin_1999(Re, chevron_angle)[source]

Calculates Darcy friction factor for single-phase flow in a Chevron-style plate heat exchanger according to [1].

1ff=cosϕ0.045tanϕ+0.09sinϕ+f0/cos(ϕ)+1cosϕ3.8f1\frac{1}{\sqrt{f_f}} = \frac{\cos \phi}{\sqrt{0.045\tan\phi + 0.09\sin\phi + f_0/\cos(\phi)}} + \frac{1-\cos\phi}{\sqrt{3.8f_1}}
f0=16/Re for Re<2000f_0 = 16/Re \text{ for } Re < 2000
f0=(1.56lnRe3)2 for Re2000f_0 = (1.56\ln Re - 3)^{-2} \text{ for } Re \ge 2000
f1=149Re+0.9625 for Re<2000f_1 = \frac{149}{Re} + 0.9625 \text{ for } Re < 2000
f1=9.75Re0.289 for Re2000f_1 = \frac{9.75}{Re^{0.289}} \text{ for } Re \ge 2000
Parameters
Refloat

Reynolds number with respect to the hydraulic diameter of the channels, [-]

chevron_anglefloat

Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90. Many plate exchangers use two alternating patterns; use their average angle for that situation [degrees]

Returns
fdfloat

Darcy friction factor [-]

Notes

Based on experimental data from Re from 200 - 10000 and enhancement factors calculated with chevron angles of 0 to 80 degrees. See PlateExchanger for further clarification on the definitions.

The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons.

Note there is a discontinuity at Re = 2000 for the transition from laminar to turbulent flow, although the literature suggests the transition is actually smooth.

This was first developed in [2] and only minor modifications by the original author were made before its republication in [1]. This formula is also suggested in [3]

References

1(1,2)

Martin, Holger. “Economic optimization of compact heat exchangers.” EF-Conference on Compact Heat Exchangers and Enhancement Technology for the Process Industries, Banff, Canada, July 18-23, 1999, 1999. https://publikationen.bibliothek.kit.edu/1000034866.

2

Martin, Holger. “A Theoretical Approach to Predict the Performance of Chevron-Type Plate Heat Exchangers.” Chemical Engineering and Processing: Process Intensification 35, no. 4 (January 1, 1996): 301-10. https://doi.org/10.1016/0255-2701(95)04129-X.

3

Shah, Ramesh K., and Dusan P. Sekulic. Fundamentals of Heat Exchanger Design. 1st edition. Hoboken, NJ: Wiley, 2002.

Examples

>>> friction_plate_Martin_1999(Re=20000, chevron_angle=45)
0.7818916308365043
fluids.friction.friction_plate_Martin_VDI(Re, chevron_angle)[source]

Calculates Darcy friction factor for single-phase flow in a Chevron-style plate heat exchanger according to [1].

1fd=cosϕ0.28tanϕ+0.36sinϕ+f0/cos(ϕ)+1cosϕ3.8f1\frac{1}{\sqrt{f_d}} = \frac{\cos \phi}{\sqrt{0.28\tan\phi + 0.36\sin\phi + f_0/\cos(\phi)}} + \frac{1-\cos\phi}{\sqrt{3.8f_1}}
f0=64/Re for Re<2000f_0 = 64/Re \text{ for } Re < 2000
f0=(1.56lnRe3)2 for Re2000f_0 = (1.56\ln Re - 3)^{-2} \text{ for } Re \ge 2000
f1=597Re+3.85 for Re<2000f_1 = \frac{597}{Re} + 3.85 \text{ for } Re < 2000
f1=39Re0.289 for Re2000f_1 = \frac{39}{Re^{0.289}} \text{ for } Re \ge 2000
Parameters
Refloat

Reynolds number with respect to the hydraulic diameter of the channels, [-]

chevron_anglefloat

Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90. Many plate exchangers use two alternating patterns; use their average angle for that situation [degrees]

Returns
fdfloat

Darcy friction factor [-]

Notes

Based on experimental data from Re from 200 - 10000 and enhancement factors calculated with chevron angles of 0 to 80 degrees. See PlateExchanger for further clarification on the definitions.

The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons.

Note there is a discontinuity at Re = 2000 for the transition from laminar to turbulent flow, although the literature suggests the transition is actually smooth.

This is a revision of the Martin’s earlier model, adjusted to predidct higher friction factors.

There are three parameters in this model, a, b and c; it is posisble to adjust them to better fit a know exchanger’s pressure drop.

References

1

Gesellschaft, V. D. I., ed. VDI Heat Atlas. 2nd edition. Berlin; New York:: Springer, 2010.

Examples

>>> friction_plate_Martin_VDI(Re=20000, chevron_angle=45)
0.93076451142552
fluids.friction.friction_plate_Kumar(Re, chevron_angle)[source]

Calculates Darcy friction factor for single-phase flow in a well-designed Chevron-style plate heat exchanger according to [1]. The data is believed to have been developed by APV International Limited, since acquired by SPX Corporation. This uses a curve fit of that data published in [2].

ff=C2Repf_f = \frac{C_2}{Re^p}

C2 and p are coefficients looked up in a table, with varying ranges of Re validity and chevron angle validity. See the source for their exact values.

Parameters
Refloat

Reynolds number with respect to the hydraulic diameter of the channels, [-]

chevron_anglefloat

Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90. Many plate exchangers use two alternating patterns; use their average angle for that situation [degrees]

Returns
fdfloat

Darcy friction factor [-]

Notes

Data on graph from Re=0.1 to Re=10000, with chevron angles 30 to 65 degrees. See PlateExchanger for further clarification on the definitions.

It is believed the constants used in this correlation were curve-fit to the actual graph in [1] by the author of [2] as there is no

The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons.

As the coefficients change, there are numerous small discontinuities, although the data on the graphs is continuous with sharp transitions of the slope.

The author of [1] states clearly this correlation is “applicable only to well designed Chevron PHEs”.

References

1(1,2,3)

Kumar, H. “The plate heat exchanger: construction and design.” In First U.K. National Conference on Heat Transfer: Held at the University of Leeds, 3-5 July 1984, Institute of Chemical Engineering Symposium Series, vol. 86, pp. 1275-1288. 1984.

2(1,2)

Ayub, Zahid H. “Plate Heat Exchanger Literature Survey and New Heat Transfer and Pressure Drop Correlations for Refrigerant Evaporators.” Heat Transfer Engineering 24, no. 5 (September 1, 2003): 3-16. doi:10.1080/01457630304056.

Examples

>>> friction_plate_Kumar(Re=2000, chevron_angle=30)
2.9760669055634517
fluids.friction.friction_plate_Muley_Manglik(Re, chevron_angle, plate_enlargement_factor)[source]

Calculates Darcy friction factor for single-phase flow in a Chevron-style plate heat exchanger according to [1], also shown and recommended in [2].

ff=[2.9170.1277β+2.016×103β2]×[20.7819.02ϕ+18.93ϕ25.341ϕ3]×Re[0.2+0.0577sin[(πβ/45)+2.1]]f_f = [2.917 - 0.1277\beta + 2.016\times10^{-3} \beta^2] \times[20.78 - 19.02\phi + 18.93\phi^2 - 5.341\phi^3] \times Re^{-[0.2 + 0.0577\sin[(\pi \beta/45)+2.1]]}
Parameters
Refloat

Reynolds number with respect to the hydraulic diameter of the channels, [-]

chevron_anglefloat

Angle of the plate corrugations with respect to the vertical axis (the direction of flow if the plates were straight), between 0 and 90. Many plate exchangers use two alternating patterns; use their average angle for that situation [degrees]

plate_enlargement_factorfloat

The extra surface area multiplier as compared to a flat plate caused the corrugations, [-]

Returns
fdfloat

Darcy friction factor [-]

Notes

Based on experimental data of plate enacement factors up to 1.5, and valid for Re > 1000 and chevron angles from 30 to 60 degrees with sinusoidal shape. See PlateExchanger for further clarification on the definitions.

The length the friction factor gets multiplied by is not the flow path length, but rather the straight path length from port to port as if there were no chevrons.

This is a continuous model with no discontinuities.

References

1

Muley, A., and R. M. Manglik. “Experimental Study of Turbulent Flow Heat Transfer and Pressure Drop in a Plate Heat Exchanger With Chevron Plates.” Journal of Heat Transfer 121, no. 1 (February 1, 1999): 110-17. doi:10.1115/1.2825923.

2

Ayub, Zahid H. “Plate Heat Exchanger Literature Survey and New Heat Transfer and Pressure Drop Correlations for Refrigerant Evaporators.” Heat Transfer Engineering 24, no. 5 (September 1, 2003): 3-16. doi:10.1080/01457630304056.

Examples

>>> friction_plate_Muley_Manglik(Re=2000, chevron_angle=45, plate_enlargement_factor=1.2)
1.0880870804075413

Experimental Friction Data

fluids.friction.oregon_smooth_data = ([11.21, 20.22, 29.28, 43.19, 57.73, 64.58, 86.05, 113.3, 135.3, 157.5, 179.4, 206.4, 228.0, 270.9, 315.2, 358.9, 402.9, 450.2, 522.5, 583.1, 671.8, 789.8, 891.0, 1013.0, 1197.0, 1300.0, 1390.0, 1669.0, 1994.0, 2227.0, 2554.0, 2868.0, 2903.0, 2926.0, 2955.0, 2991.0, 2997.0, 3047.0, 3080.0, 3264.0, 3980.0, 4835.0, 5959.0, 8162.0, 10900.0, 13650.0, 18990.0, 29430.0, 40850.0, 59220.0, 84760.0, 120000.0, 176000.0, 237700.0, 298200.0, 467800.0, 587500.0, 824200.0, 1050000.0], [5.537, 3.492, 2.329, 1.523, 1.173, 0.9863, 0.7826, 0.5709, 0.4815, 0.4182, 0.3655, 0.3237, 0.2884, 0.2433, 0.2077, 0.1834, 0.1656, 0.1475, 0.1245, 0.1126, 0.09917, 0.08501, 0.07722, 0.06707, 0.0588, 0.05328, 0.04815, 0.04304, 0.03739, 0.03405, 0.03091, 0.02804, 0.03182, 0.03846, 0.03363, 0.04124, 0.035, 0.03875, 0.04285, 0.0426, 0.03995, 0.03797, 0.0361, 0.03364, 0.03088, 0.02903, 0.0267, 0.02386, 0.02086, 0.02, 0.01805, 0.01686, 0.01594, 0.01511, 0.01462, 0.01365, 0.01313, 0.01244, 0.01198])

Holds a tuple of experimental results from the smooth pipe flow experiments presented in McKEON, B. J., C. J. SWANSON, M. V. ZAGAROLA, R. J. DONNELLY, and A. J. SMITS. “Friction Factors for Smooth Pipe Flow.” Journal of Fluid Mechanics 511 (July 1, 2004): 41-44. doi:10.1017/S0022112004009796.

Roughness

fluids.friction.material_roughness(ID, D=None, optimism=None)[source]

Searches through either a dict of clean pipe materials or used pipe materials and conditions and returns the ID of the nearest material. Search is performed with either the standard library’s difflib or with the thefuzz module if available.

Parameters
IDstr

Search terms for matching pipe materials, [-]

Dfloat, optional

Diameter of desired pipe; used only if ID is in [2], [m]

optimismbool, optional

For values in [1], a minimum, maximum, and average value is normally given; if True, returns the minimum roughness; if False, the maximum roughness; and if None, returns the average roughness. Most entries do not have all three values, so fallback logic to return the closest entry is used, [-]

Returns
roughnessfloat

Retrieved or calculated roughness, [m]

References

1

Idel`chik, I. E, and A. S Ginevskiĭ. Handbook of Hydraulic Resistance. Redding, CT: Begell House, 2007.

2

Farshad, Fred F., and Herman H. Rieke. “Surface Roughness Design Values for Modern Pipes.” SPE Drilling & Completion 21, no. 3 (September 1, 2006): 212-215. doi:10.2118/89040-PA.

Examples

>>> material_roughness('condensate pipes') 
0.0005
fluids.friction.nearest_material_roughness(name, clean=None)[source]

Searches through either a dict of clean pipe materials or used pipe materials and conditions and returns the ID of the nearest material. Search is performed with either the standard library’s difflib or with the thefuzz module if available.

Parameters
namestr

Search term for matching pipe materials

cleanbool, optional

If True, search only clean pipe database; if False, search only the dirty database; if None, search both

Returns
IDstr

String for lookup of roughness of a pipe, in either roughness_clean_names or HHR_roughness depending on if clean is True, [-]

References

1

Idel`chik, I. E, and A. S Ginevskiĭ. Handbook of Hydraulic Resistance. Redding, CT: Begell House, 2007.

Examples

>>> nearest_material_roughness('condensate pipes', clean=False) 
'Seamless steel tubes, Condensate pipes in open systems or periodically operated steam pipelines'
fluids.friction.roughness_Farshad(ID=None, D=None, coeffs=None)[source]

Calculates of retrieves the roughness of a pipe based on the work of [1]. This function will return an average value for pipes of a given material, or if diameter is provided, will calculate one specifically for the pipe inner diameter according to the following expression with constants A and B:

ϵ=ADB+1\epsilon = A\cdot D^{B+1}

Please not that A has units of inches, and B requires D to be in inches as well.

The list of supported materials is as follows:

  • ‘Plastic coated’

  • ‘Carbon steel, honed bare’

  • ‘Cr13, electropolished bare’

  • ‘Cement lining’

  • ‘Carbon steel, bare’

  • ‘Fiberglass lining’

  • ‘Cr13, bare’

If coeffs and D are given, the custom coefficients for the equation as given by the user will be used and ID is not required.

Parameters
IDstr, optional

Name of pipe material from above list

Dfloat, optional

Actual inner diameter of pipe, [m]

coeffstuple, optional

(A, B) Coefficients to use directly, instead of looking them up; they are actually dimensional, in the forms (inch^-B, -) but only coefficients with those dimensions are available [-]

Returns
epsilonfloat

Roughness of pipe [m]

Notes

The diameter-dependent form provides lower roughness values for larger diameters.

The measurements were based on DIN 4768/1 (1987), using both a “Dektak ST Surface Profiler” and a “Hommel Tester T1000”. Both instruments were found to be in agreement. A series of flow tests, in which pressure drop directly measured, were performed as well, with nitrogen gas as an operating fluid. The accuracy of the data from these tests is claimed to be within 1%.

Using those results, the authors back-calculated what relative roughness values would be necessary to produce the observed pressure drops. The average difference between this back-calculated roughness and the measured roughness was 6.75%.

For microchannels, this model will predict roughness much larger than the actual channel diameter.

References

1

Farshad, Fred F., and Herman H. Rieke. “Surface Roughness Design Values for Modern Pipes.” SPE Drilling & Completion 21, no. 3 (September 1, 2006): 212-215. doi:10.2118/89040-PA.

Examples

>>> roughness_Farshad('Cr13, bare', 0.05)
5.3141677781137006e-05
fluids.friction.HHR_roughness = {'Asbestos cement tubes, Average': (0.0006, None, None), 'Asbestos cement tubes, New': (5e-05, 0.0001, None), 'Cast-iron tubes, Cleaned after extensive use': (0.0003, 0.0015, None), 'Cast-iron tubes, Coated with asphalt': (0.00012, 0.0003, None), 'Cast-iron tubes, Deposits visible': (0.001, 0.0015, None), 'Cast-iron tubes, New, bituminized': (0.0001, 0.00015, None), 'Cast-iron tubes, Severely corroded': (None, 0.003, None), 'Cast-iron tubes, Substantial deposits': (0.002, 0.004, None), 'Cast-iron tubes, Used and corroded': (0.001, 0.0015, None), 'Cast-iron tubes, Used water pipelines': (None, None, 0.0014), 'Cement tubes, Joints, non smoothed': (0.0019, 0.0064, None), 'Cement tubes, Non processed': (0.001, 0.002, None), 'Cement tubes, Smoothed': (0.0003, 0.0008, None), 'Cement-mortar plaster channels, Plaster, cement, smoothed joints and protrusions, and a casing': (5e-05, 0.00022, None), 'Cement-mortar plaster channels, Steel trowled': (None, None, 0.0005), 'Concrete water conduits, no finish, Brushed air-placed, either sprayed concrete or concrete on more concrete': (None, None, 0.0023), 'Concrete water conduits, no finish, Conduits for water, sprayed surface of concrete': (0.0005, 0.001, None), 'Concrete water conduits, no finish, Hand-smoothed cement finish and smoothed joints': (0.00015, 0.00035, None), 'Concrete water conduits, no finish, New and finished with plater; excellent manufacture (joints aligned, prime coated and smoothed)': (5e-05, 0.00015, None), 'Concrete water conduits, no finish, New, very well manufactured, hand smoothed, prime-coated joints': (0.0001, 0.0002, None), 'Concrete water conduits, no finish, Non-smoothed air-placed, either sprayed concrete or concrete on more concrete': (0.003, 0.006, None), 'Concrete water conduits, no finish, Old, poor fitting and manufacture; with an overgrown surface and deposits of sand and gravel': (0.001, 0.004, None), 'Concrete water conduits, no finish, Smoothed air-placed, either sprayed concrete or concrete on more concrete': (0.006, 0.017, 0.0005), 'Concrete water conduits, no finish, Used and corroded; with a wavy surface and wood framework': (0.001, 0.004, None), 'Concrete water conduits, no finish, Used, no deposits, moderately smooth, steel or wooden casing, joints prime coated but not smoothed': (0.0003, 0.0006, None), 'Concrete water conduits, no finish, Used, prefabricated monoliths, cement plaster (wood floated), rough joints': (0.0005, 0.001, None), 'Concrete water conduits, no finish, Very old; damaged surface, very overgrown': (0.005, None, None), 'Concrete water conduits, no finish, Water conduit, finished with smoothed plaster': (0.005, None, None), 'Galzanized sheet steel, New': (None, None, 0.00015), 'Galzanized sheet steel, Used previously for water': (None, None, 0.00018), 'Galzanized steel tubes, Bright galvanization; new': (7e-05, 0.0001, None), 'Galzanized steel tubes, Ordinary galvanization': (0.0001, 0.00015, None), 'Glass tubes, Glass': (1.5e-06, 1e-05, None), 'Other, Plaster over a screen': (0.01, 0.015, None), 'Other, Salt-glazed ceramic': (None, None, 0.0014), 'Other, Slag and alabaster-filling': (0.001, 0.0015, None), 'Other, Slag-concrete': (None, None, 0.0015), 'Plywood tubes, Birch plywood, longitudal grain, good quality': (3e-05, 5e-05, None), 'Plywood tubes, Birch plywood, transverse grain, good quality': (None, None, 0.00012), 'Reinforced concrete tubes, New': (0.00025, 0.00034, None), 'Reinforced concrete tubes, Nonprocessed': (0.0025, None, None), 'Riveted steel tubes, Extremely poor surface; overlapping and uneven joints': (0.005, None, None), 'Riveted steel tubes, Riveted laterally and longitudinally with one line; lacquered on the inside': (0.0003, 0.0004, None), 'Riveted steel tubes, Riveted laterally and longitudinally with two lines; with or without lacquer on the inside and without corrosion': (0.0006, 0.0007, None), 'Riveted steel tubes, Riveted laterally with four line and longitudinally with six lines; overlapping joints inside': (None, None, 0.004), 'Riveted steel tubes, Riveted laterally with one line and longitudinally with two lines; thickly lacquered or torred on the inside': (0.0012, 0.0014, None), 'Riveted steel tubes, Riveted longitudinally with six lines, after extensive use': (None, None, 0.002), 'Roofing steel sheets, Not Oiled': (2e-05, 4e-05, None), 'Roofing steel sheets, Oiled': (0.00015, 0.0011, None), 'Rough channels in rock, Blast-hewed, little jointing': (0.1, 0.14, None), 'Rough channels in rock, Blast-hewed, substantial jointing': (0.13, 0.5, None), 'Rough channels in rock, Roughly cut or very uneven surface': (0.5, 1.5, None), 'Seamless steel tubes, Bituminized': (None, 4e-05, None), 'Seamless steel tubes, Casings in gas wells, different conditions, several years of use': (6e-05, 0.00022, None), 'Seamless steel tubes, Cleaned, following years of use': (None, 4e-05, None), 'Seamless steel tubes, Compressed air piping': (None, None, 0.0008), 'Seamless steel tubes, Condensate pipes in open systems or periodically operated steam pipelines': (None, None, 0.0005), 'Seamless steel tubes, Corroded, moderately ': (None, None, 0.0004), 'Seamless steel tubes, Following multiple year as a gas pipeline': (4e-05, 0.0002, None), 'Seamless steel tubes, Following multiple years of operation, generally corroded or with small amounts of scale': (0.00015, 0.001, None), 'Seamless steel tubes, Following one year as a gas pipeline': (None, None, 0.00012), 'Seamless steel tubes, Heating systems piping; either superheated steam pipes, or just water pipes of systems with deaerators and chemical treatment': (None, None, 0.0001), 'Seamless steel tubes, Heating systems, saturated steam ducts or water pipes (with minor water leakage < 0.5%, and balance water deaerated)': (None, None, 0.0002), 'Seamless steel tubes, New and unused': (2e-05, 0.0001, None), 'Seamless steel tubes, Oil pipelines, intermediate operating conditions ': (None, None, 0.0002), 'Seamless steel tubes, Poor condition': (0.005, None, None), 'Seamless steel tubes, Scale, small depositions only ': (None, None, 0.0004), 'Seamless steel tubes, Used water piping': (0.0012, 0.0015, None), 'Seamless steel tubes, Water heating piping without deaeration but with chemical treatment of water; leakage up to 3%; or condensate piping operated periodically': (None, None, 0.001), 'Seamless steel tubes, Water heating system pipelines, any source': (None, None, 0.0002), 'Seamless tubes made from brass, copper, lead, aluminum, Commercially smooth': (1.5e-06, 1e-05, None), 'Steel tubes, Glass enamel coat': (1e-06, 1e-05, None), 'Steel tubes, New': (0.00025, 0.001, None), 'Steel water conduits in generating stations, New, clean, coated, bituminized when manufactured': (1.4e-05, 1.8e-05, None), 'Steel water conduits in generating stations, New, clean, coated, bituminized when manufactured, with transverse welded joints': (0.0002, 0.0006, None), 'Steel water conduits in generating stations, New, clean, coated, bituminized, curved': (0.0001, 0.0014, None), 'Steel water conduits in generating stations, New, clean, coated, galvanized': (0.0001, 0.0002, None), 'Steel water conduits in generating stations, New, clean, coated, roughly galvanized': (0.0004, 0.0007, None), 'Steel water conduits in generating stations, New, clean, seamless (without joints), well fitted': (1.5e-05, 4e-05, None), 'Steel water conduits in generating stations, New, clean, welded lengthwise and well fitted': (1.2e-05, 3e-05, None), 'Steel water conduits in generating stations, New, clean, welded lengthwise and well fitted, with transverse welded joints': (8e-05, 0.00017, None), 'Steel water conduits in generating stations, Used, clean, moderate corrosion or slight deposits': (0.0003, 0.0007, None), 'Steel water conduits in generating stations, Used, clean, previously cleaned of either deposits or rust': (0.00015, 0.0002, None), 'Steel water conduits in generating stations, Used, clean, severe corrosion': (0.0008, 0.0015, None), 'Steel water conduits in generating stations, Used, clean, slight corrosion': (0.0001, 0.0003, None), 'Unlined tunnels, Rocks, gneiss, diameter 3-13.5 m': (0.3, 0.7, None), 'Unlined tunnels, Rocks, granite, diameter 3-9 m': (0.2, 0.7, None), 'Unlined tunnels, Shale, diameter, diameter 9-12 m': (0.25, 0.65, None), 'Unlined tunnels, Shale, nephrite bearing, diameter 3-8 m': (None, None, 0.2), 'Unlined tunnels, Shale, quartz, quartzile, diameter 7-10 m': (0.2, 0.6, None), 'Unlined tunnels, Shale, sedimentary, diameter 4-7 m': (None, None, 0.4), 'Used steel water conduits in generating stations, Used, all welded, <2 years use, no deposits': (0.00012, 0.00024, None), 'Used steel water conduits in generating stations, Used, all welded, <20 years use, no deposits': (0.0006, 0.005, None), 'Used steel water conduits in generating stations, Used, heavy corrosion, or with incrustation (deposit 1.5 - 9 mm deep)': (0.003, 0.005, None), 'Used steel water conduits in generating stations, Used, heavy corrosion, or with incrustation (deposit 3 - 25 mm deep)': (0.006, 0.0065, None), 'Used steel water conduits in generating stations, Used, inside coating, bituminized, < 2 years use': (0.0001, 0.00035, None), 'Used steel water conduits in generating stations, Used, iron-bacterial corrosion': (0.003, 0.004, None), 'Welded steel tubes, Appreciable deposits': (0.002, 0.004, None), 'Welded steel tubes, Double or simple transverse riveted joints; with or without lacquer; without corrosion': (0.0006, 0.0007, None), 'Welded steel tubes, Gas mains, many years of use, deposits of resin/naphthalene': (None, None, 0.0024), 'Welded steel tubes, Gas mains, many years of use, with layered deposits': (None, None, 0.0011), 'Welded steel tubes, Good condition': (4e-05, 0.0001, None), 'Welded steel tubes, Heavily corroded and with  double transverse riveted joints': (None, None, 0.002), 'Welded steel tubes, Lacquered inside but rusted': (0.00095, 0.001, None), 'Welded steel tubes, New and covered with bitumen': (None, None, 5e-05), 'Welded steel tubes, Non-corroded and with double transverse riveted joints': (0.0012, 0.0015, None), 'Welded steel tubes, Poor condition': (0.005, None, None), 'Welded steel tubes, Small deposits': (None, None, 0.0015), 'Welded steel tubes, Surface looks like new, 10 mm lacquer inside, even joints': (0.0003, 0.0004, None), 'Welded steel tubes, Used Gas mains': (None, None, 0.0005), 'Welded steel tubes, Used and covered with partially dissolved bitumen; corroded': (None, None, 0.0001), 'Welded steel tubes, Used, suffering general corrosion': (None, None, 0.00015), 'Wood tubes, Boards, thoroughly dressed': (None, None, 0.00015), 'Wood tubes, Boards, undressed': (None, None, 0.001), 'Wood tubes, Boards, undressed but fitted': (None, None, 0.0007), 'Wood tubes, Boards, well dressed': (None, None, 0.0003), 'Wood tubes, Staved': (None, None, 0.0006)}

Pressure Drop Calculation

fluids.friction.one_phase_dP(m, rho, mu, D, roughness=0.0, L=1.0, Method=None)[source]

Calculates single-phase pressure drop. This is a wrapper around other methods.

Parameters
mfloat

Mass flow rate of fluid, [kg/s]

rhofloat

Density of fluid, [kg/m^3]

mufloat

Viscosity of fluid, [Pa*s]

Dfloat

Diameter of pipe, [m]

roughnessfloat, optional

Roughness of pipe for use in calculating friction factor, [m]

Lfloat, optional

Length of pipe, [m]

Methodstr, optional

A string of the function name to use

Returns
dPfloat

Pressure drop of the single-phase flow, [Pa]

References

1

Crane Co. Flow of Fluids Through Valves, Fittings, and Pipe. Crane, 2009.

Examples

>>> one_phase_dP(10.0, 1000, 1E-5, .1, L=1)
63.43447321097365
fluids.friction.one_phase_dP_gravitational(angle, rho, L=1.0, g=9.80665)[source]

This function handles calculation of one-phase liquid-gas pressure drop due to gravitation for flow inside channels. This is either a differential calculation for a segment with an infinitesimal difference in elevation L = 1 or a discrete calculation.

(dPdz)grav=ρgsinθ-\left(\frac{dP}{dz} \right)_{grav} = \rho g \sin \theta
(ΔP)grav=Lρgsinθ-\left(\Delta P \right)_{grav} = L \rho g \sin \theta
Parameters
anglefloat

The angle of the pipe with respect to the horizontal, [degrees]

rhofloat

Fluid density, [kg/m^3]

Lfloat, optional

Length of pipe, [m]

gfloat, optional

Acceleration due to gravity, [m/s^2]

Returns
dPfloat

Gravitational component of pressure drop for one-phase flow, [Pa/m] or [Pa]

Examples

>>> one_phase_dP_gravitational(angle=90, rho=2.6)
25.49729
>>> one_phase_dP_gravitational(angle=90, rho=2.6, L=4)
101.98916
fluids.friction.one_phase_dP_dz_acceleration(m, D, rho, dv_dP, dP_dL, dA_dL)[source]

This function handles calculation of one-phase fluid pressure drop due to acceleration for flow inside channels. This is a continuous calculation, providing the differential in pressure per unit length and should be called as part of an integration routine [1].

(PL)A=G2PL[(1/ρ)P]G2ρ1AAL-\left(\frac{\partial P}{\partial L}\right)_{A} = G^2 \frac{\partial P}{\partial L}\left[\frac{\partial (1/\rho)}{\partial P} \right]- \frac{G^2}{\rho}\frac{1}{A}\frac{\partial A}{\partial L}
Parameters
mfloat

Mass flow rate of fluid, [kg/s]

Dfloat

Diameter of pipe, [m]

rhofloat

Fluid density, [kg/m^3]

dv_dPfloat

Derivative of mass specific volume of the fluid with respect to pressure, [m^3/(kg*Pa)]

dP_dLfloat

Pressure drop per unit length of pipe, [Pa/m]

dA_dLfloat

Change in area of pipe per unit length of pipe, [m^2/m]

Returns
dP_dzfloat

Acceleration component of pressure drop for one-phase flow, [Pa/m]

Notes

The value returned here is positive for pressure loss and negative for pressure increase.

As dP_dL is not known, this equation is normally used in a more complicated way than this function provides; this method can be used to check the consistency of that routine.

References

1

Shoham, Ovadia. Mechanistic Modeling of Gas-Liquid Two-Phase Flow in Pipes. Pap/Cdr edition. Richardson, TX: Society of Petroleum Engineers, 2006.

Examples

>>> one_phase_dP_dz_acceleration(m=1, D=0.1, rho=827.1, dv_dP=-1.1E-5,
... dP_dL=5E5, dA_dL=0.0001)
89162.89116373913
fluids.friction.one_phase_dP_acceleration(m, D, rho_o, rho_i, D_i=None)[source]

This function handles calculation of one-phase fluid pressure drop due to acceleration for flow inside channels. This is a discrete calculation, providing the total differential in pressure for a given length and should be called as part of a segment solver routine.

(ΔPΔz)acc=0.5ρivi20.5ρovo2- \left(\frac{\Delta P}{\Delta z}\right)_{acc} = 0.5\rho_i v_i^2 - 0.5\rho_o v_o^2
Parameters
mfloat

Mass flow rate of fluid, [kg/s]

Dfloat

Diameter of pipe, [m]

rho_ofloat

Fluid density out, [kg/m^3]

rho_ifloat

Fluid density in, [kg/m^3]

D_ifloat

Diameter of the entry of the pipe; provide this if the pipe changes diameter and then D is the diameter of the pipe exit, [m]

Returns
dPfloat

Acceleration component of pressure drop for one-phase flow, [Pa]

Examples

>>> one_phase_dP_acceleration(m=1, D=0.1, rho_o=827.1, rho_i=830)
0.06848310644876913
>>> one_phase_dP_acceleration(m=1, D=0.1, rho_o=827.1, rho_i=830, D_i=.05)
-146.1640615999393

Utilities

fluids.friction.transmission_factor(fd=None, F=None)[source]

Calculates either transmission factor from Darcy friction factor, or Darcy friction factor from the transmission factor. Raises an exception if neither input is given.

Transmission factor is a term used in compressible gas flow in pipelines.

F=2fdF = \frac{2}{\sqrt{f_d}}
fd=4F2f_d = \frac{4}{F^2}
Parameters
fdfloat, optional

Darcy friction factor, [-]

Ffloat, optional

Transmission factor, [-]

Returns
fd or Ffloat

Darcy friction factor or transmission factor [-]

References

1

Menon, E. Shashi. Gas Pipeline Hydraulics. 1st edition. Boca Raton, FL: CRC Press, 2005.

Examples

>>> transmission_factor(fd=0.0185)
14.704292441876154
>>> transmission_factor(F=20)
0.01