|
[Sponsors] |
August 5, 2014, 09:06 |
Temp dependent emissivity udf
|
#1 |
New Member
Ross Drummond
Join Date: Aug 2014
Posts: 1
Rep Power: 0 |
Hi,
I need to write a UDF for temperature dependent emissivity in a continuous annealing rig. However i get this warning when building, udf_names.c : warning C4113: 'void (*)()' differs in parameter lists from 'void (*)(void)' it then loads without error, but when initialising i receive these errors, Error: received a fatal signal (Segmentation fault). Error Object: #f I'm really struggling any help would be appreciated. Ross |
|
September 25, 2014, 12:22 |
|
#2 |
New Member
Christina P.
Join Date: Oct 2012
Posts: 22
Rep Power: 14 |
Hey Ross, I'm encountering this exact situation. Did you ever figure out what the problem was?
|
|
October 1, 2014, 15:11 |
|
#3 |
Senior Member
François Grégoire
Join Date: Jan 2010
Location: Canada
Posts: 392
Rep Power: 17 |
Hi,
For some reason (bug?), you have to run the model with a constant external emissivity first. Then you set the external emissivity to 'my_emissivity': Code:
#include "udf.h" DEFINE_PROFILE(my_emissivity,t,i) { real tempe; face_t f; begin_f_loop(f,t) { tempe = F_T(f,t); F_PROFILE(f,t,i) = 2.54e-4*tempe; } end_f_loop(f,t) } |
|
October 12, 2014, 08:31 |
|
#4 |
New Member
rasoul sogvar
Join Date: Feb 2014
Posts: 1
Rep Power: 0 |
hello,how do I write non bosinesq for simulation of free convection of water?
I need for udf file,please help me |
|
December 10, 2018, 10:50 |
|
#5 |
Member
Oula
Join Date: Apr 2015
Location: United Kingdom
Posts: 81
Rep Power: 11 |
Hi everyone
In my model there are some boundaries (walls) that their emissivities change with temperature. For example at a specific wall at T=200 C emissivity = 0.80 T=400 C emissivity = 0.82 T=600 C emissivity = 0.84 How can I write the suitable UDF for this case? Any help is much appreciated |
|
Tags |
emissivity, temperature dependent, udf |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Problem in UDF time dependent vloumetric heat source | eng_yasser_2020 | Fluent UDF and Scheme Programming | 0 | March 30, 2014 09:07 |
Help with UDF | ashrawage | Fluent UDF and Scheme Programming | 0 | November 30, 2012 18:02 |
UDF for Heat Exchanger model | francois louw | FLUENT | 2 | July 16, 2010 03:21 |
unsteady pressure, temp profile without a udf | mahi | FLUENT | 0 | November 10, 2008 04:53 |
UDF for time dependent heat flux | Rameshwar Ajja | FLUENT | 0 | February 16, 2006 01:26 |