|
[Sponsors] |
frictional pressure drop in rhoPisoFoam (using fanning friction factor) |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 18, 2018, 22:09 |
frictional pressure drop in rhoPisoFoam (using fanning friction factor)
|
#1 |
Member
Ashish Kumar
Join Date: Jun 2015
Posts: 33
Rep Power: 11 |
I want to include frictional pressure drop calculation in rhoPisoFoam.
frictional pressure drop can be calculated by 0.5*ff*rho*U^2 where ff is fanning friction factor, which can be calculated by using standard correlations based on reynolds number. I have modified UEqn as following. Code:
fvVectorMatrix UEqn ( fvm::ddt(rho, U) + fvm::div(phi, U) ); if(includeFrictionFactor) { UEqn += fvm::div(phiFrictional, U); } Code:
phiFrictional = fvc::interpolate(fanningFrictionFactor)* ( (fvc::interpolate(U) & mesh.Sf()) + fvc::ddtPhiCorr(rUA, rho, U, phiFrictional) ); Code:
if(includeFrictionFactor) { pEqn += fvc::div(phiFrictional); } Please let me know what is wrong in my formulation. Or Please suggest me some other solver which has the pressure drop calculation using fanning friction factor. |
|
July 19, 2018, 07:22 |
|
#2 | |
Senior Member
Santiago Lopez Castano
Join Date: Nov 2012
Posts: 354
Rep Power: 16 |
Quote:
|
||
July 19, 2018, 12:28 |
|
#3 | |
Member
Ashish Kumar
Join Date: Jun 2015
Posts: 33
Rep Power: 11 |
Quote:
But I am unable to understand how to modify the momentum equation to include fanning friction term. |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
caculation of friction factor | Dilip | Main CFD Forum | 9 | February 23, 2016 06:00 |
Pressure drop using Fan type BC | Alexis Sack | OpenFOAM Running, Solving & CFD | 2 | September 22, 2014 10:18 |
Calculation of the Governing Equations | Mihail | CFX | 7 | September 7, 2014 07:27 |
Pressure drop in a heat exchanger | Diana | FLUENT | 5 | December 13, 2007 10:33 |
Pressure drop of valve with valve opening of 30% | elogesh | Main CFD Forum | 2 | January 5, 2007 13:30 |