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

UDF of interfacial thermal diffusivity

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 21, 2006, 04:58
Default UDF of interfacial thermal diffusivity
  #1
galary
Guest
 
Posts: n/a
The following is my udf code of setting thermal diffusivity on coupling heat transfer interface. It can be worked but I think it does not affect the simulation results.Can somebody give some advice on it? Thanks! DEFINE_PROFILE(cwall_diff, tf, position) { face_t f;

real er0[ND_ND], er1[ND_ND], es[ND_ND], r0[ND_ND], r1[ND_ND], xf[ND_ND]; real ds, h0, h1, dr0,dr1;

cell_t c0 = F_C0(f,tf); /* returns ID for c0*/ cell_t c1 = F_C1(f,tf); /*returns ID for c1 */

begin_f_loop(f, tf)

{

F_CENTROID(xf, f,tf);

C_CENTROID(er0, c0,THREAD_T0(tf));

NV_VV(r0, =, xf,-,er0);

dr0 = NV_MAG(r0);

h0 = dr0/C_K_L(c0,tf);

C_CENTROID(er1, c0,THREAD_T1(tf));

NV_VV(r1, =, xf,-,er1);

dr1 = NV_MAG(r1);

h1 = dr1/C_K_L(c1,tf);

NV_VV(es, =, er1,-,er0);

ds = NV_MAG(es);

F_PROFILE(f, tf, position) = ds/(h0 + h1); /* harmonic mean of adjacent grids in different zone*/

} end_f_loop (f,tf) }
  Reply With Quote

Old   May 24, 2006, 10:10
Default Re: UDF of interfacial thermal diffusivity
  #2
galary
Guest
 
Posts: n/a
Does anybody has some opinion about it? When i solve conjugate heat transfer between fluid and solid, it will be imporatant in whole-field solution. And i find in Fluent, the coupling face interfacial thermal diffusivity is dealed with algorithmic mean, but not with harmonic mean? Is it right?
  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
Turbulent thermal diffusivity vitor OpenFOAM Running, Solving & CFD 2 August 22, 2010 15:43
UDF for effective thermal conductivity Rashmi FLUENT 1 November 6, 2007 20:08
Can wemodify effective thermal conductivity by UDF FengYun FLUENT 2 October 27, 2005 05:28
UDF Adjust to redefine UDS Diffusivity David harvey FLUENT 4 February 27, 2004 07:47
Info: Short Course On Thermal Design of Electronic Equipment Arnold Free Main CFD Forum 0 August 10, 1999 10:18


All times are GMT -4. The time now is 23:42.