|
[Sponsors] |
January 16, 2022, 12:12 |
2D Static Gaussian heat flux udf
|
#1 |
New Member
Join Date: Jan 2022
Posts: 1
Rep Power: 0 |
Hello,
I’m facing a problem with the implementation of a 2d gaussian heat distribution (static). The setup is simple, a steel plate with a top surface (where the heat flux is applied and the other surfaces are treated as a wall with a constant heat transfer coefficient. The used udf is subsequently announced: #include "udf.h" #define rb 0.00235 #define f1 3 #define Q 1900 DEFINE_PROFILE(gauss_heat_flux,t,i) { real x[ND_ND]; real y,y1; face_t f; begin_f_loop(f,t) { F_CENTROID(x,f,t); y = x[1]; y1=x[0]; F_PROFILE(f,t,i) = (Q/rb*rb)*exp(-(f1*(y*y+y1*y1))/rb*rb); } end_f_loop(f,t) } The result should be a small heated spot (at X=0,Y=0) with a gaussian heat flux distribution but what I got is a plain heated area. I don't know what is the problem with my udf, something should be wrong. Maybe someone has a clue about this problem. With best regards Joe |
|
Tags |
fluent -udf, heat flux udf, udf code |
Thread Tools | Search this Thread |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creating a heat Flux UDF with a temperature Dependent argument | nagas | Fluent UDF and Scheme Programming | 3 | March 20, 2018 08:14 |
Difficulty with UDF code for HEAT FLUX | etudiant_IITB | Fluent UDF and Scheme Programming | 1 | December 7, 2015 09:07 |
Udf for moving heat flux in 2D cylindrical geometry | devia21 | Fluent UDF and Scheme Programming | 0 | April 20, 2015 01:27 |
UDF for time dependent stepwise heat flux profile | bugrasss | Fluent UDF and Scheme Programming | 0 | April 15, 2015 07:32 |
UDF for Heat Flux | kishan kumar jaiswal | FLUENT | 4 | April 21, 2014 19:01 |