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

Particle interaction in twoPhaseEulerFoam

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 4, 2011, 14:38
Default Particle interaction in twoPhaseEulerFoam
  #1
New Member
 
Christos Altantzis
Join Date: Nov 2011
Location: Boston, Massachusetts
Posts: 3
Rep Power: 14
caltantz is on a distinguished road
Hello everyone,

Although I have been following the forum for some time, this is my first post.

I have very recently switched my interest from combustion to multiphase flows. I intend to study dense particle-gas flows (fluidized bed gasifiers) and I am interested in open source software to do it.

I came across the twoPhaseEulerFoam solver but unfortunately my C++ knowledge is still very limited and I have some questions concerning it.

From what I have understood by following the code itself and the forum, the solver uses two approaches to describe the particle interactions, the powder modulus approach and the kinetic theory of granular flows approach.

I) Concerning the powder modulus, if I am not wrong, the code uses the ppProperties to calculate the solids pressure. How are the solids shear stresses taken into account, if at all?

II) When using the ppProperties, the alphaMax criterion is not fulfilled even if the packing limiter is employed (parameters taken from Bouilard et al., AIChe 1989). Has anybody experienced this problem before?

III) The same problem occurs when I use the KTGF for the more detailed description of the particle collisions. The solution to this problem would be to use an extremely small time step? (The simulations conducted up to now employ dt=10^-6). Are there any other possible solutions? Am I doing something wrong?

I am using the version 2.0.1 and I try to simulate toy problems without employing turbulence modeling.

Thank you very much
caltantz is offline   Reply With Quote

Old   November 5, 2011, 13:25
Default
  #2
Senior Member
 
Alberto Passalacqua
Join Date: Mar 2009
Location: Ames, Iowa, United States
Posts: 1,912
Rep Power: 36
alberto will become famous soon enoughalberto will become famous soon enough
Quote:
Originally Posted by caltantz View Post
I) Concerning the powder modulus, if I am not wrong, the code uses the ppProperties to calculate the solids pressure. How are the solids shear stresses taken into account, if at all?
You can specify a constant viscosity. There is no other effect accounted for in that model (See the literature. For example the first works of Gidaspow).

Quote:
II) When using the ppProperties, the alphaMax criterion is not fulfilled even if the packing limiter is employed (parameters taken from Bouilard et al., AIChe 1989). Has anybody experienced this problem before?
Yes, that is correct. The model does not specify a strict maximum packing, so the phase might pass the packing.

Quote:
III) The same problem occurs when I use the KTGF for the more detailed description of the particle collisions. The solution to this problem would be to use an extremely small time step? (The simulations conducted up to now employ dt=10^-6). Are there any other possible solutions? Am I doing something wrong?
This is a problem in the code and how the particle pressure is managed (explicitly) in the implementation of the kinetic theory. I did some work on the topic (Warning: maketing my own stuff! :-)) http://www.sciencedirect.com/science...32591011003652

Best,
__________________
Alberto Passalacqua

GeekoCFD - A free distribution based on openSUSE 64 bit with CFD tools, including OpenFOAM. Available as in both physical and virtual formats (current status: http://albertopassalacqua.com/?p=1541)
OpenQBMM - An open-source implementation of quadrature-based moment methods.

To obtain more accurate answers, please specify the version of OpenFOAM you are using.

Last edited by alberto; November 5, 2011 at 13:26. Reason: Added [quote]
alberto is offline   Reply With Quote

Old   November 5, 2011, 14:04
Default
  #3
New Member
 
Christos Altantzis
Join Date: Nov 2011
Location: Boston, Massachusetts
Posts: 3
Rep Power: 14
caltantz is on a distinguished road
Hi Alberto,

Thank you very much for your fast and to the point response.

I will study your paper and the code in detail in order to understand the problem thoroughly. I will try to implement your ideas myself.

I am currently trying to find an appropriate tool for simulating fluidized bed gasifiers and I started from open source software since I am much more favorable to them. I will try as much as possible not to work with commercial codes.

Can I ask you another question. I saw in your paper that you have some experience with MFIX. What is your opinion about this tool?

All the Best,

Christos
caltantz is offline   Reply With Quote

Old   November 5, 2011, 16:07
Default
  #4
Senior Member
 
Alberto Passalacqua
Join Date: Mar 2009
Location: Ames, Iowa, United States
Posts: 1,912
Rep Power: 36
alberto will become famous soon enoughalberto will become famous soon enough
Quote:
Originally Posted by caltantz View Post
Can I ask you another question. I saw in your paper that you have some experience with MFIX. What is your opinion about this tool?
MFIX has many models for gas-particle flows, some very recent, since it is used as research code. The features of the code are documented, and it is quite easy to use.

In my opinion, the major limitation is the capability of dealing with complex geometries. However, in recent releases the cut-cell technique was implemented to try to overcome this problem.

Best,
__________________
Alberto Passalacqua

GeekoCFD - A free distribution based on openSUSE 64 bit with CFD tools, including OpenFOAM. Available as in both physical and virtual formats (current status: http://albertopassalacqua.com/?p=1541)
OpenQBMM - An open-source implementation of quadrature-based moment methods.

To obtain more accurate answers, please specify the version of OpenFOAM you are using.
alberto is offline   Reply With Quote

Old   November 5, 2011, 16:37
Default
  #5
New Member
 
Christos Altantzis
Join Date: Nov 2011
Location: Boston, Massachusetts
Posts: 3
Rep Power: 14
caltantz is on a distinguished road
Thanks for the information Alberto.

All the Best,

Christos
caltantz is offline   Reply With Quote

Old   August 3, 2014, 05:25
Default
  #6
New Member
 
sd
Join Date: May 2014
Posts: 14
Rep Power: 11
OvGU is on a distinguished road
Quote:
Originally Posted by caltantz View Post
Hello everyone,

Although I have been following the forum for some time, this is my first post.

I have very recently switched my interest from combustion to multiphase flows. I intend to study dense particle-gas flows (fluidized bed gasifiers) and I am interested in open source software to do it.

I came across the twoPhaseEulerFoam solver but unfortunately my C++ knowledge is still very limited and I have some questions concerning it.

From what I have understood by following the code itself and the forum, the solver uses two approaches to describe the particle interactions, the powder modulus approach and the kinetic theory of granular flows approach.

I) Concerning the powder modulus, if I am not wrong, the code uses the ppProperties to calculate the solids pressure. How are the solids shear stresses taken into account, if at all?

II) When using the ppProperties, the alphaMax criterion is not fulfilled even if the packing limiter is employed (parameters taken from Bouilard et al., AIChe 1989). Has anybody experienced this problem before?

III) The same problem occurs when I use the KTGF for the more detailed description of the particle collisions. The solution to this problem would be to use an extremely small time step? (The simulations conducted up to now employ dt=10^-6). Are there any other possible solutions? Am I doing something wrong?

I am using the version 2.0.1 and I try to simulate toy problems without employing turbulence modeling.

Thank you very much
Hi caltantz
I think I can get some idea that Im struggling last few days. Actually I am trying to simulate euler model for a gas-solid particles. At the 1st time, only passing through Air but Secondly with combustion reactions.

for the first case I can use twoPhaseEuler but for the second case twoPhaseEuler doesn't work because of reactions. can you give some idea which solver or how I can fix this problem?
OvGU is offline   Reply With Quote

Old   August 3, 2014, 05:28
Default
  #7
New Member
 
sd
Join Date: May 2014
Posts: 14
Rep Power: 11
OvGU is on a distinguished road
Quote:
Originally Posted by alberto View Post
MFIX has many models for gas-particle flows, some very recent, since it is used as research code. The features of the code are documented, and it is quite easy to use.

In my opinion, the major limitation is the capability of dealing with complex geometries. However, in recent releases the cut-cell technique was implemented to try to overcome this problem.

Best,
Hi Alberto
I think I can get some idea that Im struggling last few days. Actually I am trying to simulate euler model for a gas-solid particles. At the 1st time, only passing through Air but Secondly with combustion reactions.

for the first case I can use twoPhaseEuler but for the second case twoPhaseEuler doesn't work because of reactions. can you give some idea which solver or how I can fix this problem? I have solution in fluent but can't understand how to forward in OpenFoam with this 2 conditions.
OvGU is offline   Reply With Quote

Reply

Tags
gas-particle flows, twophaseeulerfoam


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
Transient analysis of particle flow with Fluid-Structure Interaction (FSI) Julian K. STAR-CCM+ 2 October 11, 2011 10:19
Transient analysis of particle flow with Fluid-Structure Interaction (FSI) Julian K. CFX 2 September 15, 2011 15:30
Transient analysis of particle flow with Fluid-Structure Interaction (FSI) Julian K. FLUENT 0 September 14, 2011 15:40
DPM UDF particle position using the macro P_POS(p)[i] dm2747 FLUENT 0 April 17, 2009 01:29
interaction time between particle and eddies Steve FLUENT 0 April 10, 2001 18:17


All times are GMT -4. The time now is 08:20.