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

How can I make a particle reach a wall as close as possible in FLUENT DPM?

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By Manathan

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 7, 2015, 03:39
Default How can I make a particle reach a wall as close as possible in FLUENT DPM?
  #1
New Member
 
Jasvir
Join Date: Jun 2015
Posts: 5
Rep Power: 10
Jazz is on a distinguished road
Hey everyone,

I am modelling a solidification problem where we are tracking how inclusions move in a caster. They are represented by inert particles and I needed a way by which I can make a particle reach a wall/front as close as possible so that the distance between the particle and the wall is in nanometer scale. I am using*steady particle tracking and my distance comes out to be of order of 10^(-5)m. Even after changing the step length factor the distance comes out to be of the same order.
Jazz is offline   Reply With Quote

Old   July 7, 2015, 05:40
Default
  #2
New Member
 
Join Date: Apr 2015
Posts: 28
Rep Power: 11
Manathan is on a distinguished road
Try to decrease the tolerance in tracking parameters in DPM model (numerics if I remember well)
Jazz likes this.
Manathan is offline   Reply With Quote

Old   June 10, 2022, 06:29
Default
  #3
New Member
 
echo
Join Date: Jun 2022
Posts: 7
Rep Power: 3
2424464575 is on a distinguished road
Quote:
Originally Posted by Jazz View Post
Hey everyone,

I am modelling a solidification problem where we are tracking how inclusions move in a caster. They are represented by inert particles and I needed a way by which I can make a particle reach a wall/front as close as possible so that the distance between the particle and the wall is in nanometer scale. I am using*steady particle tracking and my distance comes out to be of order of 10^(-5)m. Even after changing the step length factor the distance comes out to be of the same order.
Recently, I was doing the inclusion behavior simulation of molten steel after solidification. The solidification part has been calculated. Now I am ready to add the calculation of inclusion particles. I have encountered problems in UDF compilation. Do you have a teacher or senior brother to discuss it together? Thank you. My email: 2424464575@qq.com , thanks again! Good wishes!
My code is as follows:

1. When the volume fraction of liquid phase encountered by the particles is less than 0.6, the particles are considered to be captured by the solidified shell of liquid steel.


#include"udf.h"

DEFINE_DPM_LAW(stop_dpm_law,p,ci)
{
real fl;
cell_t c=P_CELL(p);/* Get the cell and thread that the particle is currently in */
Thread *t=P_CELL_THREAD(p);/* pointer to the thread of the cell that the particle is currently in*/
fl=C_LIQF(c,t);/* liquid fraction in a cell*/
if(fl<=0.6)
P_VEL(p)[0]=0.0,/* particle velocity component. */
P_VEL(p)[1]=0.0,
P_VEL(p)[2]=0.0;
else
return P_VEL(p);
}

What are the problems in my code? Please help me. Thank you!
2424464575 is offline   Reply With Quote

Reply

Tags
boundary condition, dpm in fluent, fluent udfs, solidification/melting


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
Radiation interface hinca CFX 15 January 26, 2014 17:11
The fluent stopped and errors with "Emergency: received SIGHUP signal" yuyuxuan FLUENT 0 December 3, 2013 22:56
Water subcooled boiling Attesz CFX 7 January 5, 2013 03:32
Hooking a DPM Particle Heat and Mass Transfer UDF to FLUENT subhankar_bhandari Fluent UDF and Scheme Programming 0 August 19, 2010 03:09
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 02:57.