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

slip boundary condition in the VOF model

Register Blogs Community New Posts Updated Threads Search

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   September 26, 2018, 08:13
Default slip boundary condition in the VOF model
  #1
New Member
 
Sinon Lee
Join Date: Dec 2017
Posts: 3
Rep Power: 8
Sinon Lee is on a distinguished road
hello, everyone, I am doing the work about a velocity slip boundary condition in a two phase flow, i need to define the different slip lengths of the water and oil in a microchannel. so i use the following UDF to do this work. but the mistake says:
Error:
FLUENT received fatal signal (ACCESS_VIOLATION)
1. Note exact events leading to error.
2. Save case/data under new name.
3. Exit program and restart to continue.
4. Report error to your distributor.
Error Object: ()
will occur after some loops over the channel wall just in the first iteration,


#include "udf.h"
#include "sg_mphase.h"
#define lso 4e-6 /*oil slip length*/
#define lsw 1e-6 /*water slip length*/
#define h 2e-6 /*height of first cell center*/
real x[ND_ND];
real mu;
real vof;

DEFINE_PROFILE(shear_x,t,position)
{

face_t f;
cell_t c0,c2;
Thread *t0=THREAD_T0(t);
Thread *t2=THREAD_SUB_THREAD(t,1);
double ux;
begin_f_loop(f,t)
{
c0=F_C0(f,t);
F_CENTROID(x,f,t);

mu=C_MU_L(c0,t0);
ux=C_U(c0,t0);
Message ("1\n (%f,%f,%f)\n",x[0],x[1],x[2]);
Message ("1\n");
vof=C_VOF(c0,t2);
Message ("2\n");
F_PROFILE(f,t,position)=mu*ux/(lso*(1-vof)+lsw*vof+h);
}
if ((x[0]>=450e-6&&x[0]<=800e-6)&&(x[1]>=98e-6&&x[1]<=100e-6)&&x[2]>=48e-6&&x[2]<=52e-6)
Message ("shear_x=%f\n vof=%f\n mu=%f\n ux=%f\n",mu*ux/(lso*(1-vof)+lsw*vof+h),vof,mu,ux);
end_f_loop(f,t)
}

this is my code, the mistake may be caused by "vof=C_VOF(c0,t2);" debugged by “Message ("1\n");” and “Message ("2\n");”
many thanks for your kindly help.
Sinon Lee is offline   Reply With Quote

 


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
CFD analaysis of Pelton turbine amodpanthee CFX 31 April 19, 2018 18:02
Error finding variable "THERMX" sunilpatil CFX 8 April 26, 2013 07:00
CFX fails to calculate a diffuser pipe flow shenying0710 CFX 7 March 26, 2013 04:13
RPM in Wind Turbine Pankaj CFX 9 November 23, 2009 04:05
Please help with flow around car modelling! Tudor Miron CFX 17 March 19, 2004 19:23


All times are GMT -4. The time now is 05:24.