|
[Sponsors] |
I receive "temperature limited to ... " after I Compile my UDF and start computing |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
November 5, 2020, 08:46 |
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 |
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? |
|
November 5, 2020, 10:27 |
|
#2 | |
Senior Member
Join Date: Nov 2013
Posts: 1,965
Rep Power: 27 |
Quote:
|
||
November 5, 2020, 11:04 |
|
#3 |
Member
abdo
Join Date: Apr 2018
Posts: 42
Rep Power: 7 |
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) } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Compile Fluent UDF with Windows 10 | daniel_pramudita | FLUENT | 15 | May 13, 2020 23:29 |
ATTN ALL: SOLUTON TO UDF COMPILE PROBLEM | Rizwan | Fluent UDF and Scheme Programming | 40 | March 18, 2018 07:05 |
What is the command to start a batch file with UDF? | h0rst | Fluent UDF and Scheme Programming | 1 | May 24, 2017 04:21 |
interpret or compile an UDF (emergency) | Lotfi | FLUENT | 1 | August 26, 2007 13:58 |
DEFINE_DPM_OUTPUT macro UDF HELP | Puneet | FLUENT | 3 | November 28, 2003 11:55 |