|
[Sponsors] |
July 3, 2008, 07:33 |
UDF Wall Temperature Problem - Coordinates
|
#1 |
Guest
Posts: n/a
|
Dear Fluent Users,
I try to define a wall temperature with DEFINE_PROFILE, the temperature should vary with one of the three GLOBAL coordinates which exist. My wall ist a tube, so geometrically the BC is a cylinder. The variation of the temperature works fine for two dimensions ( x[1] and x[2] ), but not for the third (axial , using x[3]) dimension. Any idea what couldt be wrong? DEFINE_PROFILE(dt_name, thread, i) { face_t f; real x[ND_ND]; real z; begin_f_loop(f, thread) { F_CENTROID(x,f,thread); z=x[3]; F_PROFILE(f, thread, i) = 273 + z*800; } end_f_loop(f, thread) } Thank you in advance. |
|
July 3, 2008, 12:10 |
Re: UDF Wall Temperature Problem - Coordinates
|
#2 |
Guest
Posts: n/a
|
The x vector returned by F_CENTROID(x,f,thread) has three components stored in x[0], x[1], and x[2]. You'll have to use x[2] for the third (axial) component.
Remus |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
CCM+Multiphase problem with Cylindric coordinates | S.B | Siemens | 0 | November 18, 2007 22:59 |
Problem with the cylindrical coordinates | langloi | OpenFOAM Running, Solving & CFD | 0 | December 9, 2005 23:26 |
Access cell coordinates and wall data in posdat.f | Boban | Siemens | 5 | July 22, 2005 05:25 |
About fix wall temperature in wall boundary | joon | Siemens | 2 | March 10, 2003 02:41 |
Wall boundary coordinates? | cjtune | Siemens | 1 | February 18, 2003 11:31 |