Post reply

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: william
« on: February 11, 2012, 01:57:53 PM »

While modeling heterogeneous mass and heat transfer using the VOF model, it is often required to define a mass transfer coefficient only in cells that contain the interface.
For a simple two phase model, it is easy to locate cells on the interface by looking at the phase fraction value. The phase fraction will be either zero or one inside the individual phases but will have intermediate values in cells on interface

Hence, the DEFINE_MASS_TRANSFER udf macro can use a test like the following to locate cells that contain the interface:

vof_cutoff = 0.05;
if ( (C_VOF(c,t) > vof_cutoff ) && (C_VOF(c,t) < (1 - vof_cutoff) )
{ < cell is on the interface> }
else
{ < cell is inside a phase> }

The DEFINE_MASS_TRANSFER macro is described in the UDF Manual:

http://hpce.iitm.ac.in/website/Manuals/Fluent_6.3/fluent6.3/help/html/udf/node57.htm
Posted by: pitney1
« on: February 11, 2012, 01:54:52 PM »

Hi,

How do I identify the cells at the interface for heat and mass transfer at the interface in VOF model in fluent? Can any one help here?

Thanks.