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 Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
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

Old   September 27, 2018, 06:51
Question Interface Boundary condition
  #2
New Member
 
Praveen Potnuru
Join Date: Sep 2018
Posts: 1
Rep Power: 0
Praveen Potnuru is on a distinguished road
I am working on a problem, where a system of two fluid layers is heated from below (Convection). whats the boundary condition to be given at the interface.
Praveen Potnuru is offline   Reply With Quote

Old   September 27, 2018, 07:27
Default
  #3
New Member
 
Sinon Lee
Join Date: Dec 2017
Posts: 3
Rep Power: 8
Sinon Lee is on a distinguished road
Quote:
Originally Posted by Praveen Potnuru View Post
I am working on a problem, where a system of two fluid layers is heated from below (Convection). whats the boundary condition to be given at the interface.
In my simulation, there is no heat transfer, specified slip boundary condition with a given slip length is employed at the wall, but the slip lengths of oil and water are different, so I want use the volume fraction to calculate the slip length of two phase mixture, then the error occurs.
Sinon Lee is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 08:31.