|
[Sponsors] |
LiquidEvaporation and Particle&Wall Interaction |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
March 3, 2017, 07:23 |
LiquidEvaporation and Particle&Wall Interaction
|
#1 |
New Member
Join Date: Jul 2016
Posts: 14
Rep Power: 10 |
hi foamers,
I am currently working on the LiquidEvaporation files, and trying to add the " if droplets hit the wall, droplets will evaporate" into the code. In the LiquidEvaporation, it check that if the droplets reaches the critical condition, droplets will immediately evaporate. The relevant code is below, if ((liquids_.Tc(X) - T) < SMALL) { if (debug) { WarningInFunction << "Parcel reached critical conditions: " << "evaporating all avaliable mass" << endl; } forAll(activeLiquids_, i) { const label lid = liqToLiqMap_[i]; dMassPC[lid] = GREAT; } return; } I think the code that I need should be pretty similar. But after searching for a while, i am still not clear how the particle&wall interaction can be called/used in the LiquidEvaporation file. Anyone could give any idea, suggestions? would be really appreciated. Best Wishes, Li |
|
March 6, 2017, 10:02 |
|
#2 |
New Member
Join Date: Jul 2016
Posts: 14
Rep Power: 10 |
Anyone could give some idea? Thank you.
|
|
|
|