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

Shadow Wall/Thermo Baffle in OF 1.7.1

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 29, 2011, 19:09
Default Shadow Wall/Thermo Baffle in OF 1.7.1
  #1
Member
 
ak
Join Date: May 2011
Posts: 64
Rep Power: 14
newOFuser is on a distinguished road
Hello Foamers,

Does anyone know how we can define shadow walls/baffles in OF 1.7.1? Is there some tutorial available for this?
I am interested in including wall heat transfer (where the wall thickness and its properties can also be defined) and therefore was looking into how it could be done in OF 1.7.1
Any thoughts on this?

Many thanks,
amit
newOFuser is offline   Reply With Quote

Old   March 1, 2012, 17:17
Default
  #2
Member
 
Stefano Wahono
Join Date: Aug 2010
Location: Melbourne, Australia
Posts: 42
Rep Power: 15
swahono is on a distinguished road
Hi,

You can not do this in OF 1.7.x.
OF 2.0.x can do this.

You need to create your wall mesh with -shadow wall patch already included.
The easiest way to do this is to use third party mesher.

Then you need to change your constant/polyMesh/boundary for your coupled wall
Code:
wall1
{
    type            directMappedWall;
    nFaces          32482;
    startFace       16477771;
    sampleMode      nearestPatchFace;
    sampleRegion    region0;
    samplePatch     wall1-shadow;
    offsetMode      uniform;
    offset          ( 0 0 0 );
}

wall1-shadow
{
    type            directMappedWall;
    nFaces          32482;
    startFace       16510253;
    sampleMode      nearestPatchFace;
    sampleRegion    region0;
    samplePatch     wall1;
    offsetMode      uniform;
    offset          ( 0 0 0 );
}
Then for 1D heat conduction through the wall, use the BC:
Code:
wall1
    {
        type            compressible::temperatureThermoBaffle1D<constSolidThermoPhysics>;
        baffleActivated yes;
        thickness       uniform 0.001;
        Qs              uniform 0;
        transport
        {
            K               202.4;
        }
        radiation
        {
            sigmaS          0;
            kappa           0;
            emissivity      0;
        }
        thermodynamics
        {
            Hf              0;
            Cp              871;
        }
        density
        {
            rho             2719;
        }
        value           uniform 300;
    }
    wall1-shadow
    {
        type            compressible::temperatureThermoBaffle1D<constSolidThermoPhysics>;
        $wall1    ;
    }
then include additional library in your system/controlDict

libs ("libthermoBaffleModels.so");

For 3D heat transfer through the wall (i.e. 1D conduction + 2D shell conduction)...
things are a bir more complicated. But, you can definitely do it too.
__________________
Stefano Wahono

Defence Science and Technology Organisation
Propulsion Systems
swahono 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
[ICEM] Shadow walls in Fluent. ICEM meshes vs Workbench aarvay ANSYS Meshing & Geometry 11 January 12, 2017 12:51
OpenCFD release OpenFOAMŪ version 1.7.1 opencfd OpenFOAM Announcements from ESI-OpenCFD 0 August 26, 2010 11:40
Wall-wall shadow Ness FLUENT 0 March 7, 2007 04:00
Boundary baffle error 258 Nalleli Siemens 2 November 19, 2006 13:14
baffle in flow route GaryWang CFX 0 October 23, 2005 23:19


All times are GMT -4. The time now is 20:16.