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

k-Epsilon Spurious Outlet

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 18, 2020, 07:45
Default k-Epsilon Spurious Outlet
  #1
Member
 
Tony Zahtila
Join Date: Mar 2016
Posts: 33
Rep Power: 10
tzaht is on a distinguished road
Hi all,


I am trying to simulate a chamber with an outlet, and a mouth inside the chamber. The problem I am having is that I am trying to obtain a steady solution with the SIMPLE method, but my solution is not converging even after 20,000 iterations. Further, the velocity, k and Epsilon field are all kind 'splotchy'. I should further add, that the epsilon field reaches values of ~100, which are higher than the boundary condition I set on it of 0.025.



Setup

In the following three images, the outlet is the solid blue ring.










There are zero-gradient interfaces with the atmosphere, depicted in white.




Lastly, the mouth is the following 'disc'.








U Field:







Epsilon Field:

tzaht is offline   Reply With Quote

Old   November 18, 2020, 07:49
Default
  #2
Member
 
Tony Zahtila
Join Date: Mar 2016
Posts: 33
Rep Power: 10
tzaht is on a distinguished road
My epsilon, k and U files are as follows:

Epsilon

Code:
dimensions      [0 2 -3 0 0 0 0];


internalField   uniform 0.025;

boundaryField
{
    walls
    {
        type            epsilonWallFunction;
        Cmu             0.09;
        kappa           0.41;
        E               9.8;
        value           uniform 0.125;
    }

    inlet
    {
        type            zeroGradient;
    }

    mouth
    {
//      type            zeroGradient;

        type            fixedValue;
        value           $internalField;
    }

    outlet
    {
        type            inletOutlet;
        inletValue      uniform 0.025;
        value           uniform 0.375;
    }

}
k
Code:
 dimensions      [0 2 -2 0 0 0 0];


internalField   uniform 0.00375;

boundaryField
{
    walls
    {
        type            kqRWallFunction;
        value           uniform 0.375;
    }

    inlet
    {
        type            zeroGradient;
    }

    mouth
    {
        type            zeroGradient;
    }

    outlet
    {
        type            zeroGradient;
    }

}
U

Code:
 dimensions      [0 1 -1 0 0 0 0];


internalField   uniform (0 0 0);

boundaryField
{
    walls
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    outlet
    {
        type        flowRateOutletVelocity;
        volumetricFlowRate    0.04; // 50/3600        // Volumetric/mass flow rate [m3/s or kg/s]
        value       uniform (0 0 0); // placeholder
    }

    mouth
    {
        type        flowRateInletVelocity;
        volumetricFlowRate    0.002; // 50/3600        // Volumetric/mass flow rate [m3/s or kg/s]
        value       uniform (0 0 0); // placeholder
    }

    inlet
    {
        type        zeroGradient;
    }

}

 }
p
Code:
dimensions      [0 2 -2 0 0 0 0];


internalField   uniform 0;

boundaryField
{
    walls
    {
        type            zeroGradient;
//      value           0;
    }

    outlet
    {
        type            zeroGradient;
//        value                 0;
    }

    inlet
    {
        type            fixedValue;
        value           uniform      0;
    }

    mouth
    {
        type            zeroGradient;
//        value                 0;
    }



Any advice on the following questions would be appreciated:


a) Whether it is normal to see such a high epsilon value given that it lies outside the boundary value and the remaining boundaries are zero value?


If a) is not normal, any insight to what I might be doing wrong.


Kind regards.

Last edited by tzaht; November 27, 2020 at 00:19.
tzaht is offline   Reply With Quote

Old   November 27, 2020, 00:16
Default
  #3
Member
 
Tony Zahtila
Join Date: Mar 2016
Posts: 33
Rep Power: 10
tzaht is on a distinguished road
Hi all,


I have a further update, and have tried to pose this question as briefly as possible.


I essentially have a chamber, in which there is an outlet whereby I fix the outflow. I also have an inflow from within the domain, where I have annotated 'mouth'. As there is a balance between total mass flux, I have left the 'inlet' as zeroGradient, and so flow should be coming from the outside environment into the chamber to balance the mass (incompressible flow).


In this particular image, I have no turbulence model, but no matter what turbulence model I have, I get these numerical blow-ups occurring near the outlet. I have tried all the various gradient schemes I have seen posted on cfd-online.



Any advice appreciated, as I am struggling to understand what is going wrong and have run out of ideas.







tzaht 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
the value of k and Epsilon is constantly increasing saidc. OpenFOAM Running, Solving & CFD 6 April 23, 2020 22:35
natural convection in square cavity having inlet and outlet sujeet OpenFOAM Running, Solving & CFD 1 November 2, 2019 02:17
A ghost like outlet appears in my model minecraftgp OpenFOAM Running, Solving & CFD 5 August 31, 2018 11:37
twoPhaseEulerFoam bubble column crashes due to problems at outlet region hester OpenFOAM Running, Solving & CFD 4 May 18, 2016 10:20
Pressure Outlet Guage pressure Mohsin FLUENT 36 April 29, 2016 17:16


All times are GMT -4. The time now is 08:47.