|
[Sponsors] |
February 10, 2021, 02:42 |
remove particle at interface fluent udf
|
#1 |
New Member
Joonwoo Park
Join Date: Feb 2021
Posts: 1
Rep Power: 0 |
Hello,
I want to simulate the bubble column problem (VOF+DPM). In the simulation, I want to eliminate the bubble at the interface. Thus, I should make a udf in fluent. From the other question, I already made a udf as follows. #include "udf.h" #include "dpm.h" DEFINE_DPM_SCALAR_UPDATE(stream_index, c, t, initialize, p) { #if PARALLEL Thread *phase_t = THREAD_SUB_THREAD(t, 1); if (C_VOF(c, phase_t) >= 0.5) p->stream_index = -1; #endif } This function is compiled well, but the problem is not working in my simulation. I want to eliminate each bubble at the interface. However, each bubble is deleted at outlet. How can I define the remove particle at interface using udf? Best regards, Joonwoo |
|
Tags |
dpm, fluent, particle, remove, udf |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Table bounds warnings at: END OF TIME STEP | CFXer | CFX | 4 | July 17, 2020 00:44 |
Radiation in semi-transparent media with surface-to-surface model? | mpeppels | CFX | 11 | August 22, 2019 08:30 |
How to solve UDF compilation problems in Fluent. | pakk | Fluent UDF and Scheme Programming | 16 | September 10, 2018 03:48 |
Wrong flow in ratating domain problem | Sanyo | CFX | 17 | August 15, 2015 07:20 |
DPM UDF particle position using the macro P_POS(p)[i] | dm2747 | FLUENT | 0 | April 17, 2009 02:29 |