|
[Sponsors] |
September 19, 2018, 08:24 |
Energy equation for multi-component systems
|
#1 |
Senior Member
Andrea Ferrari
Join Date: Dec 2010
Posts: 319
Rep Power: 17 |
Dear All,
i have a question regarding the energy equation in chtMultiRegionFoam or, in general, the energy equation for multi-component systems. The fluid i am working with is moist air, which is a binary mixture of dry air (a) and water vapor (v). The total heat flux for this multi-components system should be the sum of conductive heat flux (given by Fourier's law) and the heat flux resulting from mass diffusion (see for example [1], Chapter 19): Code:
where --> enthalpy of component "i" with --> mass fraction of component "i --> density of the mixture Code:
fvScalarMatrix EEqn ( fvm::ddt(rho, he) + fvm::div(phi, he) + fvc::ddt(rho, K) + fvc::div(phi, K) + ( he.name() == "e" ? fvc::div ( fvc::absolute(phi/fvc::interpolate(rho), U), p, "div(phiv,p)" ) : -dpdt ) - fvm::laplacian(turbulence.alphaEff(), he) == rho*(U&g) + rad.Sh(thermo, he) + Qdot + fvOptions(rho, he) ); - fvm::laplacian(turbulence.alphaEff(), he) only accounts for conductive heat flux. So, where is the mass diffusion contribution? Thanks, Andrea [1]Bird, R. Byron. "Transport phenomena." Applied Mechanics Reviews 55.1 (2002): R1-R4. |
|
September 20, 2018, 10:24 |
|
#2 |
Senior Member
Andrea Ferrari
Join Date: Dec 2010
Posts: 319
Rep Power: 17 |
I just wanted to add that mass diffusivity is correctly accounted for in the specie equation:
Code:
fvScalarMatrix YiEqn ( fvm::ddt(rho,Yi) + mvConvection->fvmDiv(phi, Yi) - fvm::laplacian(turbulence.muEff(), Yi) == reaction.R(Yi) + fvOptions(rho, Yi) ); In OF this becomes under the assumption that and It seems to me that this term is then neglected in the Energy equation. The approximation (if it is neglected) should be ok for Lewis number close to 1, where Lewis number for component i is defined as: where k is the thermal conductivity. Note that Le=1/Pr following OF implementation. Are these ideas correct? Is the the heat flux due to mass diffusion neglected in energy equation? Or am i missing something? Thanks, Andrea |
|
September 24, 2018, 22:19 |
|
#3 |
New Member
Gao Zhengwei
Join Date: Jan 2017
Location: HangZhou, P.R.China
Posts: 10
Rep Power: 9 |
Hi Andrea,
I have read this part of the code and I think what you said is right. In OF, the unity Sc number assumption is used for specie equation since the differential diffusion model is not available. Gao |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Error in computing Energy equation | faab | OpenFOAM Running, Solving & CFD | 0 | February 3, 2017 14:04 |
Pyrolisis energy equation | yaqb | OpenFOAM Programming & Development | 0 | May 22, 2014 18:25 |
Questions about the energy equation | aestas | Fluent UDF and Scheme Programming | 5 | April 6, 2014 12:28 |
problem on energy and flow equation solving separately | preetam69 | FLUENT | 2 | July 30, 2013 22:08 |
Why FVM for high-Re flows? | Zhong Lei | Main CFD Forum | 23 | May 14, 1999 14:22 |