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

Compressible model producing unknown "boundary" near patch interfaces

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 24, 2020, 14:19
Default Compressible model producing unknown "boundary" near patch interfaces
  #1
New Member
 
Join Date: Mar 2020
Posts: 2
Rep Power: 0
PeterStrbik is on a distinguished road
Hi all,

I have been attempting to model high-speed compressible lubrication in a bearing but have been struggling to get viable results. The model is simplified to a wedge geometry where the inlet is twice the height of the outlet. I have been able to get an incompressible model working using icoFoam, and have attached an image of it to show the approximate results for pressure I am aiming to achieve with a compressible model. (Flow is from left to right)

The problem comes when trying to model the case with a compressible solver. I chose rhoCentralFoam to use in my case. After running the simulation with boundary conditions that mimic the incompressible case, I arrived at results where the boundary conditions were not necessarily satisfied. I have attached 2 images showing the pressure solution for the compressible case. I am unsure as to why those pressure jumps are occurring near the patch boundaries (especially near the outlet) when the boundary condition for those patches is that they should be at a fixed value of the ambient pressure.

Any insight as to why this is occurring would be much appreciated. Thanks!
Attached Images
File Type: png Incompressible.png (59.3 KB, 3 views)
File Type: png Compressible1.png (130.3 KB, 4 views)
File Type: png Compressible2.png (66.1 KB, 3 views)
PeterStrbik is offline   Reply With Quote

Old   March 24, 2020, 14:32
Default Initial Conditions
  #2
New Member
 
Join Date: Mar 2020
Posts: 2
Rep Power: 0
PeterStrbik is on a distinguished road
Here are the initial T, U, and p files for the compressible simulation:

T:
Code:
internalField   uniform 400;

boundaryField
{
    top
    {
        type            fixedGradient;
	gradient	uniform 100;
    }

    inlet
    {
        type            fixedValue;
        value           uniform 400;
    }

    outlet
    {
        type            zeroGradient;
    }

    bottom
    {
        type            fixedGradient;
	gradient	uniform 100;
    }

    frontAndBack
    {
        type            zeroGradient;
    }
}
U:
Code:
internalField   uniform (0 0 0);

boundaryField
{
    top
    {
        type            noSlip;
    }

    inlet
    {
        type            zeroGradient;
    }

    outlet
    {
        type            zeroGradient;
    }

    bottom
    {
        type            movingWallVelocity;
	value		uniform (170 0 0);
    }

    frontAndBack
    {
        type            zeroGradient;
    }
}
p:
Code:
internalField   uniform 100000;

boundaryField
{
    top
    {
        type            zeroGradient;
    }

    inlet
    {
        type            fixedValue;
        value           uniform 100000;
    }

    outlet
    {
        type            fixedValue;
	value		uniform 100000;
    }

    bottom
    {
        type            zeroGradient;
    }

    frontAndBack
    {
        type            fixedValue;
	value		uniform 100000;
    }
}
PeterStrbik is offline   Reply With Quote

Reply

Tags
boundaryconditions, rhocentralfoam


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
[Other] Wedge patch '*' is not planar LilumDaru OpenFOAM Meshing & Mesh Conversion 7 Today 05:52
[Commercial meshers] Problems with ANSYS mesh conversion tdog OpenFOAM Meshing & Mesh Conversion 1 March 31, 2016 17:36
createPatch Segmentation Fault (CORE DUMPED) sam.ho OpenFOAM Pre-Processing 2 April 21, 2014 02:01
Multicomponent fluid Andrea CFX 2 October 11, 2004 05:12
compressible two phase flow in CFX4.4 youngan CFX 0 July 1, 2003 23:32


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