|
[Sponsors] |
rhoCentralFoam boundary issues with custom local time stepping |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
February 20, 2012, 11:15 |
rhoCentralFoam boundary issues with custom local time stepping
|
#1 |
Member
Laurens Van Dyck
Join Date: Jul 2011
Location: Netherlands/Germany
Posts: 34
Rep Power: 15 |
I have an axisymmetric problem which I am simulating with rhoCentralFoam and a k-Omega-SST turbulence model. At my outlet I have anomalies (see an example of the pressure distribution in the image below).
The reason for these anomalies is related to me using a local time stepping method which I got from this forum (http://www.cfd-online.com/Forums/ope...ntralfoam.html). I dont have the anomalies in the original code without the local time stepping. Now, I would still like to have the local time stepping since I am only interested in the steady state solution and my calculations take way too long otherwise. Can anyone suggest some changes to get rid of these numerical errors? My patches are defined as follows (not mentioning my model patches): Code:
patch: frontAndBack all wedge patch: symmetryLine all zeroGradient patch: outlet scalar k inletOutlet scalar alphat calculated scalar p fixedValue scalar T fixedValue scalar mut calculated scalar omega inletOutlet vector U zeroGradient patch: atmosphere scalar k fixedValue scalar alphat calculated scalar p slip scalar T zeroGradient scalar mut calculated scalar omega fixedValue vector U slip patch: inlet scalar k fixedValue scalar alphat calculated scalar p zeroGradient scalar T zeroGradient scalar mut calculated scalar omega fixedValue vector U fixedValue Code:
solvers { "(rho|rhoU|rhoE)" { solver diagonal; } U { solver smoothSolver; smoother GaussSeidel; nSweeps 2; tolerance 1e-12; relTol 0; } "(e|omega|k|R|epsilon|h)" { $U; tolerance 1e-10; relTol 0; } p { solver GAMG; tolerance 1e-08; relTol 0.01; smoother GaussSeidel; cacheAgglomeration off; nCellsInCoarsestLevel 20; agglomerator faceAreaPair; mergeLevels 1; } } Code:
fluxScheme Tadmor; ddtSchemes { default localEuler rDeltaT; } gradSchemes { default cellLimited leastSquares 1; } divSchemes { default none; div(tauMC) Gauss linear; div(phi,k) Gauss Gamma 1; div(phi,omega) Gauss Gamma 1; } laplacianSchemes { default Gauss linear corrected; } interpolationSchemes { default linear; reconstruct(rho) Gamma 1; reconstruct(U) GammaV 1; reconstruct(T) Gamma 1; } snGradSchemes { default corrected; } fluxRequired { default no; p; } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
High Courant Number @ icoFoam | Artex85 | OpenFOAM Running, Solving & CFD | 11 | February 16, 2017 14:40 |
Water subcooled boiling | Attesz | CFX | 7 | January 5, 2013 04:32 |
Problem with FloatingObject | Leech | OpenFOAM Running, Solving & CFD | 10 | March 29, 2012 16:24 |
RPM in Wind Turbine | Pankaj | CFX | 9 | November 23, 2009 05:05 |
AMG versus ICCG | msrinath80 | OpenFOAM Running, Solving & CFD | 2 | November 7, 2006 16:15 |