CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT

Question concerning VOF

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 5, 2007, 07:47
Default Question concerning VOF
  #1
Flora
Guest
 
Posts: n/a
Hallo, I am trying to simulate a 3D case in which two phase(water and air)are counter-current, namely they come into the calculation region in counter directions. What I am interested in are the free surface between the two phase. In my case the thickness of water is very thin, hereby surface tension can not be ingored and the grid should be very fine. On the other hand, in order to decrease the calculation time, the length for calculation is not enough. That means I'd like to induce a full-developed friction between the two phases to observe the influence of the friction. Now I am wondering whether i can induce the friction into VOF model? I have tried it as a momentum source in UDF but failed. Could somebody help me to check it?

# include "udf.h"

# define rho_g 1.225 # define rho_l 997.

# define Min_VOF 1.e-06 # define Max_VOF 0.999999

# define friction 0.44 # define d 0.001

DEFINE_SOURCE(x_Momentom_source,c,t,ds,eqn) {

real x[ND_ND];

real source,con;

real wvof;

real area,rho;

Thread **pt=THREAD_SUB_THREAD(t,1);

source =0.0;

C_CENTROID(x,c,t);

wvof = C_VOF(c,pt[1]);

if ((wvof>Min_VOF)&&(wvof<Max_VOF))

{

area = C_VOF(c,pt[1])*(1-C_VOF(c,pt[1]))/d;

rho = rho_g*(1-C_VOF(c,pt[1]))+rho_l*C_VOF(c,pt[1]);

con = friction*rho*area;

source = -con * fabs(C_U(c,t))*C_U(c,t);

ds[eqn] = -2.*con*fabs(C_U(c,t));

}

else

ds[eqn]=0.0;

return source;

}

/*I adopt C_U(c,t) to substitute slip velocity between the two phase, it is right?*/

Best regards Flora
  Reply With Quote

Old   July 8, 2007, 06:29
Default Re: Question concerning VOF
  #2
Flora
Guest
 
Posts: n/a
Is there anybody who is familar to VOF model? Thanks a lot
  Reply With Quote

Old   July 9, 2007, 09:50
Default Re: Question concerning VOF
  #3
Flora
Guest
 
Posts: n/a
Please discuss it with me. I am puzzled! Thank you very much!
  Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
about VOF and evaporation mengyue1 FLUENT 5 April 7, 2015 19:08
Question:Considerations about the evaporation in VOF dokeun FLUENT 10 February 24, 2011 20:47
Fluid - void VOF ic2010 OpenFOAM 0 April 26, 2010 04:23
vof + hydrostatic pressure ariorus FLUENT 0 August 7, 2009 10:57
One Question on VOF Model Colin FLUENT 2 October 24, 2004 09:38


All times are GMT -4. The time now is 11:06.