CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

phase-fraction equation in multiphase model

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 23, 2017, 04:11
Default phase-fraction equation in multiphase model
  #1
zzj
New Member
 
zhengzongji
Join Date: Feb 2017
Posts: 9
Rep Power: 9
zzj is on a distinguished road
hi, Dear foamers

I have just learned phase-fraction equation in two-phase model
It is ez to understand: ∂(alpha)+∇·(U·alpha) = 0

but when it turns to multiphase model, I can hardly figure out what the equation will change into.

Could anybody gives me some suggestions or gives some links related to this?

thanks

zzj
zzj is offline   Reply With Quote

Old   March 23, 2017, 11:41
Default
  #2
Member
 
Declan
Join Date: Oct 2016
Location: Ireland
Posts: 40
Rep Power: 9
decah is on a distinguished road
I think it is the same for each of the i phases:
∂(alpha_i)+∇·(U·alpha_i) = 0
decah is offline   Reply With Quote

Old   March 24, 2017, 04:00
Default
  #3
Member
 
Ricky
Join Date: Jul 2014
Location: Germany
Posts: 78
Rep Power: 11
kera is on a distinguished road
Quote:
Originally Posted by zzj View Post
hi, Dear foamers

I have just learned phase-fraction equation in two-phase model
It is ez to understand: ∂(alpha)+∇·(U·alpha) = 0

but when it turns to multiphase model, I can hardly figure out what the equation will change into.

Could anybody gives me some suggestions or gives some links related to this?

thanks

zzj
you can refer to Chapter 4 of Dr. Henrik Rusche's Thesis on Computational Fluid Dynamics of Dispersed Two-Phase Flows at High Phase Fractions
__________________
If it is easy, then something is fishy!
kera is offline   Reply With Quote

Old   March 27, 2017, 02:17
Default
  #4
zzj
New Member
 
zhengzongji
Join Date: Feb 2017
Posts: 9
Rep Power: 9
zzj is on a distinguished road
Quote:
Originally Posted by decah View Post
I think it is the same for each of the i phases:
∂(alpha_i)+∇·(U·alpha_i) = 0

Dear decah,thanks for your replying.

In fact,the code shows that in multiphase mixture model we need to solve a variable named "alphaPhiCorr".

but "alphaPhiCorr" need all the phases to solve.
(It means we can not solve fraction equation phase by phase)

And the fraction equation is:
∂(alpha)+∇·(alphaPhiCorr) = 0.(I get the equation from multiphaseMixture.c)

MULES::limit
(
1.0/mesh_.time().deltaT().value(),
geometricOneField(),
alpha,
phi_,
alphaPhiCorr,
zeroField(),
zeroField(),
1,
0,
true
);

And alphaPhiCorr is solved by each phase,following is the code:
alphaPhiCorrs.set
(
phasei,
new surfaceScalarField
(
"phi" + alpha.name() + "Corr",
fvc::flux
(
phi_,
alpha,
alphaScheme
)
)
);

surfaceScalarField& alphaPhiCorr = alphaPhiCorrs[phasei];

forAllIter(PtrDictionary<phase>, phases_, iter2)
{
phase& alpha2 = iter2();

if (&alpha2 == &alpha) continue;

surfaceScalarField phir(phic*nHatf(alpha, alpha2));

alphaPhiCorr += fvc::flux
(
-fvc::flux(-phir, alpha2, alpharScheme),
alpha,
alpharScheme
);
}

I do not know what does the alphaPhiCorr mean.

May be a mathematical formula can help easier understanding.

Last edited by zzj; March 27, 2017 at 03:22.
zzj is offline   Reply With Quote

Old   March 27, 2017, 02:22
Default
  #5
zzj
New Member
 
zhengzongji
Join Date: Feb 2017
Posts: 9
Rep Power: 9
zzj is on a distinguished road
Dear kera,thanks for your help.

I am reading the essay.

I will reply after reading.

thanks again.
zzj is offline   Reply With Quote

Old   March 27, 2017, 03:18
Default
  #6
zzj
New Member
 
zhengzongji
Join Date: Feb 2017
Posts: 9
Rep Power: 9
zzj is on a distinguished road
Quote:
Originally Posted by kera View Post
you can refer to Chapter 4 of Dr. Henrik Rusche's Thesis on Computational Fluid Dynamics of Dispersed Two-Phase Flows at High Phase Fractions
Hi,kera

I have finished reading.

Unfortunately,The paper only gives the equation of two phases model,
I can hardly figure out the equation in multiphase model.
zzj is offline   Reply With Quote

Old   April 5, 2017, 04:33
Default
  #7
zzj
New Member
 
zhengzongji
Join Date: Feb 2017
Posts: 9
Rep Power: 9
zzj is on a distinguished road
Finally,I figure out the equations

In fact, Decah's idea is right, we just need to solve each phase.
zzj is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with Temperature and volume fraction diffusion in Lee phase Change Model rapierrz OpenFOAM Programming & Development 3 June 6, 2020 06:49
mass flow in is not equal to mass flow out saii CFX 12 March 19, 2018 05:21
How to access only one phase in multiphase model by UDF wersoe Fluent UDF and Scheme Programming 1 January 4, 2017 07:11
Error in Two phase (condensation) modeling adilsyyed CFX 15 June 24, 2015 19:42
Mixture model Volume fraction equation me12p1006 Main CFD Forum 0 October 1, 2013 05:37


All times are GMT -4. The time now is 19:12.