|
[Sponsors] |
June 12, 2013, 07:22 |
momentum equation in rhoCentralFoam
|
#1 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
its the momemntum equation in rhoCentralFoam.
what are equivalents for its terms in CFD form? Code:
solve ( fvm::ddt(rho, U) - fvc::ddt(rho, U) - fvm::laplacian(muEff, U) - fvc::div(tauMC) ); Code:
tmp<fvVectorMatrix> UEqn ( fvm::ddt(rho, U) + fvm::div(phi, U) + turbulence->divDevRhoReff(U) == fvOptions(rho, U) ); UEqn().relax(); fvOptions.constrain(UEqn()); if (pimple.momentumPredictor()) { solve(UEqn() == -fvc::grad(p)); fvOptions.correct(U); K = 0.5*magSqr(U); }
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
solving the momentum equation in UEqn. | callahance | OpenFOAM | 2 | October 18, 2012 10:38 |
Coefficients discretized momentum equation | michujo | Main CFD Forum | 4 | June 20, 2012 02:33 |
UDF Transport equation for transition momentum thickness Reynolds number | Wantami | FLUENT | 0 | April 9, 2011 03:50 |
What is the Boussinesq Term in Momentum Equation | CFDtoy | Main CFD Forum | 0 | August 11, 2008 10:56 |
Derivation of k-e model from momentum equation | CFDtoy | Main CFD Forum | 5 | May 10, 2006 17:53 |