D'Arcy-Weisbach pressure loss in Excel

AI Thread Summary
The discussion focuses on creating an Excel workbook to calculate pressure drops using the Darcy-Weisbach equation. The user initially provided an incorrect formula for pressure loss in their Excel setup. The correct formula should include density multiplied by the square of velocity, rather than the square root of velocity. This correction is crucial for accurate pressure loss calculations in fluid systems. The conversation highlights common frustrations encountered when working with complex equations in Excel.
bsharp
Messages
7
Reaction score
0
Hello,

I am working on making an Excel work book to aid in figuring out pressure drops in a system. I am trying to use the Darcy Weisbach equation for pressure loss.
http://www.engineeringtoolbox.com/darcy-weisbach-equation-d_646.html"

In Excel I have
=(C4*(C5/C6))*((C7+(SQRT(C8)))/2)

C4= Friction coefficient
C5= Length of pipe
C6= Hydraulic dia
C7= Density
C8= Velocity

Please help me out.
 
Last edited by a moderator:
Engineering news on Phys.org
bsharp said:
In Excel I have
=(C4*(C5/C6))*((C7+(SQRT(C8)))/2)

Should be

=(C4*(C5/C6))*((C7*(C8*C8))/2)

I hate it when that happens :)
 
Back
Top