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

Microfluidics

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 20, 2013, 13:59
Default Microfluidics
  #1
New Member
 
BHUVANESH
Join Date: Oct 2013
Location: INDIA
Posts: 5
Rep Power: 12
BHUVANESH is on a distinguished road
Hi all,
when i tried to incorporate fully developed flow in fluent under laminar conditions, i got an example like this... can somebody help how to use for my problem of 400 * 4000 (dia*length) of a microchannel.. Waiting for an valid reason..



#include "udf.h"

DEFINE_PROFILE(inlet_x_velocity, thread, position)
{

real x[ND_ND]; /* this will hold the position vector */
real y, h;
face_t f;

h = 0.016; /* inlet height in m */

begin_f_loop(f,thread)
{
F_CENTROID(x, f, thread);
y = 2.*(x[1]-0.5*h)/h; /* non-dimensional y coordinate */
F_PROFILE(f, thread, position) = 0.1*(1.0-y*y);
}
end_f_loop(f, thread)

}
BHUVANESH 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
Microfluidics mh CFX 5 March 20, 2011 21:16
microfluidics lab on a chip design model and simulation mmeadows FLUENT 0 February 21, 2011 14:32
microfluidics francisco tovar FLUENT 1 March 28, 2007 17:06
Mems microfluidics Phil Jerry Main CFD Forum 1 February 26, 2004 13:14
microfluidics Bivan Main CFD Forum 0 May 14, 2002 22:45


All times are GMT -4. The time now is 20:59.