|
[Sponsors] |
May 14, 2008, 06:01 |
udf for fuel release and combustion
|
#1 |
Guest
Posts: n/a
|
Hello at the moment i have a fluid zone where at a cetrain temperature the cell release fuel...(udf see below) how can i extend the udf for a request at the cell that at a certain energy load the cells release fuel.
thanks for answering #include "udf.h" #define CON 0.38 DEFINE_SOURCE(cell_m_source, cell, thread, dS, eqn) { real source; if (C_T (cell, thread) <=800.) { /* source term */ source=CON; /* derivative of source term w.r.t. x-velocity. */ dS[eqn]=0; } else source=dS[eqn]=0.; return source; } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Oxy Fuel combustion | Ant | FLUENT | 2 | April 4, 2018 03:53 |
Diesel fuel combustion | Marek | CFX | 1 | November 30, 2008 14:39 |
Combustion with blended fuel | torvic | OpenFOAM Running, Solving & CFD | 3 | April 14, 2008 17:22 |
2 solid fuel combustion | giant | Main CFD Forum | 0 | May 24, 2005 07:46 |
Fuel blends Combustion | Sheng | FLUENT | 2 | August 21, 2002 20:07 |