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

UDF for a horizontal temperature profile

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By Rizwan

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 15, 2007, 05:15
Default UDF for a horizontal temperature profile
  #1
CD
Guest
 
Posts: n/a
Hello,

I'm trying to write an UDF for a temperature profile to use as an boundary condition on a horizontal wall (2D). I used the following UDF, but when I plot an xy-plot of the wall surface temperature it is just a constant. Can anybody tell me what I'm doing wrong?

Kind regards,

CD

/* test.c UDF for specifying temperature profile boundary condition on the bottom */

#include "udf.h"

DEFINE_PROFILE(test,thread,position)

{ real x[ND_ND]; /* this will hold the position vector */

real y;

face_t f;

begin_f_loop(f,thread)

{

F_CENTROID(x,f,thread);

y=x[1];

F_PROFILE(f, thread, position) = ... */ here stands the profile function as a function of y /*

}

end_f_loop(f,thread)

}

  Reply With Quote

Old   February 15, 2007, 15:36
Default Re: UDF for a horizontal temperature profile
  #2
Rizwan
Guest
 
Posts: n/a
this should be proper. dint chek it (as simulation running on my system) but thsi my understnading that temperature is varying along horizontal (along x) i guess .

#include "udf.h"

DEFINE_PROFILE(test,thread,position)

{ real x[ND_ND]; /* this will hold the position vector */

real y;

face_t f;

begin_f_loop(f,thread)

{

F_CENTROID(x,f,thread);

y=x[0];

F_PROFILE(f, thread, position) = ... */ here stands the profile function as a function of y /*

}

end_f_loop(f,thread)

}

sircorp likes this.
  Reply With Quote

Old   February 16, 2007, 04:10
Default Re: UDF for a horizontal temperature profile
  #3
Ted
Guest
 
Posts: n/a
Thank you for your time and help Rizwan!

Ted

  Reply With Quote

Old   February 16, 2007, 06:30
Default Re: UDF for a horizontal temperature profile
  #4
Rizwan
Guest
 
Posts: n/a
I wish you could hav told whether its working according to what u needed or not. Regards waiting for ur input.
  Reply With Quote

Old   February 17, 2007, 14:02
Default Re: UDF for a horizontal temperature profile
  #5
Ted
Guest
 
Posts: n/a
I was using the y-coordinate of a horizontal walll instead of the x-coordinate, so logically the result of my profile function was a constant. With your correction the UDF is now working just as I hoped. Thanks again!

Greetings Ted

  Reply With Quote

Old   July 20, 2013, 10:51
Default
  #6
Member
 
sooraj
Join Date: Dec 2012
Posts: 38
Rep Power: 13
str6073 is on a distinguished road
hi guys

i need a udf for a work. i'll explain what i need . I want to provide a linear varying temperature boundary condition on the circular side of a cylinder . can you help me?? My idea about udf is very small.
str6073 is offline   Reply With Quote

Old   December 15, 2013, 15:07
Default tempereture udf for wall BC
  #7
New Member
 
Join Date: Apr 2013
Posts: 6
Rep Power: 12
ettehadi is on a distinguished road
I am trying to write UDF for wall of vertical pipe temperature that increase with increasing depth (Z). UDF is as follow

#include "udf.h"
DEFINE_PROFILE (gradient_temp,thread,nv)
{
face_t f;
real x[ND_ND];
/*loop over each of the face of this zone*/
begin_f_loop (f,thread)
{
F_CENTROID(x,f,thread);
F_PROFILE(F,THREAD,NV)=25.*z[0]+80
}
end_f_loop (f,thread)
}

but fluent gets some error as below:

..\..\src\tempgrad.c(10) : error C2065: 'THREAD' : undeclared identifier
..\..\src\tempgrad.c(10) : error C2223: left of '->storage' must point to struct/union
..\..\src\tempgrad.c(10) : error C2065: 'NV' : undeclared identifier
..\..\src\tempgrad.c(10) : error C2065: 'F' : undeclared identifier
..\..\src\tempgrad.c(10) : error C2065: 'z' : undeclared identifier
..\..\src\tempgrad.c(10) : error C2109: subscript requires array or pointer type
..\..\src\tempgrad.c(11) : error C2143: syntax error : missing ';' before '}'



could any one can help me what is the problem?????
ettehadi is offline   Reply With Quote

Old   December 15, 2013, 16:07
Default
  #8
Senior Member
 
Join Date: Jan 2010
Location: Germany
Posts: 268
Rep Power: 17
Zaktatir is on a distinguished road
theYour problem not defined z and the wrong THREAD instead of thread C is uppercase sensitive
Zaktatir is offline   Reply With Quote

Old   August 5, 2016, 20:13
Question UDF for temperature variation with time and space
  #9
New Member
 
mm
Join Date: May 2016
Posts: 24
Rep Power: 8
mmunige is an unknown quantity at this point
Respected members

I have to write a UDF for temperature variation along with time and flow domain. actually temperature is varying with time at four points in flow domain, (different relation for time and temperature at these points.
for example at x=0.20m i have following code:
DEFINE_PROFILE(solid_temperature,thread,position )

{
face_t f;
begin_f_loop(f,thread)
{

real t = RP_Get_Real("flow-time");
if ( t <= 100.0 )

{

F_PROFILE(f,thread,position) = 379.48 + 0.0004*t;
}
else if (100.0 < t && t <= 180.0 )
{
F_PROFILE(f,thread,position) = -8.34641*pow(10,-6)*pow(t,4.0)+ 5.49800*pow(10,-3)*pow(t,3.0)- 1.35243*pow(t,2.0)+ 1.47648*pow(10,2.0)*t - 5.51650*pow(10,3.0);
}
else

{
F_PROFILE(f,thread,position) = 727.82;
}
}
end_f_loop(f,thread)

}
at x=0.40m (second point) i have following relations:

if ( t <= 100.0 )

{
F_PROFILE(f,thread,position) = 379.48 + 0.0004*t;
}
else if (100.0 < t && t <= 180.0 )
{
F_PROFILE(f,thread,position) = 0.2716*t + 494.4;
}
else
{
F_PROFILE(f,thread,position) = 727.82;
}
}
end_f_loop(f,thread)
}


and similarly for other 2 points
can any body pl guide me how to include these points in code. i just know how to write variation of temperature with time but i could not find way to write above relations at different points.
Please guide me.
thanks.
mmunige is offline   Reply With Quote

Old   May 6, 2018, 12:13
Default Varying temperature in vertical direction
  #10
New Member
 
Pramod Bagade
Join Date: May 2018
Posts: 1
Rep Power: 0
pramodbagade is on a distinguished road
Hi
I'm new fluent user.
I want to impose a linear temperature gradient on a vertical pipe wall with temp. on top=340 and at the bottom 300. The bottom edge again is a bent pipe horizontally. On horizontal pipe the temp is 300. How can I put these as boundary conditions? Can anyone please help to apply this?
Step by step instructions would be a great help.
Thanks
pramodbagade 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
UDF inlet velocity profile mismatch with Fluent ChristineL Fluent UDF and Scheme Programming 15 November 25, 2016 06:45
Define profile inlet_temperature in UDF mohammadkm Fluent UDF and Scheme Programming 19 December 24, 2013 22:42
udf variable for wall temperature Kiran FLUENT 0 July 31, 2008 08:31
UDF temp. profile BC Shashikant FLUENT 0 June 24, 2006 03:16
temperature profile on boundary sivakumar FLUENT 5 November 24, 2002 00:58


All times are GMT -4. The time now is 22:04.