|
[Sponsors] |
February 22, 2011, 06:28 |
UDF_parabolic velocity profile
|
#1 |
Member
|
Hi All,
I am studying fully developed flow in tube by using UDFs. The inlet face is on the X-Z plane and the velocity is parabolic profile and normal to the face in the Y direction. After I run some iteration, I checked profile velocity at inlet boundary condition. However, I did not see parabolic profile at inlet condition. Below code as following: #include "udf.h" /* must be at the beginning of every UDF you write */ #include "math.h" DEFINE_PROFILE(inlet_y_velocity,thread,index) { real y[ND_ND]; real z,x,r; #define R 1.615 /* Radius of geometry at inlet region */ #define V 36 #define n 1 face_t f; begin_f_loop(f,thread) /* loops over all faces in the thread passed in the DEFINE macro argument */ { F_CENTROID(y,f,thread); x=y[1]; z=y[2]; r=pow((pow(x,2)+pow(z,2)),0.5); F_PROFILE(f,thread,index) = V*((3*n+1)/(n+1))*(1-pow((r/R),(n+1)/n)); } end_f_loop(f,thread) } There are somethings wrong here? Anybody help me. |
|
February 22, 2011, 09:26 |
|
#2 |
Senior Member
|
||
February 22, 2011, 09:49 |
|
#3 |
Member
|
Hi Amir,
Thanks for your help. According to your instruction, I check accuracy inlet boundary condition. It's obsolutely accuracy. Best Regard, Tran Toan |
|
October 7, 2022, 10:44 |
|
#4 |
New Member
Dr. Ahmed F. Al-Neama
Join Date: Oct 2021
Location: Mosul - Iraq
Posts: 3
Rep Power: 5 |
Hi Amir,
How to make a UDF to have a fully developed velocity profile in the entrance of 3D rectangular microchannel having a cross sectional area of 2mm (H) * 1mm (W) and length of 20mm? I want to interpreted it to ANSYS (Fluent). Assume that inlet velocity is 0.2 m/sec. Regards. Dr. Ahmed F. Al-Neama |
|
Tags |
parabolic velocity, udfs |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[UDF] Relative coordinates in logarithmic velocity profile | cfdworker | Fluent UDF and Scheme Programming | 25 | July 13, 2017 04:44 |
Logarithmic velocity profile | cfdworker | Fluent UDF and Scheme Programming | 0 | April 23, 2009 20:09 |
[boundary condition] logarithmic velocity profile | cfdworker | FLUENT | 2 | April 18, 2009 00:36 |
Prescribed inflow velocity profile - how to? | Alan | Main CFD Forum | 10 | October 28, 2005 13:14 |
Terrible Mistake In Fluid Dynamics History | Abhi | Main CFD Forum | 12 | July 8, 2002 10:11 |