|
[Sponsors] |
Compressible flow issues in rhoCentralFoam solver |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 16, 2017, 18:51 |
Compressible flow issues in rhoCentralFoam solver
|
#1 |
Member
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 10 |
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! |
|
April 16, 2017, 18:54 |
boundary conditions
|
#2 |
Member
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 10 |
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; } } 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; } } Code:
boundaryField { inlet { type fixedValue; value uniform 260; } outlet { type zeroGradient; // value uniform 260; } walls { type slip; } defaultFaces { type empty; } } |
|
April 16, 2017, 18:55 |
fvSchemes and fvSolutions
|
#3 |
Member
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 10 |
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; } 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; } } |
|
April 24, 2017, 00:09 |
|
#4 |
Member
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 10 |
Modified Bcs and it works now.
|
|
May 6, 2017, 05:17 |
|
#5 |
New Member
Xu Yiming
Join Date: Jan 2017
Posts: 11
Rep Power: 9 |
||
May 10, 2017, 18:19 |
|
#6 |
Member
sibo
Join Date: Oct 2016
Location: Chicago
Posts: 55
Rep Power: 10 |
I used totalpressure for pressure. Also pay attention to the grid.
Last edited by sibo; May 11, 2017 at 15:13. |
|
Tags |
airfoil, compressible, rhocentralfoam |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Compressible liquid flow solver | anon_p | CONVERGE | 3 | October 31, 2016 14:37 |
Fluent Adjoint Solver for compressible flow | b.shuvayan | FLUENT | 2 | January 30, 2015 08:27 |
Solver selection of supersonic compressible flow | Leeoo | Main CFD Forum | 4 | December 18, 2014 23:02 |
Some results with a new compressible flow solver | luca_g | OpenFOAM Running, Solving & CFD | 5 | June 30, 2013 11:35 |
Solver for compressible external flow | ryan_m | OpenFOAM Running, Solving & CFD | 3 | April 7, 2008 09:18 |