|
[Sponsors] | |||||
Is lift force included by default in mppiccloud? |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|
|
#1 |
|
New Member
Is Av
Join Date: Dec 2024
Posts: 9
Rep Power: 3 ![]() |
Hello, this must be something very simple but I am lost reading the api description, the question is, is the LiftForce included by default in the particleForces for mppiccloud? I am using of12. I checked the tutorials and all of them include at the most drag and gravity. Thanks a lot.
|
|
|
|
|
|
|
|
|
#2 |
|
New Member
Is Av
Join Date: Dec 2024
Posts: 9
Rep Power: 3 ![]() |
Ok there is no default lift force, I followed some other posts, and arrived to these dictionaries modifications in cloudProperties:
Code:
interpolationSchemes
{
rho.air cell;
U.air cellPointWallModified;
mu.air cell;
alpha.air cell;
curlUcDt cell; //<- this
}
Code:
particleForces
{
ErgunWenYuDrag
{
alphac alpha.air;
}
gravity;
//this ->
SaffmanMeiLiftForce
{
U U.air;
}
}
Code:
--> FOAM FATAL ERROR: Carrier phase curlUc interpolation object not set Thanks a lot |
|
|
|
|
|
|
|
|
#3 |
|
Member
Utkan Caliskan
Join Date: Aug 2014
Posts: 43
Rep Power: 13 ![]() |
You probably need to define curlUc instead of curlUcDt in interpolationSchemes.
|
|
|
|
|
|
|
|
|
#4 |
|
New Member
Is Av
Join Date: Dec 2024
Posts: 9
Rep Power: 3 ![]() |
||
|
|
|
|
|
|
|
#5 |
|
New Member
Is Av
Join Date: Dec 2024
Posts: 9
Rep Power: 3 ![]() |
Ok I am going back may be, there is a LiftForce that calculates (from LiftForce.C):
Code:
forceSuSp value(Zero, 0.0); const vector curlUc = curlUcInterp().interpolate ( p.coordinates(), p.currentTetIndices(td.mesh) ); scalar Cl = this->Cl(p, td, curlUc, Re, muc); value.Su() = mass/p.rho()*td.rhoc()*Cl*((td.Uc() - p.U())^curlUc) Code:
Foam::scalar Foam::LiftForce<CloudType>::LiftForce::Cl ( const typename CloudType::parcelType& p, const typename CloudType::parcelType::trackingData& td, const vector& curlUc, const scalar Re, const scalar muc ) const { // dummy return 0.0; } |
|
|
|
|
|
|
|
|
#6 |
|
New Member
Is Av
Join Date: Dec 2024
Posts: 9
Rep Power: 3 ![]() |
For the record, it works with collidingCloud, that's enough for me.
|
|
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| increase the lift force for wind turbine blade | dipaksutradhar | OpenFOAM Running, Solving & CFD | 0 | January 28, 2015 16:14 |
| Saffman/ Lift Force in Pipe | Ruonin | Main CFD Forum | 0 | August 9, 2013 11:34 |
| The lift force coefficient in bubbly flow | Kai Yan | Main CFD Forum | 1 | November 4, 2008 14:54 |
| Urgently Need the code of Lift force and VM force | Kai Yan | Main CFD Forum | 0 | July 16, 2008 08:07 |
| Saffman Lift Force | CFD MAN | Main CFD Forum | 0 | November 26, 2002 19:26 |