CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM (https://www.cfd-online.com/Forums/openfoam/)
-   -   interFoam and Continuous-Species-Transfer (CST) method (https://www.cfd-online.com/Forums/openfoam/87965-interfoam-continuous-species-transfer-cst-method.html)

kel85uk May 4, 2011 05:22

interFoam and Continuous-Species-Transfer (CST) method
 
1 Attachment(s)
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 Diffusion_cell, and gamma_diff variables are of the volScalarField type. I tried a simple cube test case with no flow velocity imposed, but the run was unsuccessful. Also, I noticed that the value of grad(alpha1) is not 0 inside the phases, which cannot be correct.

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

cqworm May 10, 2011 03:59

I am doing the same work.
If possible you could email me for more convenient exchange ideas.

Looking for more professional ones posting here...

hfsf December 22, 2012 19:05

Jump conditions in interFoam
 
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


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