|
[Sponsors] |
October 8, 2012, 18:31 |
Velocity boundary condtion UDF help
|
#1 |
Member
Join Date: Sep 2012
Location: FL
Posts: 79
Rep Power: 14 |
I have a rectangular inlet (2x1-in X and Z)for a 3 D problem where I want to give a UDF for y velocity (-ve direction). The centre of the of the rectangular inlet is at (-2.5,2,8). The maximum velocity is 10. The profile is parabolic in x and z directon. I have written a UDF. But the velocity comes out to be >100.
I don't know where I'm I doing wrong. /************************************************** ***********************/ /* udf- velocity profile boundary condition */ /************************************************** ***********************/ #include "udf.h" DEFINE_PROFILE(inlet_y_velocity, thread, index) { real p[ND_ND]; real x,z; face_t f; begin_f_loop(f, thread) { F_CENTROID(p,f,thread); x = p[1]; z= p[1]; F_PROFILE(f, thread, index) = (10-10*((x+2.5)*(x+2.5))-10*(((z-2)/0.5)*((z-2)/0.5))); } end_f_loop(f, thread) } |
|
October 9, 2012, 05:38 |
|
#2 |
Super Moderator
Alex
Join Date: Jun 2012
Location: Germany
Posts: 3,427
Rep Power: 49 |
The x, y and z-values of the face centroids are stored in p[0], p[1] and p[2], respectively.
So first of all you should change the line "x=p[1];" to "x=p[0]" and the line "z=p[1];" to "x=p[2]" Didn't check the rest of your formula, so there could still be some more errors. |
|
October 9, 2012, 16:27 |
|
#3 |
Member
Join Date: Sep 2012
Location: FL
Posts: 79
Rep Power: 14 |
Thanks man.I totally forgot about that. I am getting proper results now. Also, I did miss negative sign in the formula.
|
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Massflow or average velocity boundary condition | Sideshore | OpenFOAM Pre-Processing | 6 | September 27, 2016 16:09 |
UDF error - parabolic velocity profile - 3D turbine | Zaqie | Fluent UDF and Scheme Programming | 9 | June 25, 2016 20:08 |
CFX13 Post Periodic interface | EtaEta | CFX | 7 | December 8, 2011 18:15 |
ATTENTION! Reliability problems in CFX 5.7 | Joseph | CFX | 14 | April 20, 2010 16:45 |
UDF problem : inlet velocity in cyl. coord. system | Jongdae Kim | FLUENT | 0 | June 15, 2004 12:21 |