|
[Sponsors] | |||||
|
|
|
#1 |
|
New Member
Aydın Dönmez
Join Date: Feb 2012
Posts: 4
Rep Power: 3 ![]() |
dear all,
first of all, the problem is 3D and in cylindrical coordinates. i have to specify a tangential velocity profile as a function of radius "r", but i think somthing is wrong with it. the values obtained from the udf does not match with real values (i also computed it with excell). i couldn't understand where the problem is. would you please have a look at the code? thanks! #include "udf.h" DEFINE_PROFILE(velocity_profile,t,i) { real x[ND_ND]; /* this will hold the position vector */ real r,R,omega; face_t f; R=0.1; omega=20; begin_f_loop(f,t) { F_CENTROID(x,f,t); r=sqrt((x[0]*x[0])+(x[1]*x[1])); F_PROFILE(f,t,i) = (omega*R*R/r)*(1-exp(-r*r/R*R)); } end_f_loop(f,t) } Last edited by donmezayd; April 19, 2012 at 04:27. |
|
|
|
|
|
![]() |
| Tags |
| cylindrical coordinate, velocity profile |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| UDF in Cylindrical Coordinate | mas_viper | Fluent UDF and Scheme Programming | 3 | April 18, 2012 06:55 |
| Finite Volume Method For Cylindrical Coordinates | falopsy | Main CFD Forum | 43 | March 22, 2012 08:55 |
| working in cylindrical coordinates in fluent | Randheer Yadav | FLUENT | 1 | February 17, 2005 07:03 |
| SIMPLE algorithm in 3D cylindrical coordinates | zouchu | Main CFD Forum | 0 | August 7, 2003 12:58 |
| Calculation in cylindrical coordinates | Franz Wingelhofer | CFX | 0 | December 28, 1999 07:46 |