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

Unburnt absolute enthalpy equation

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 8, 2014, 08:27
Default Unburnt absolute enthalpy equation
  #1
New Member
 
Mateus Dias Ribeiro
Join Date: Jun 2013
Location: Guaratinguetá, Brazil
Posts: 20
Rep Power: 12
mateusdias89 is on a distinguished road
Hello,

I am looking into the unburnt absolute enthalpy equation file of OpenFOAM (EauEqn.H) from the solver XiFoam and I have a question about its implementation.
I still can not understand why the terms of the transport equation were no enthalpy is present are multiplied by rho/thermo.rhou() and would appreciate if someone could explain me this and maybe we can discuss it in detail.

Code:
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)
    );
Thanks in advance,
Mateus Dias Ribeiro

Last edited by mateusdias89; October 8, 2014 at 12:36.
mateusdias89 is offline   Reply With Quote

Old   May 21, 2015, 10:35
Default
  #2
New Member
 
Guilherme Sempionato
Join Date: Aug 2011
Posts: 12
Rep Power: 14
sempionato is on a distinguished road
Hi Mateus, do you advanced on this question?

Here, in Sao Jose dos Campos, we research the XiFoam implementation in partially pre-mixed combustion but these terms are puzzling us.

The temperatures are presenting some discrepancies in partially premixed cases and I think that is due this terms.

Thanks,

Guilherme.
sempionato is offline   Reply With Quote

Reply


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
Solving for absolute enthalpy in the 2.2.x psiReactionThermo sushant OpenFOAM Programming & Development 19 July 16, 2015 21:15
what is the condition to use the wave equation? mmff Main CFD Forum 0 January 26, 2010 04:25
Viscosity and the Energy Equation Rich Main CFD Forum 0 December 16, 2009 14:01
continuity equation Rafal Main CFD Forum 4 November 29, 2006 09:27
question about energy equation zhou FLUENT 0 February 23, 2004 23:55


All times are GMT -4. The time now is 05:32.