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

wall slip law for newtonian fluid

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 19, 2012, 12:13
Default wall slip law for newtonian fluid
  #1
Member
 
Join Date: Mar 2012
Location: USA
Posts: 33
Rep Power: 14
tsi07 is on a distinguished road
Hi,

I am trying to input a wall slip law for a newtonian fluid in a pipeline.
The law has a yield stress limit \tau_0.
When the yield stress is less than \tau_0, there is adhesion of the fluid to the wall.
When the yield stress is greater than \tau_0, there is a slip velocity at the wall like :
u_{wall}=\mu*\frac{\partial u_z}{\partial r}

The udf is here :
Code:
#define Cf 1			/* friction coefficient */
#define TAU0 0.2			/* limit yield stress for slipping */

DEFINE_PROFILE(wall_velocity_x, thread, position)
{
	face_t f;
	Thread *t0;
	cell_t c0;
	double VC[ND_ND];
	double TAUxy, VC_MAG, vg, mu;
	double dudy;
	begin_f_loop(f, thread)
		{
		t0 = THREAD_T0(thread);		/* adjacent cell thread to f */
		c0 = F_C0(f, thread); 
		dudy = C_DUDY(c0,t0);
		mu = C_MU_L(c0,t0);	
		VC[0]=-mu*dudy;
		VC[1]=0;				/* stress vector's y componant*/
		if (NV_MAG(VC)==0)		/* stress vector's magnitude */
			{VC_MAG = 0.00000001;}
		else {VC_MAG=NV_MAG(VC);}
		vg=VC[0]/Cf;
		if ( VC_MAG < TAU0)
			{
			F_PROFILE(f, thread, position)=0;
			}
		else	{
			F_PROFILE(f, thread, position)=vg;
			}
		}
	end_f_loop(f, thread)
}
At first I run Fluent with a "wall" boundary condition. And after some steps, I change the wall to a "velocity inlet" boundary condition in order to put the udf as a component of the axial velocity.

But, the continuity residual goes to 10^{20}.

I think the reason is the fact that I use the derivative of the adjacent cell of the boundary to put it as the value of the face of the boundary. But I don't know how to make it in an other way.

Help me please !
tsi07 is offline   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
Concentric tube heat exchanger (Air-Water) Young CFX 5 October 6, 2008 23:17
Errors running allwmake in OpenFOAM141dev with WM_COMPILE_OPTION%3ddebug unoder OpenFOAM Installation 11 January 30, 2008 20:30
the law of the wall for rough surface maximus Main CFD Forum 0 January 31, 2004 08:45
Terrible Mistake In Fluid Dynamics History Abhi Main CFD Forum 12 July 8, 2002 09:11
Wall functions Abhijit Tilak Main CFD Forum 6 February 5, 1999 01:16


All times are GMT -4. The time now is 19:42.