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

energy equation problem

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 12, 2015, 02:12
Default energy equation problem
  #1
New Member
 
Join Date: Jan 2015
Posts: 14
Rep Power: 11
Gary51075607 is on a distinguished road
hello, eveybody
i'm a new in learning OpenFoam and have problems in reading the EEqn.H in the solver of buyoantSimpleFoam.
what do the follwing secentences respect for?

he.name() == "e"
? fvc::div(phi, volScalarField("Ekp", 0.5*magSqr(U) + p/rho))
: fvc::div(phi, volScalarField("K", 0.5*magSqr(U)))

and i also doubt about the "fvOptions" followed.
Gary51075607 is offline   Reply With Quote

Old   January 12, 2015, 03:17
Default
  #2
Senior Member
 
Fabian Roesler
Join Date: Mar 2009
Location: Germany
Posts: 213
Rep Power: 18
fabian_roesler is on a distinguished road
Hi Gary

Quote:
he.name() == "e"
? fvc::div(phi, volScalarField("Ekp", 0.5*magSqr(U) + p/rho))
: fvc::div(phi, volScalarField("K", 0.5*magSqr(U)))
is an if structure to decide whether to use
internal energy
Code:
fvc::div(phi, volScalarField("Ekp", 0.5*magSqr(U) + p/rho))
or enthalpy
Code:
fvc::div(phi, volScalarField("K", 0.5*magSqr(U)))
formulation, where 0.5*magSqr(U) is specific kinetic energy and p/rho should be a work term.

Quote:
+ fvOptions(rho, he)
fvOptions is a kind of library where options like porous media, SRF/MRF and sources for all solvers are implemented. So if you choose to add a source term for a specific cell zone, this will be handled here.

Hope this helps a bit.

Cheers

Fabian
fabian_roesler is offline   Reply With Quote

Old   January 12, 2015, 07:55
Default
  #3
New Member
 
Join Date: Jan 2015
Posts: 14
Rep Power: 11
Gary51075607 is on a distinguished road
Thank you very much, Febian. Now i can completely understand it

Regard,

Gary
Gary51075607 is offline   Reply With Quote

Old   January 29, 2015, 03:52
Default
  #4
New Member
 
Join Date: Jan 2015
Posts: 14
Rep Power: 11
Gary51075607 is on a distinguished road
Quote:
Originally Posted by fabian_roesler View Post

fvOptions is a kind of library where options like porous media, SRF/MRF and sources for all solvers are implemented. So if you choose to add a source term for a specific cell zone, this will be handled here.
Hi, Fabian

Now i want to add a source term in the energy equation using the fvOptions. where can i get enough info about it?

Regards!

Gary
Gary51075607 is offline   Reply With Quote

Old   February 20, 2015, 04:36
Default
  #5
Senior Member
 
Fabian Roesler
Join Date: Mar 2009
Location: Germany
Posts: 213
Rep Power: 18
fabian_roesler is on a distinguished road
Browse the tutorials and you will find everthing you need:

Code:
 
energySource1
{
    type            scalarSemiImplicitSource;
    active          true;
    timeStart       0.2;
    duration        2.0;
    selectionMode   points;
    points
    (
        (2.75 0.5 0)
    );
    scalarSemiImplicitSourceCoeffs
    {
        volumeMode      absolute;
        injectionRateSuSp
        {
            h           (10 0);
        }
    }
}
Code:
 
source1
{
    type            fixedTemperatureConstraint;
    active          true;
    timeStart       0.1;
    duration        0.4;
    selectionMode   cellSet;
    cellSet         ignitionCells;
    fixedTemperatureConstraintCoeffs
    {
        mode            uniform;
        temperature     2000;
    }
}
fabian_roesler is offline   Reply With Quote

Old   August 7, 2015, 07:55
Default What "ekp" stands for in EEqn.h file in rhoPorousSimpleFoam
  #6
New Member
 
Umesh
Join Date: Feb 2015
Posts: 5
Rep Power: 11
umeshisode is on a distinguished road
Hello Everybody,

I am trying to understand a rhoPorousSimpleFoam solver but stuck in the file EEqn.h at solvers directory.

fvScalarMatrix EEqn
(
fvm::div(phi, he)
+ (
he.name() == "e"
? fvc::div(phi, volScalarField("Ekp", 0.5*magSqr(U) + p/rho))
: fvc::div(phi, volScalarField("K", 0.5*magSqr(U)))
)
- fvm::laplacian(turbulence->alphaEff(), he)
==
fvOptions(rho, he)
);


In above code what is "Ekp" and "K" stands for .

And one more question, how to get value in "fvOptions(rho, he)".

Thanks in advance. Waiting for your reply.
umeshisode is offline   Reply With Quote

Reply

Tags
eeqn.h


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
error message cuteapathy CFX 14 March 20, 2012 06:45
Energy equation in bouyant*Foam solvers makaveli_lcf OpenFOAM Running, Solving & CFD 0 December 21, 2009 04:09
Viscosity and the Energy Equation Rich Main CFD Forum 0 December 16, 2009 14:01
Coupled solver energy equation problem lucioantonio FLUENT 0 April 3, 2009 10:21
Problem with Joulebs effect source term in the energy equation galaad OpenFOAM Running, Solving & CFD 0 January 19, 2006 12:01


All times are GMT -4. The time now is 12:09.