|
[Sponsors] |
Energy equation tends to diverge in external aerodynamic problem |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
June 19, 2024, 11:43 |
Energy equation tends to diverge in external aerodynamic problem
|
#1 |
New Member
Vadim Mikhailov
Join Date: Nov 2023
Posts: 8
Rep Power: 2 |
Hello everyone! Im trying to solve external aerodynamics problem using rhoPimpleFoam solver with pseudo time-stepping by localEuler ddt scheme.
Im trying to reproduce some results from this thesis https://ubibliorum.ubi.pt/handle/10400.6/13027 (i use all boundary conditions from there except fixedValue for T field, i use zeroGradient). The problem is: residual of energy equation from my simulation always tends to diverge (even with most robust Gauss upwind scheme). Now Im triyng only supersonic speed (1.2 Mach number) Can anybody give me advise how to solve my issue? My fvSchemes dict: Code:
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 9 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { format ascii; class dictionary; object fvSchemes; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ddtSchemes { default localEuler; } gradSchemes { default cellMDLimited Gauss linear 0.5; limited cellMDLimited Gauss linear 0.333; grad(U) $limited; grad(k) $limited; grad(omega) $limited; } divSchemes { default none; div(phi,U) bounded Gauss linearUpwind grad(U); turbulence bounded Gauss upwind; energy bounded Gauss upwind; // energy bounded Gauss linearUpwind limited; div(phi,k) $turbulence; div(phi,omega) $turbulence; div(phi,e) $energy; div(phi,K) $energy; div(phid,p) Gauss upwind; div(phi,(p|rho)) bounded Gauss upwind; div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear; } laplacianSchemes { default Gauss linear limited 1.0; } interpolationSchemes { default linear; } snGradSchemes { default limited 1.0; } wallDist { method meshWave; } // ************************************************************************* // Code:
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 9 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { format ascii; class dictionary; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { "rho.*" { solver diagonal; } "p.*" { solver PBiCGStab; preconditioner DILU; tolerance 1e-12; relTol 0; } "(U|k|omega|e).*" { $p tolerance 1e-10; } } PIMPLE { nOuterCorrectors 1; nCorrectors 3; nNonOrthogonalCorrectors 1; turbOnFinalIterOnly false; transonic yes; maxCo 0.5; rDeltaTSmoothingCoeff 0.001; rDeltaTDampingCoeff 0.5; } // ************************************************************************* // ATTACH]100402[/ATTACH] mesh.jpg energy_divergence.png |
|
Tags |
energy convergence, rhopimplefoam, supersonic external flow |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Energy equation - where is the turbulent kinetic energy? | usv001 | OpenFOAM Programming & Development | 1 | January 25, 2022 16:04 |
Problem with energy equation | L.Gordo | FLUENT | 2 | August 30, 2018 06:02 |
Domain Reference Pressure and mass flow inlet boundary | AdidaKK | CFX | 75 | August 20, 2018 06:37 |
Energy equation convergence problem | Reza | Main CFD Forum | 0 | August 27, 2003 14:09 |
Why FVM for high-Re flows? | Zhong Lei | Main CFD Forum | 23 | May 14, 1999 14:22 |