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

remove particle at interface fluent udf

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 10, 2021, 01:42
Default remove particle at interface fluent udf
  #1
New Member
 
Joonwoo Park
Join Date: Feb 2021
Posts: 1
Rep Power: 0
Joonwoo is on a distinguished road
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
Joonwoo is offline   Reply With Quote

Reply

Tags
dpm, fluent, particle, remove, udf


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
Table bounds warnings at: END OF TIME STEP CFXer CFX 4 July 16, 2020 23:44
Radiation in semi-transparent media with surface-to-surface model? mpeppels CFX 11 August 22, 2019 07:30
How to solve UDF compilation problems in Fluent. pakk Fluent UDF and Scheme Programming 16 September 10, 2018 02:48
Wrong flow in ratating domain problem Sanyo CFX 17 August 15, 2015 06:20
DPM UDF particle position using the macro P_POS(p)[i] dm2747 FLUENT 0 April 17, 2009 01:29


All times are GMT -4. The time now is 14:20.