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

mappedPatch with channel flow

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   February 20, 2014, 14:44
Default mappedPatch with channel flow
  #1
Senior Member
 
ArathoN
Join Date: Jul 2011
Posts: 137
Rep Power: 15
ArathoN is on a distinguished road
I want to simulate the fully developed flow in a rectangular channel and i decided to use the mappedpatch option with the solver simpleFoam.

I mapped the inlet with the outlet and I put as value variable the velocity i want like this:
Code:
dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    inlet
    {
        type                  mapped;
        value                 uniform (9.07 0 0);
        interpolationScheme   cell;
        setAverage            false;
        average               (9.07 0 0);  
    }

    outlet
    {
        type            zeroGradient;
    }

    upperWall
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    lowerWall
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    frontAndBack
    {
        type            empty;
    }
}

What i want is that the maximum velocity would be the given one, so it must be the center-line velocity. But after the simulation the velocity would increase and i can't figure out how i can make it stop doing it.

My hypothesis is that with mappedpatch it will try to maintain constant the massflow so the velocity at centerline represent the maximum flow and having the boundary layer the velocity will have to increase at the center-line cause near wall it's null. How can i counter this? I have the experimental data in 12 point of the channel height, can they be useful?

Here the interested part of blockmeshDict:

Code:
inlet
    {
        type mappedPatch;
        offset          ( 0.4 0 0 );
        sampleRegion    region0;
        sampleMode      nearestCell;
        samplePatch     none;
        faces
        (
            (0 5 11 6)
            (5 4 10 11)
        );
    }
    outlet
    {
        type patch;
        faces
        (

            (1 2 8 7)
            (2 3 9 8)          
        );
ArathoN 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
rhoCentralFoam for channel flow fportela OpenFOAM Running, Solving & CFD 22 June 10, 2014 20:14
Question on the boundary condition for open channel flow, please help! ripperjack OpenFOAM Running, Solving & CFD 0 September 13, 2013 11:44
Gravitational water flow in closed channel. Szymon85 CFX 7 September 3, 2013 16:28
[ICEM] Flow channel meshing problems StefanG ANSYS Meshing & Geometry 19 May 15, 2012 06:44
references for how to maintain a constant flow rate in turbulent channel flow amirrstg Main CFD Forum 0 October 25, 2011 03:17


All times are GMT -4. The time now is 21:45.