CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

XiFoam enthalpy equation in partially premixed case

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By sempionato

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   May 21, 2015, 11:14
Smile XiFoam enthalpy equation in partially premixed case
  #1
New Member
 
Guilherme Sempionato
Join Date: Aug 2011
Posts: 12
Rep Power: 14
sempionato is on a distinguished road
Hi all,

I am researching now the possible XiFoam implementation to a partially pre-mixed combustion case but there are some terms in enthalpy equation that are puzzling me. There is a annotated possible solution in EauEqn.H but I could not encounter a specific paper to detail this solution to a secure implementation.

if (ign.ignited())
{
volScalarField& heau = thermo.heu();

fvScalarMatrix heauEqn
(
fvm::ddt(rho, heau) + mvConvection->fvmDiv(phi, heau)
+ (fvc::ddt(rho, K) + fvc::div(phi, K))*rho/thermo.rhou()
+ (
heau.name() == "eau"
? fvc::div
(
fvc::absolute(phi/fvc::interpolate(rho), U),
p,
"div(phiv,p)"
)*rho/thermo.rhou()
: -dpdt*rho/thermo.rhou()
)
- fvm::laplacian(turbulence->alphaEff(), heau)

// These terms cannot be used in partially-premixed combustion due to
// the resultant inconsistency between ft and heau transport.
// A possible solution would be to solve for ftu as well as ft.
//- fvm::div(muEff*fvc::grad(b)/(b + 0.001), heau)
//+ fvm::Sp(fvc::div(muEff*fvc::grad(b)/(b + 0.001)), heau)

==
fvOptions(rho, heau)
);

fvOptions.constrain(heauEqn);

heauEqn.solve();

fvOptions.correct(heau);
}

The temperature field is presenting some discrepancies in partially premixed cases and I think that is due this terms. Does someone knows more about this commented possible solution?

Thanks,

Guilherme Sempionato.
dmytro.iurashev likes this.

Last edited by sempionato; May 21, 2015 at 14:18.
sempionato is offline   Reply With Quote

 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Development of partially premixed solver in OpenFoam harshad88 OpenFOAM Programming & Development 3 May 23, 2014 00:35
Partially Premixed Combustion not burning raymond350 FLUENT 5 January 21, 2014 19:28
Energy Equation solve the Temperature or Enthalpy? mikahang FLUENT 0 September 26, 2013 01:48
Mixture fraction in Partially premixed combustion Viktor FLUENT 1 December 29, 2005 23:30
Enthalpy equation and Cp dependency upon specis Mads Bang Main CFD Forum 1 July 30, 2000 06:43


All times are GMT -4. The time now is 07:49.