|
[Sponsors] |
interFoam and Continuous-Species-Transfer (CST) method |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 4, 2011, 06:22 |
interFoam and Continuous-Species-Transfer (CST) method
|
#1 |
New Member
Kelvin Loh
Join Date: Mar 2009
Posts: 25
Rep Power: 17 |
Hi all,
I need some help in determining if I am on the right track to implement the jump conditions for species concentration across the air-water interface for a bubble. The base solver I am using is interFoam without AMR/MRF functions. I thought of keeping it simple first before adding more functionality. Code:
forAll(Diffusion_cell,cID) { Diffusion_cell[cID]=D_spec_liq.value()*D_spec_gas.value()/(D_spec_gas.value()*alpha1[cID] + D_spec_liq.value()*(1.0 - alpha1[cID])); } turbulence->correct(); forAll(gamma_diff,cIID) { gamma_diff[cIID] = -Diffusion_cell[cIID]*(1-He)*C[cIID]/(alpha1[cIID] + He*(1.0 - alpha1[cIID])); } solve(fvm::ddt(C) + fvc::div(phi,C) - fvc::laplacian(Diffusion_cell,C) == fvc::laplacian(gamma_diff,alpha1)); The equations are based on one of the references (Haroun et al, 2008) in Holger Marschall's 5th OpenFOAM workshop abstract of the same case. http://www.tfd.chalmers.se/~hani/OFW5/timeSchedule_workshop_online-filer/Abstract_final/HolgerMarschallAbstractOFW5.pdf Any hints/help whatsoever is much appreciated. Thank you. Regards, kel85uk |
|
May 10, 2011, 04:59 |
|
#2 |
New Member
tiantian
Join Date: Sep 2010
Posts: 1
Rep Power: 0 |
I am doing the same work.
If possible you could email me for more convenient exchange ideas. Looking for more professional ones posting here... |
|
December 22, 2012, 20:05 |
Jump conditions in interFoam
|
#3 |
Member
Hanniel Freitas
Join Date: Jan 2012
Location: Natal, Brazil
Posts: 34
Rep Power: 14 |
Guys, i've strumbled upon the same question. Recently I've got some help in a post that could be very useful: http://www.cfd-online.com/Forums/openfoam/109477-equilibrium-thru-interface.html
In that post the user nimasan described and alternative approach to use the jump conditions within the VOF approach, with some interesting reference background. Best, hfsf |
|
|
|