|
[Sponsors] |
April 21, 2014, 10:03 |
strange temperature rise
|
#1 |
New Member
amr mobarez
Join Date: Jan 2013
Posts: 9
Rep Power: 13 |
in my case firstly i using constant velocity every thing is normal the cooling temperature isn't rising but when i use a udf for velocity the temperature of the cooling fluid rise to the temperature of the main fluid ( attaching pic) which isn't logic as the velocity used in the first time step is exactly equal to the constant one (i'm attaching the udf also)
the udf : #include "udf.h" DEFINE_PROFILE(unsteady_x_velocity12, thread, position) { face_t f; real tm = CURRENT_TIME; begin_f_loop (f,thread) { if(tm < 0.1) { F_PROFILE (f,thread,position)= 8.479; } if(tm > 0.1) { F_PROFILE (f,thread,position)= 1.357; } if(tm > 0.2) { F_PROFILE (f,thread,position)= 8.479; } if(tm > 0.3) { F_PROFILE (f,thread,position)= 1.357; } if(tm > 0.4) { F_PROFILE (f,thread,position)= 8.479; } if(tm > 0.5) { F_PROFILE (f,thread,position)= 1.357; } if(tm > 0.6) { F_PROFILE (f,thread,position)= 8.479; } if(tm > 0.7) { F_PROFILE (f,thread,position)= 1.357; } if(tm > 0.8) { F_PROFILE (f,thread,position)= 8.479; } if(tm > 0.9) { F_PROFILE (f,thread,position)= 1.357; } if(tm > 1.0) { F_PROFILE (f,thread,position)= 8.479; } if(tm > 1.1) { F_PROFILE (f,thread,position)= 1.357; } } end_f_loop (f,thread) } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
whats the cause of error? | immortality | OpenFOAM Running, Solving & CFD | 13 | March 24, 2021 08:15 |
What does uniform temperature rise mean for thermal stress analysis? | Sargam05 | OpenFOAM | 4 | September 22, 2012 22:00 |
monitoring point of total temperature | rogbrito | FLUENT | 0 | June 21, 2009 18:31 |
temperature rise due to viscous dissipation | Marek | Main CFD Forum | 6 | December 30, 2004 17:24 |
Temperature in vessel during throttling process | Astrid | Main CFD Forum | 2 | January 31, 2001 03:34 |