CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

TEqn. in PorousSimpleFoam

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 14, 2018, 08:53
Post TEqn. in PorousSimpleFoam
  #1
Member
 
Ramana
Join Date: Jul 2017
Location: India
Posts: 58
Rep Power: 8
svramana is on a distinguished road
Hi Everyone,

I am new to OpenFoam. I am doing numerical simulation of fluid flow(incompressible)and Heat transfer from a porous square cylinder placed in the middle of a channel (maintained at constant Temp. > fluid Temp.)to a flowing wind.

For fluid flow(incompressible) simulation, the existing Poroussimplefoam(Darcy-Forchheimer Model) is giving fairly reasonable results on Cd and wake length.

Now I need to simulate heat transfer from porous square cylinder.
I found a thread on this forum where in, the procedure for adding TEqn. to icoFoam is available.

In my case the flow filed is only fluid and porosity is defined as source/sink ter using "topoSet.
The porous square cylinder is maintained at fixed Temp.using scalarFiXedValueConstarint in fvOptions
fvOptionsDict
Code:
s1
{
    type            scalarFixedValueConstraint;
    active          true;
    scalarFixedValueConstraintCoeffs
    {
        selectionMode   cellZone;
        cellZone        porousBlockage;
        volumeMode      uniform;
        fieldValues
        {
            T              353;
        }
    }
}
and TEqn. H included in PorousSimpleFoam solver
Code:
TEqn:fvScalarMatrix TEqn
(
 //fvm::ddt(T) // <--- steady state simulation, so ddt disabled...
//+
            fvm::div(phi, T)
         - fvm::laplacian(DT, T)
         ==
    fvOptions(T) // porouszone is maintained at const. temperature
        );
    TEqn.relax();
    fvOptions.constrain(TEqn);
    TEqn.solve();
    fvOptions.correct(T);
TEqn.H included in main solver file after governing equations. Compilation was done without any error msg.

following are the flow and heat transfer parameters considered
Re 40
Darcy no (Da ): 10e-2
porosity value: 0.993
Pr :0.71

I have few observations in this

1). There is no entry for porosity value as an input parameter.is it okay or am i missing something?

2). I want to calculate Nusselt Number ,i have general idea about calculation of Nusset number for solid cylinder, in my case the porous cylinder defined as source/sink (no physical surfaces/patches)

3). Is there available code for calculation Nusselt Number for porous blockage.?

I have searched many threads on this forum,but no luck.It will be great if someone can help me to run this simulation
Thank You,
Svramana

Last edited by svramana; February 19, 2018 at 01:26.
svramana is offline   Reply With Quote

Reply

Tags
porous boundary, porous cell zone, poroussimplefoam


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
porousSimpleFoam aban OpenFOAM 10 July 20, 2022 03:01
How do I analyse the odd results (with porousSimpleFoam) ? deepbandivadekar OpenFOAM Running, Solving & CFD 3 January 17, 2018 05:15
[snappyHexMesh] Is it possible to set flow to laminar with porousSimpleFoam solver? Caio Martins OpenFOAM Meshing & Mesh Conversion 3 May 17, 2016 14:12
Replace H equation with Teqn in chtMultiregionFoam OF 2.3 Moncef OpenFOAM Running, Solving & CFD 0 May 22, 2014 20:37
porousSimpleFoam - crash Sebaj OpenFOAM 2 January 4, 2012 16:16


All times are GMT -4. The time now is 18:44.