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

Pressure driven flow

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 26, 2021, 13:39
Default Pressure driven flow
  #1
New Member
 
Join Date: Mar 2021
Posts: 6
Rep Power: 5
velikaDjoka is on a distinguished road
Hello everybody,

I am trying to do a pressure derived flow in a quenching chamber working at 5 bars. With the following geometry.

case.jpg

The tubes are the inlets and the blue circle at the back is the outlet.
Obviously I want to have a flow perpendicular to the inlet patches . To assure this I wrote the boundary conditions for the velocity : pressureNormalInletOutletVelocity.

But how come my results of the velocity field are all parallel to the X axis ?
vectors.jpg

And how the U magnitude is not the same for the bottom inlets ? This might be because I am imposing p_rgh ( so there is some gravitational effect that enters. But then how can I impose a same inlet velocity for all the inlets with a pressure driven flow? ( I am using chtMultiRegionFoam, I don't know if it is important to mention )


Does any body know how to get the flow I want to have. That is a flow coming from the inlet patches ( perpendicularly ) and a flow leaving the chamber through the outlet. With a pressure driven flow.


Here are my boundary conditions are the following for p_rgh and U:

p_rgh

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0/vaccum";
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [ 1 -1 -2 0 0 0 0 ];

internalField   uniform 500000;

boundaryField
{
    outlet
    {
        type            prghTotalPressure;
        value           uniform 499900;
        p0              uniform 499900;
    }
    walls
    {
        type            fixedFluxPressure;
        value           $internalField;
    }
    inletN
    {
        type            prghTotalPressure;
        value           uniform 500050;
        p0              uniform 500050;
    }
    inletNE
    {
        type            prghTotalPressure;
        value           uniform 500050;
        p0              uniform 500050;
    }
    inletSE
    {
        type            prghTotalPressure;
        value           uniform 500050;
        p0              uniform 500050;
    }
    inletS
    {
        type            prghTotalPressure;
        value           uniform 500050;
        p0              uniform 500050;
    }
    inletSW
    {
        type            prghTotalPressure;
        value           uniform 500050;
        p0              uniform 500050;
    }
    inletNW
    {
        type            prghTotalPressure;
        value           uniform 500050;
        p0              uniform 500050;
    }
    vaccum_to_block
    {
        type            fixedFluxPressure;
        value           $internalField;
    }
}


// ************************************************************************* //

U

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    location    "0/vaccum";
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [ 0 1 -1 0 0 0 0 ];

internalField   uniform ( 0 0 0 );

boundaryField
{
    outlet
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    walls
    {
        type            noSlip;
        value           uniform ( 0.01 0 0 );
    }
    inletN
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    inletNE
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    inletSE
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    inletS
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    inletSW
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    inletNW
    {
        type            pressureNormalInletOutletVelocity;
        value           uniform ( 0 0 0 );
    }
    vaccum_to_block
    {
        type            noSlip;
        value           uniform ( 0 0 0 );
    }
}


// ************************************************************************* //
velikaDjoka is offline   Reply With Quote

Old   March 26, 2021, 15:03
Default
  #2
New Member
 
Join Date: Mar 2021
Posts: 6
Rep Power: 5
velikaDjoka is on a distinguished road
Problem solved normally!
velikaDjoka 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
Pressure driven flow with rhoSimpleFoam Error OpenFOOL OpenFOAM Running, Solving & CFD 2 February 22, 2023 11:41
Pressure driven compressible flow between two gas reservoirs dld OpenFOAM Running, Solving & CFD 1 October 27, 2022 14:45
Simple Box - Gravity with Pressure Outlet - Unrealistic Reverse Flow pyccknn FLUENT 2 December 1, 2021 17:31
fluid flow fundas ram Main CFD Forum 5 June 17, 2000 21:31
Hydrostatic pressure in 2-phase flow modeling (CFX4.2) HB &DS CFX 0 January 9, 2000 13:19


All times are GMT -4. The time now is 06:55.