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

I receive "temperature limited to ... " after I Compile my UDF and start computing

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 5, 2020, 07:46
Default I receive "temperature limited to ... " after I Compile my UDF and start computing
  #1
Member
 
abdo
Join Date: Apr 2018
Posts: 42
Rep Power: 7
khaledhmz is an unknown quantity at this point
Hello everyone,

I'm trying to specify the species mass fractions at the combustor mass flow inlet using udf but when I start the computing and after some iterations this message shows up in the console:

temperature limited to 5.000000e+03 in 5325 cells on zone 2 in domain 1.

and if I less the fluent computing the temperature decrease to reach 3000 k, its fixed at this value and won't decrease more as I want to be 1700k.


I don’t face this problem when I set constant inlet BC.

Does anybody have any idea what could be the problem?
khaledhmz is offline   Reply With Quote

Old   November 5, 2020, 09:27
Default
  #2
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
Quote:
Originally Posted by khaledhmz View Post
Hello everyone,

I'm trying to specify the species mass fractions at the combustor mass flow inlet using udf but when I start the computing and after some iterations this message shows up in the console:

temperature limited to 5.000000e+03 in 5325 cells on zone 2 in domain 1.

and if I less the fluent computing the temperature decrease to reach 3000 k, its fixed at this value and won't decrease more as I want to be 1700k.


I don’t face this problem when I set constant inlet BC.

Does anybody have any idea what could be the problem?
Your simulation is not converging. Can have so many reasons... If you used a UDF, show it.
pakk is offline   Reply With Quote

Old   November 5, 2020, 10:04
Default
  #3
Member
 
abdo
Join Date: Apr 2018
Posts: 42
Rep Power: 7
khaledhmz is an unknown quantity at this point
this is my udf:

#include "udf.h"
#include "mem.h"
#define Y_CH4_in 0.032
#define Y_O2_in 0.225
DEFINE_PROFILE(mass_fraction, t, i)
{
face_t f;
begin_f_loop(f, t)
{
F_CENTROID(x, f, t);
F_PROFILE(f, t, i) = Y_CH4_in;
F_PROFILE(f, t, i) = Y_O2_in;
}
end_f_loop(f, t)
}
khaledhmz is offline   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
Compile Fluent UDF with Windows 10 daniel_pramudita FLUENT 15 May 13, 2020 22:29
ATTN ALL: SOLUTON TO UDF COMPILE PROBLEM Rizwan Fluent UDF and Scheme Programming 40 March 18, 2018 06:05
What is the command to start a batch file with UDF? h0rst Fluent UDF and Scheme Programming 1 May 24, 2017 03:21
interpret or compile an UDF (emergency) Lotfi FLUENT 1 August 26, 2007 12:58
DEFINE_DPM_OUTPUT macro UDF HELP Puneet FLUENT 3 November 28, 2003 10:55


All times are GMT -4. The time now is 15:18.