|
[Sponsors] |
July 5, 2007, 08:47 |
Question concerning VOF
|
#1 |
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 |
|
July 8, 2007, 07:29 |
Re: Question concerning VOF
|
#2 |
Guest
Posts: n/a
|
Is there anybody who is familar to VOF model? Thanks a lot
|
|
July 9, 2007, 10:50 |
Re: Question concerning VOF
|
#3 |
Guest
Posts: n/a
|
Please discuss it with me. I am puzzled! Thank you very much!
|
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
about VOF and evaporation | mengyue1 | FLUENT | 5 | April 7, 2015 20:08 |
Question:Considerations about the evaporation in VOF | dokeun | FLUENT | 10 | February 24, 2011 21:47 |
Fluid - void VOF | ic2010 | OpenFOAM | 0 | April 26, 2010 05:23 |
vof + hydrostatic pressure | ariorus | FLUENT | 0 | August 7, 2009 11:57 |
One Question on VOF Model | Colin | FLUENT | 2 | October 24, 2004 10:38 |