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

Compressible flow issues in rhoCentralFoam solver

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By sibo

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 16, 2017, 17:51
Default Compressible flow issues in rhoCentralFoam solver
  #1
Member
 
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 9
sibo is on a distinguished road
Dear All,

I was using rhoCentralFoam solver to calculate the compressible flow around an airfoil. Ma=0.75, T=260K and P=85000.
The simulation looks good at the beginning, the pressure plot at the beginning is posted here.
But since the simulation does not converge, i keep it running and something weird happened here. As shown in the picture, the cells next to the inlet boundary has a very high temperature and pressure. Also, the shock at the airfoil looks more dissipated than before.

Can anybody help me with this? Thanks in advance!
Attached Images
File Type: png begin.png (57.3 KB, 76 views)
File Type: png end1.png (67.7 KB, 56 views)
File Type: png end2.png (40.7 KB, 58 views)
File Type: png end3.png (114.8 KB, 54 views)
febriyan91 likes this.
sibo is offline   Reply With Quote

Old   April 16, 2017, 17:54
Default boundary conditions
  #2
Member
 
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 9
sibo is on a distinguished road
The boundary conditions I am using in this case:
P:
Code:
boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 85418.9;
    }

    outlet
    {
        type            zeroGradient;
       // value           uniform 85418.9;
    }

    walls
    {
        type            slip;
    }

    defaultFaces
    {
        type            empty;
    }
}
U:
Code:
boundaryField
{
    inlet
    {
        type            freestream;
        freestreamValue uniform (241.84 16.84 0);
    }

    outlet
    {
        type            freestream;
        freestreamValue uniform (241.84 16.84 0);
    }

    walls
    {
        type            slip;
        //type            fixedValue;
        //value           uniform (0 0 0);
    }

    defaultFaces
    {
        type            empty;
    }
}
T:
Code:
boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 260;
    }

    outlet
    {
        type            zeroGradient;
       // value           uniform 260;
    }

    walls
    {
        type            slip;
    }

    defaultFaces
    {
        type            empty;
    }
}
sibo is offline   Reply With Quote

Old   April 16, 2017, 17:55
Default fvSchemes and fvSolutions
  #3
Member
 
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 9
sibo is on a distinguished road
fvSchemes:
Code:
fluxScheme      Kurganov;

ddtSchemes
{
    default         Euler;
}

gradSchemes
{
    default         Gauss linear;
}

divSchemes
{
    default         Gauss upwind;
  //  div(phi,nuTilda) Gauss linearUpwind grad(nuTilda);
    div(tauMC)      Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
    reconstruct(rho) Gamma  1.0;
    reconstruct(U)   GammaV 1.0;
    reconstruct(T)   Gamma  1.0;
}

snGradSchemes
{
    default         corrected;
}
fvSolutions:
Code:
solvers
{
    rho
    {
        solver          diagonal;
    }

    rhoU
    {
        solver          diagonal;
    }

    rhoE
    {
        solver          diagonal;
    }

    U
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        nSweeps         2;
        tolerance       1e-09;
        relTol          0.01;
    }

    e
    {
        $U;
        tolerance       1e-08;
        relTol          0.01;
    }
}
sibo is offline   Reply With Quote

Old   April 23, 2017, 23:09
Default
  #4
Member
 
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 9
sibo is on a distinguished road
Modified Bcs and it works now.
sibo is offline   Reply With Quote

Old   May 6, 2017, 04:17
Default
  #5
New Member
 
Xu Yiming
Join Date: Jan 2017
Posts: 11
Rep Power: 9
ousoweak is on a distinguished road
Quote:
Originally Posted by sibo View Post
Modified Bcs and it works now.
hi sibo

Which BC has you changed ,can you post your case here? Thanks~

Yiming
ousoweak is offline   Reply With Quote

Old   May 10, 2017, 17:19
Default
  #6
Member
 
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 9
sibo is on a distinguished road
Quote:
Originally Posted by ousoweak View Post
hi sibo

Which BC has you changed ,can you post your case here? Thanks~

Yiming
I used totalpressure for pressure. Also pay attention to the grid.

Last edited by sibo; May 11, 2017 at 14:13.
sibo is offline   Reply With Quote

Reply

Tags
airfoil, compressible, 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
Compressible liquid flow solver anon_p CONVERGE 3 October 31, 2016 13:37
Fluent Adjoint Solver for compressible flow b.shuvayan FLUENT 2 January 30, 2015 07:27
Solver selection of supersonic compressible flow Leeoo Main CFD Forum 4 December 18, 2014 22:02
Some results with a new compressible flow solver luca_g OpenFOAM Running, Solving & CFD 5 June 30, 2013 10:35
Solver for compressible external flow ryan_m OpenFOAM Running, Solving & CFD 3 April 7, 2008 08:18


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