|
[Sponsors] |
About the dimension of Saffman-Mei particle lift force model |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 21, 2013, 09:27 |
About the dimension of Saffman-Mei particle lift force model
|
#1 |
Senior Member
Join Date: Dec 2011
Posts: 111
Rep Power: 19 |
I'm working with flows with discrete, Lagrangian, particles in OpenFOAM. In the latest 2.2-release of OF, there is a particle lift force model, i.e. cross-stream forces on particles from velocity gradients.
However, I am slightly unsure if the implemented force model can be correct. I have not yet filed a bug report on it, in case my interpretation of the code is wrong. The piece of code I am looking at is found in src/lagrangian/intermediate/submodels/Kinematic/ParticleForces/Lift/LiftForce/LiftForce.C, line 144: Code:
value.Su() = mass/p.rho()*p.d()/2.0*p.rhoc()*Cl*((p.Uc() - p.U())^curlUc); The "correct" behaviour can for example be seen in src/lagrangian/intermediate/submodels/Kinematic/ParticleForces/Gravity/GravityForce.C: Code:
value.Su() = mass*g_*(1.0 - p.rhoc()/p.rho()); Does any of you have any reasonable explanation on how the expression in LiftForce.C can be correct? Last edited by haakon; April 21, 2013 at 16:18. Reason: Corrected some typos. |
|
April 22, 2013, 13:27 |
|
#2 |
Senior Member
Join Date: Dec 2011
Posts: 111
Rep Power: 19 |
I have now come to the conclusion that it defineatly is a bug in the above mentioned piece of code. The bug is reported here: http://www.openfoam.org/mantisbt/view.php?id=822
For the reference, removing the particle diameter from the expression gives you the correct force. See the bug report above for details. The corrected line of code then become: Code:
value.Su() = mass/p.rho()*p.rhoc()/2*Cl*((p.Uc() - p.U())^curlUc); |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Dpm model, setting particle number | wagnerqb | FLUENT | 7 | March 23, 2013 22:06 |
decreaing pressure force in 2phase model | michaelzhang | FLUENT | 0 | February 26, 2010 09:27 |
DPM UDF particle position using the macro P_POS(p)[i] | dm2747 | FLUENT | 0 | April 17, 2009 02:29 |
model particle movement under magnetic force | phsieh2005 | Main CFD Forum | 8 | March 28, 2007 08:12 |
Saffman Lift Force | CFD MAN | Main CFD Forum | 0 | November 26, 2002 19:26 |