|
[Sponsors] |
October 11, 2013, 19:15 |
OpenFoam vs Fluent
|
#1 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Hi All
I have run several test case with OF and Fluent with similar settings. I have found that fluent is more stable , accrue and faster than OF also OF is very sensitive to mesh quality but Fluent not. I hope it is be useful for anyone who like to compare OF with fluent Best Regards |
|
October 12, 2013, 01:47 |
|
#3 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Hi
the equivalent of pimpleFoam, in fluent is PISO. therefore , I have compared pimpleFoam in OF vs PISO in fluent my test cases are, flow around airfoil with flap , cylinder + square, .... setting for both software: grad========> leastSquares (in OF, I should cellLimited for convergency) spatial Discretization ===========> linearUpwind and limitedLiniear for OF and second order Upwind for fluent turbulence =============> kw-SST convergence criteria in each time step =============> 1e-5 in the case of airfoil I have 430,000 element and this mesh is very orthogonal but for reducing cell numbers I have large aspect ratio up to 200 checkMesh Code:
Create polyMesh for time = 0 Time = 0 Mesh stats points: 858672 internal points: 0 faces: 1712256 internal faces: 853584 cells: 427640 faces per cell: 6 boundary patches: 5 point zones: 0 face zones: 0 cell zones: 0 Overall number of cells of each type: hexahedra: 427640 prisms: 0 wedges: 0 pyramids: 0 tet wedges: 0 tetrahedra: 0 polyhedra: 0 Checking topology... Boundary definition OK. Cell to face addressing OK. Point usage OK. Upper triangular ordering OK. Face vertices OK. Number of regions: 1 (OK). Checking patch topology for multiply connected surfaces... Patch Faces Points Surface topology outlet 440 882 ok (non-closed singly connected) inlet 1946 3894 ok (non-closed singly connected) airfoil 840 1682 ok (non-closed singly connected) flap 166 334 ok (non-closed singly connected) frontAndBackPlanes 855280 858672 ok (non-closed singly connected) Checking geometry... Overall domain bounding box (-5.550127737 -5.591641676 -0.2026569752) (11.32561672 5.629220361 0.2026569752) Mesh (non-empty, non-wedge) directions (1 1 0) Mesh (non-empty) directions (1 1 0) All edges aligned with or perpendicular to non-empty directions. Boundary openness (1.17593747628e-16 -2.70071155431e-18 3.75564274317e-19) OK. Max cell openness = 3.09499812379e-14 OK. Max aspect ratio = 32.785960966 OK. Minimum face area = 6.61643707061e-09. Maximum face area = 0.103614464857. Face area magnitudes OK. Min volume = 2.68173424667e-09. Max volume = 0.0170019640072. Total volume = 69.3839936096. Cell volumes OK. Mesh non-orthogonality Max: 39.555341894 average: 7.02685898042 Non-orthogonality check OK. Face pyramids OK. Max skewness = 0.729335018151 OK. Coupled point location match (average 0) OK. Mesh OK. also the OF results is not smooth as Fluent |
|
October 14, 2013, 16:25 |
|
#4 |
Senior Member
Joachim Herb
Join Date: Sep 2010
Posts: 650
Rep Power: 22 |
Could you please post your fvSchemes and fvSolution files for your OpenFOAM setup.
|
|
October 14, 2013, 17:22 |
|
#5 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Code:
ddtSchemes { default Euler; } gradSchemes { default leastSquares ; } divSchemes { default none; div(phi,U) Gauss linearUpwind grad(U) div(phi,k) Gauss limitedLinear 1 div(phi,omega) Gauss limitedLinear 1; div((nuEff*dev(T(grad(U))))) Gauss linear; } laplacianSchemes { default Gauss linear corrected; } interpolationSchemes { default linear; } snGradSchemes { default corrected; } Code:
p { solver GAMG; tolerance 1e-6; relTol .0001; smoother GaussSeidel; nPreSweeps 0; nPostSweeps 2; cacheAgglomeration true; // directSolveCoarsest true; agglomerator faceAreaPair; nCellsInCoarsestLevel 20; mergeLevels 1; minIter 1; } pFinal { solver GAMG; tolerance 1e-6; relTol 0; smoother GaussSeidel; nPreSweeps 0; nPostSweeps 2; cacheAgglomeration true; agglomerator faceAreaPair; nCellsInCoarsestLevel 20; mergeLevels 1; minIter 1; } "(U|k|omega)" { solver PBiCG; preconditioner DILU; tolerance 1e-6; relTol 0.0001; nSweeps 1; minIter 1; } "(UFinal|kFinal|omegaFinal)" { solver PBiCG; preconditioner DILU; tolerance 1e-6; relTol 0.0; nSweeps 1; minIter 1; } } PIMPLE { nOuterCorrectors 5; nCorrectors 2; nNonOrthogonalCorrectors 4; } |
|
October 14, 2013, 18:49 |
|
#6 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
I have found that the main deficiency of openfoam is that it is very sensitive to mesh quality.
if I divide the mesh quality to very good, good , medium,bad ,very bad then the OF and Fluent have the same performance on the very good meshes. OF performance on the good meshes is lower than FLUENT and it can not handle other meshes. FLUENT can handle medium and bad meshes very well. Best Regards Yasser Last edited by mechy; October 15, 2013 at 03:24. |
|
October 15, 2013, 02:05 |
|
#7 |
Member
Dr. B T KANNAN
Join Date: Jul 2011
Location: CHENNAI (MADRAS), INDIA
Posts: 55
Rep Power: 15 |
Dear Yasser,
OpenFOAM is an open-source CFD tool -- you could optimize for your needs. I found lot of advantages in OpenFOAM while post processing my simulation data. in particular --> Tensorial operations. -- KANNAN Last edited by skyinventorbt; October 15, 2013 at 02:06. Reason: Improved comment |
|
October 15, 2013, 03:45 |
|
#8 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Hi
I agree with you that OF is a good Open Source code I hope in the future OF remove its dependency to meshes and it become a very powerful software. the current deficiency is a big problem. in the complex geometries we can not create a very good mesh Best Regards Yasser |
|
October 15, 2013, 06:18 |
|
#9 |
Senior Member
Olivier
Join Date: Jun 2009
Location: France, grenoble
Posts: 272
Rep Power: 18 |
hello,
I may disagree with you mechy, but your post is not "useful for anyone who like to compare OF with fluent", since a lot of things are missing. If you want to add usefull info, add your full OF case and Fluent case. Because you don"t give your BC setting for OF, neither Fluent setting, initialization method, etc ... regards, olivier |
|
October 15, 2013, 06:26 |
|
#10 |
Senior Member
|
||
October 15, 2013, 07:42 |
|
#11 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Olivier
in post reply number 3 and 5 you can find setting for OF and FLUENT for OF my fvScheme and fvSolution are added to post reply5 ; the BC are as follow | OF | FLUENT ------------------------------------------- inlet | fixedValue | velocityInlet outlet | inletOutlet | | or zeroGradient | pressureOutlet to Elvis please see my fvScheme , it is equal to recommended setting by JASAK also I check Gauss for Grad but nothing changed. |
|
October 15, 2013, 09:17 |
|
#12 |
Senior Member
Olivier
Join Date: Jun 2009
Location: France, grenoble
Posts: 272
Rep Power: 18 |
hello,
This is better, not perfect: - Did you use hybrid initialisation in Fluent ? - initial value in OF ? - about CFL: (i didn't see your controlDict by the way .... upload the full case again) if Fluent use 10x bigger time step, this is probably not Euler fort the temporal discretisation ... - what maxCo do you use ? - residus are not the same in OF / Fluent: did you use another convergence criterious, like Cp/ Cl convergence , which is more valid ? - in your fvsolution, p tolerance should be smaller - you say you follow the LASAK rules, but use nNonOrthogonalCorrectors=4: you should use 0 in your case. - you use "zeroGradient" for pressus outlet, while Fluent use "pressurOutlet" : this is _not_ the same BC at all. In your case, the chord length seem to be really too small for a zeroGradient BC (if you look in this forum, you willl see good result with 20 to 40, and use other BC like freestreamPressure and cie.) This is some critics (in the constructive way) i can make, and i am not an expert here. I use OF and Fluent almost every day, and i disagree with your first post. Sometime, Fluent are faster, sometime this is OF. same for accuracy. So in short, try to improve your settings ... this take time (a real difference with Fluent), and we can share info about this ... best regards, olivier |
|
October 15, 2013, 09:30 |
|
#13 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
HI oliver
in both software the initial velocity and pressure is zero and initial k and omega is inlet conditions. in both software I use constant deltaT=5e-5 for airfoil I use a very good mesh and a good mesh in both mesh fluent give the same result but on good mesh the OF convergence is very slow. fvSolution with current p tolerance is sufficient on very good mesh and it give the fluent results also if I use nNonOrthogonalCorrectors=0 the solution convergence become slower |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Other] OpenFoam Mesh to Fluent Mesh, 2D | lordvon | ANSYS Meshing & Geometry | 1 | January 14, 2022 13:20 |
[Commercial meshers] Conversion Fluent cas and dat file to OpenFoam | matteo_gautero | OpenFOAM Meshing & Mesh Conversion | 11 | July 14, 2020 13:09 |
problem in using parallel process in fluent 14 | aydinkabir88 | FLUENT | 1 | July 10, 2013 03:00 |
FLUENT or OpenFoam for Particle-surface intercation simulation? | Amir1 | Main CFD Forum | 0 | May 10, 2013 18:15 |
OpenFoam to Fluent data conversion Problem | vemps | OpenFOAM | 1 | August 8, 2011 03:30 |