|
[Sponsors] |
May 25, 2012, 08:50 |
twoPhaseEulerFoam turbulence model
|
#1 |
Senior Member
Gerhard Holzinger
Join Date: Feb 2012
Location: Austria
Posts: 342
Rep Power: 28 |
Hello,
I am trying to find out which equations are under the hood of twoPhaseEulerFoam. Most of them can be found in H. Rusches thesis, which is great because to me C++ source code is not self explanatory in the case of fluid dynamics. I have a question about the turbulence model. In H. Rusches thesis (page 105, eq. 3.14 and 3.15) the k-equation reads as follows (forgive the LaTeX syntax) \frac{\partial k_b}{\partial t} + (U_b \cdot \nabla) k_b - and so on ... but the source code in kEpsilon.H is: Code:
fvm::ddt(beta, k) + fvm::div(phib, k) + and so on ... \frac{\partial \beta k_b}{\partial t} + \nabla \cdot (U_b k_b) - and so on ... The same is also the case for the epsilon equation. Also the right hand side of both equations seem to have been multiplied by beta. Code:
... == beta*G - fvm::Sp(beta*epsilon/k, k) Last edited by GerhardHolzinger; May 25, 2012 at 08:51. Reason: added page and equation numbers |
|
May 25, 2012, 13:12 |
|
#2 | |
New Member
Qingang Xiong
Join Date: May 2012
Location: Ames, IA, USA
Posts: 20
Rep Power: 14 |
Quote:
I also found this difference in twoPhaseEulerFoam. But when I run the code, it seems that no problem. May be you can modify it to standard k-e. Good luck! |
||
October 16, 2012, 03:25 |
|
#3 | |
Senior Member
Dongyue Li
Join Date: Jun 2012
Location: Beijing, China
Posts: 849
Rep Power: 18 |
Quote:
|
||
October 16, 2012, 04:59 |
|
#4 |
Senior Member
Gerhard Holzinger
Join Date: Feb 2012
Location: Austria
Posts: 342
Rep Power: 28 |
Hello,
you can find H. Rusches thesis amongst others at this page: http://www.foamcfd.org/resources/theses.html |
|
October 16, 2012, 05:03 |
|
#5 | |
Senior Member
Dongyue Li
Join Date: Jun 2012
Location: Beijing, China
Posts: 849
Rep Power: 18 |
Quote:
by the way, can u recommend me some papers about twophaseeulerfoam? some of the parameters I dont know the exact mean. |
||
October 16, 2012, 05:25 |
|
#6 |
Senior Member
Gerhard Holzinger
Join Date: Feb 2012
Location: Austria
Posts: 342
Rep Power: 28 |
I haven't really found any research papers dealing with the basics of twoPhaseEulerFoam.
H. Rusches thesis is a good point to start digging into the solver. Also the article about bubbleFoam in the OpenFOAM Wiki helps to understand the solver http://openfoamwiki.net/index.php/BubbleFoam |
|
October 16, 2012, 05:28 |
|
#7 | |
Senior Member
Dongyue Li
Join Date: Jun 2012
Location: Beijing, China
Posts: 849
Rep Power: 18 |
Quote:
|
||
Tags |
turbulence, two-phase, twophaseeulerfoam |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Use of k-epsilon and k-omega Models | Jade M | Main CFD Forum | 40 | January 27, 2023 08:18 |
SimpleFoam case with SpalartAllmaras turbulence model implemented | nedved | OpenFOAM Running, Solving & CFD | 2 | November 30, 2014 23:43 |
Low Reynolds k-epsilon model | YJZ | ANSYS | 1 | August 20, 2010 14:57 |
KOmega Turbulence model from wwwopenFOAMWikinet | philippose | OpenFOAM Running, Solving & CFD | 30 | August 4, 2010 11:26 |
SSG Reynolds Turbulence Model | Georges | CFX | 1 | February 28, 2007 17:15 |