|
[Sponsors] |
eddy dissipation concept + infinitely fast chemistry |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 20, 2010, 11:00 |
eddy dissipation concept + infinitely fast chemistry
|
#1 |
Senior Member
Aram Amouzandeh
Join Date: Mar 2009
Location: Vienna, Vienna, Austria
Posts: 190
Rep Power: 17 |
dear all!
i implemented the eddy dissipation concept combustion model with infinitely fast chemistry according to the paper of Magnussen: "The Eddy Dissipation Concept A Bridge Between Science And Technology", Lisbon, 2005, based on fireFoam, using a k-eps turbulence model. the code runs and the flow field looks plausible at first sight (in 3D). but when integrating the reaction rate (or the heat release due to burnt fuel) over the whole computational domain, I can see that the reaction rate is overestimated, i.e. more fuel burns as is injected. I tried to increase spatial resolution as well as to change the value for the turbulent dissipation rate at fuel inlet but always observe the same behavior. Interestingly the reaction rate matches quiet well with the injected amount of fuel for the 2D tutorial case applying k-eps turbulence model. Anybody experienced similar problems?? I would greatly appreciate your comments!! Regards, Aram |
|
September 23, 2010, 06:27 |
|
#2 |
Senior Member
Aram Amouzandeh
Join Date: Mar 2009
Location: Vienna, Vienna, Austria
Posts: 190
Rep Power: 17 |
dear all!
i figured out that the problem is not the combustion model. additional to the convective input of fuel (prescribed by mass flow), fuel enters the domain by diffusion due to the sharp gradient of fuel mass fraction fu at inlet. first i tried to add a long fuel inlet pipe but as a result of low inlet velocities the combustion process "travels" back to the inlet causing the same problem as before. Hence, i decided to set the diffusion coefficient alphaEff in the transport equation of fu (fuhsEqn.H) to zero at inlet, what solved the problem: Code:
alphaEffZeroDiff = turbulence->alphaEff(); label inletPatchID = mesh.boundaryMesh().findPatchID("inlet"); alphaEffZeroDiff.boundaryField()[inletPatchID] -= alphaEffZeroDiff.boundaryField()[inletPatchID]; fvScalarMatrix R = combustion->R(fu); { fvScalarMatrix fuEqn ( fvm::ddt(rho, fu) + mvConvection->fvmDiv(phi, fu) - fvm::laplacian(alphaEffZeroDiff, fu) == R ); fuEqn.relax(); fuEqn.solve(); } Code:
const label patchI = patch().index(); const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties"); scalarField alphaEffp = rasModel.alphaEff()().boundaryField()[patchI]; rasModel.alphaEff()().boundaryField()[patchI] -= alphaEffp; fixedValueFvPatchScalarField::updateCoeffs(); Thx in advance, Aram |
|
September 12, 2012, 15:01 |
|
#3 |
New Member
Michael
Join Date: Dec 2011
Location: Geneva
Posts: 28
Rep Power: 14 |
Dear mabinty,
I am working with the solver since a few month and I discovered the problem very lately. So I will see to confirm it as soon as possible. In fact, I still haven't found a possibility to compute the diffusive flux. It looks like this is still unsolved: http://lists.cfd-online.com/pipermai...ne/004327.html also: http://www.extend-project.de/user-fo...library-update Cheers, Michael Last edited by lithos; September 13, 2012 at 11:01. |
|
September 13, 2012, 05:39 |
|
#4 |
New Member
Michael
Join Date: Dec 2011
Location: Geneva
Posts: 28
Rep Power: 14 |
Sorry for the double post due to a missing reload, questions already raised above (Apart from deactivating completely the diffusion, is there any way to compute the diffusive mass flow through a patch?).
|
|
September 17, 2012, 05:55 |
|
#5 |
Senior Member
Aram Amouzandeh
Join Date: Mar 2009
Location: Vienna, Vienna, Austria
Posts: 190
Rep Power: 17 |
hey Michael,
my problem was not to compute diffusive fluxes. for a variable phi and a diffusion coefficient alphaEff i d try it like that Code:
volScalarField dDiff = - fvc::laplacian(turbulence->alphaEff(), phi); cheers, aram |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Eddy dissipation concept | thanz | OpenFOAM Running, Solving & CFD | 1 | March 26, 2010 04:32 |
Eddy Dissipation Concept | adrian | CFX | 0 | October 18, 2007 04:57 |
Eddy Dissipation Concept | adrian | FLUENT | 0 | October 18, 2007 04:55 |
Eddy Dissipation Concept | adrian | Main CFD Forum | 0 | October 18, 2007 04:54 |
eddy dissipation concept | sisilxp | FLUENT | 5 | May 13, 2004 06:13 |