|
[Sponsors] |
heat transfer coefficient for the fluid / solid interface |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 8, 2014, 00:38 |
heat transfer coefficient for the fluid / solid interface
|
#1 |
Member
sarah
Join Date: Aug 2010
Posts: 42
Rep Power: 16 |
Hi,
I am using non-equilibrium model in porous zone in Ansys Fluent 14.5. for specifying heat transfer coefficient for the fluid / solid interface, I have written the following udf #include "udf.h" DEFINE_PROFILE(Heat_trans_coeff,t,i) { cell_t c; real Nu,Re,Pr; real dens, visc; /*Fluid*/ real cond, cp; /* Fluid*/ real d_p; real por;/*Porosity of the bed*/ d_p=0.06; por=0.36 begin_c_loop(c,t) { dens = C_R(c,t); /*Density of fluid*/ visc = C_MU_L(c,t); /*Viscosity fluid*/ cond = C_K_L(c,t); /*Conductivity fluid*/ cp = C_CP(c,t); /*Specific heat fluid*/ Re = ND_MAG(C_U(c,t),C_V(c,t),C_W(c,t))*d_p*dens*por/visc ; /*Reynolds number has been calculated based on pore velocity*/ Pr = cp*visc/cond ; Nu = 2.+ 1.1 * pow(Re,0.6) * pow(Pr,1./3.); F_PROFILE(c,t,i) = Nu*cond/d_p ; } end_c_loop(c,t) } However this code cannot be interpreted in FLUENT. The error message is "c_loop_last: undeclared variable" I would be grateful if somebody help me! |
|
July 29, 2014, 11:44 |
|
#2 |
Disabled
Join Date: Nov 2013
Posts: 16
Rep Power: 13 |
Hello:
Were you able to solve your problem? |
|
July 31, 2014, 03:50 |
|
#3 |
Member
sarah
Join Date: Aug 2010
Posts: 42
Rep Power: 16 |
well, I changed some of the statements to constatnt parameter and the it run!
|
|
July 31, 2014, 09:59 |
|
#4 |
Disabled
Join Date: Nov 2013
Posts: 16
Rep Power: 13 |
Sarah:
Thanks for your reply. Do you by any chance know how one can get the solid temperature at a specific point in the media by udf? Thank you. |
|
July 31, 2014, 15:57 |
|
#5 |
Member
sarah
Join Date: Aug 2010
Posts: 42
Rep Power: 16 |
you're welcome
while you use non equilibrium model , the software creats solid zone itself so you can observe the variation of Temp on that ! also you can create new plane with specific points to see more details. regards |
|
August 23, 2014, 19:08 |
udf for heat-transfer-coefficient-fluid-solid-interface
|
#6 |
New Member
othman
Join Date: Aug 2014
Posts: 1
Rep Power: 0 |
Dear Pr Sarah
I work on the heat transfer in porous media, and I need a UDF for the heat transfer coefficient fluid/solid that is a function of the solid temperarue and the fluid temperature Thank's to answer me Best regards |
|
April 25, 2016, 21:50 |
Udf heat transfer
|
#7 |
New Member
Junia Mendes
Join Date: Apr 2016
Posts: 7
Rep Power: 10 |
Good night,
I'm working with heat transfer and I've had serious problems. Can you help me? |
|
April 26, 2016, 05:59 |
|
#8 |
Senior Member
Bruno Machado
Join Date: May 2014
Posts: 271
Rep Power: 13 |
||
April 29, 2016, 09:42 |
My code heat transfer
|
#9 |
New Member
Junia Mendes
Join Date: Apr 2016
Posts: 7
Rep Power: 10 |
heat_udf_1.h
It's my code. I'm working with tho phases in Eulerian Model. I'm having trouble describing each stage in my UFD. The error is pointed out in this line: heat_kmiec_1980 (c cell_t, Thread * ti, Thread * tj) |
|
April 29, 2016, 09:48 |
|
#10 | |
New Member
Junia Mendes
Join Date: Apr 2016
Posts: 7
Rep Power: 10 |
Quote:
Fallow my udf. Thanks |
||
May 12, 2016, 05:40 |
|
#11 |
New Member
gui
Join Date: Oct 2013
Posts: 10
Rep Power: 13 |
Dear members of the forum
I need a UDF for the heat transfer coefficient, considering the properties change with the temperature. My function is very similar to the one Sarah posted here, if anyone knows how to correct that function that would be great! Thank you, G Last edited by guilbemloco; May 12, 2016 at 06:47. |
|
May 12, 2016, 10:58 |
|
#12 |
New Member
gui
Join Date: Oct 2013
Posts: 10
Rep Power: 13 |
Hello Sarah,
Could you please show me the UDF you created after you changed some parameters to constant? Thank you |
|
May 17, 2016, 09:44 |
|
#13 |
New Member
gui
Join Date: Oct 2013
Posts: 10
Rep Power: 13 |
Well, I found that in this code there is a ";" missing after the declaration of "por=0.36".
I added that and I was able to interpret the function normally. |
|
May 17, 2016, 14:12 |
|
#14 |
New Member
Junia Mendes
Join Date: Apr 2016
Posts: 7
Rep Power: 10 |
||
May 18, 2016, 03:27 |
|
#15 |
New Member
gui
Join Date: Oct 2013
Posts: 10
Rep Power: 13 |
Sure, it is this:
#include "udf.h" DEFINE_PROFILE(Heat_trans_coeff,t,i) { cell_t c; real Nu,Re,Pr; real dens, visc; /*Fluid*/ real cond, cp; /* Fluid*/ real d_p; real por;/*Porosity of the bed*/ d_p=0.018; por=0.3; begin_c_loop(c,t) { dens = C_R(c,t); /*Density of fluid*/ visc = C_MU_L(c,t); /*Viscosity fluid*/ cond = C_K_L(c,t); /*Conductivity fluid*/ cp = C_CP(c,t); /*Specific heat fluid*/ Re = ND_MAG(C_U(c,t),C_V(c,t),C_W(c,t))*d_p*dens*por/visc ; /*Reynolds number has been calculated based on pore velocity*/ Pr = cp*visc/cond ; Nu = 2.+ 1.1 * pow(Re,0.6) * pow(Pr,1./3.); F_PROFILE(c,t,i) = Nu*cond/d_p ; } end_c_loop(c,t) } I was able to interpret in windows and to compile in linux systems, the reason is not clear thought. |
|
May 18, 2016, 09:28 |
|
#16 | |
New Member
Junia Mendes
Join Date: Apr 2016
Posts: 7
Rep Power: 10 |
Quote:
|
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Help needed in meshing for Solid to Fluid Heat Transfer | niazaliahmed | FLUENT | 2 | February 22, 2020 16:47 |
Simulation of a single bubble with a VOF-method | Suzzn | CFX | 21 | January 29, 2018 01:58 |
Error finding variable "THERMX" | sunilpatil | CFX | 8 | April 26, 2013 08:00 |
goddamnit: how to set up heat transfer from fluid to solid | macfly | FLUENT | 7 | June 16, 2012 12:50 |
error message | cuteapathy | CFX | 14 | March 20, 2012 07:45 |