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

particles escaping instead of aborting

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 30, 2015, 13:29
Default particles escaping instead of aborting
  #1
New Member
 
anonymous
Join Date: Mar 2015
Posts: 25
Rep Power: 11
sjbub is on a distinguished road
I'm trying to have the particles "stick" or abort their paths at the wall with these particular boundary conditions but they are being labeled as escaped by fluent during the dpm. Anyone else seen this?

PHP Code:
/**********************************************************************/
/*UDF Particle Sticking Criteria*/
/*funz Theory*/
/**********************************************************************/

#include "udf.h"
#include "dpm.h"
DEFINE_DPM_BC(my_trapbc,p,t,f,f_normal,dim)
{
    
/*Variable declarations*/
    
real capture_vel;
    
real diameter;
    
real vmag;  /*particle velocity magnitude*/
    
real alpha/* angle of particle path with face normal */
    
real vn=0.;
    
real nor_coeff 0.99;
    
real tan_coeff 0.99;
    
real normal[3];
    
real NV_VEC(x);
    
int iidim dim/*working counter for script*/


    /*Varaible evaluations*/
    
diameter=P_DIAM(p);
    
vmag=0;

    
/*Calculate capture velocity*/
    
capture_vel=1000;

    
/*Calculate velocity magnitude of particle*/
    
for(i=0i<dimi++)
    {
        
vmag += P_VEL(p)[i]*P_VEL(p)[i];
    }
    
vmag sqrt(vmag);

    
/*if vmag is greater than capvel then particle is fast and bounces*/
    
if(vmag capture_vel)
    {
        for (
i=0i<idimi++)
        
normal[i] = f_normal[i];
        if(
p->type==DPM_TYPE_INERT)
          {
            
alpha M_PI/2. acos(MAX(-1.,MIN(1.,NV_DOT(normal,P_VEL(p))/
                
MAX(NV_MAG(P_VEL(p)),DPM_SMALL))));
        if ((
NNULLP(t)) && (THREAD_TYPE(t) == THREAD_F_WALL))
            
F_CENTROID(x,f,t);

        
/* calculate the normal component, rescale its magnitude by
        the coefficient of restitution and subtract the change */

        /* Compute normal velocity. */
        
for(i=0i<idimi++)
        
vn += P_VEL(p)[i]*normal[i];

        
/* Subtract off normal velocity. */
        
for(i=0i<idimi++)
        
P_VEL(p)[i] -= vn*normal[i];

        
/* Apply tangential coefficient of restitution. */
        
for(i=0i<idimi++)
        
P_VEL(p)[i] *= tan_coeff;

        
/* Add reflected normal velocity. */
        
for(i=0i<idimi++)
        
P_VEL(p)[i] -= nor_coeff*vn*normal[i];

        
/* Store new velocity in P_VEL0 of particle */
        
for(i=0i<idimi++)
        
P_VEL0(p)[i] = P_VEL(p)[i];
        
        return 
PATH_ACTIVE;
    }
    else if (
vmag capture_vel)
        {
        for(
i=0i<dimi++)
            
P_VEL(p)[i] = 0;
        }
    
/*Stop tracking the particle*/
    
return PATH_ABORT;    
    }
}
/**********************************************************************/ 
sjbub is offline   Reply With Quote

Old   March 30, 2015, 16:00
Talking
  #2
New Member
 
anonymous
Join Date: Mar 2015
Posts: 25
Rep Power: 11
sjbub is on a distinguished road
I believe it may be my else statement at the end.
sjbub is offline   Reply With Quote

Old   March 30, 2015, 16:11
Default
  #3
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
If they're being reflected then that suggests that 'vmag' is always greater than 'capture_vel'. A velocity of 1000 m/s is about Mach 3 in air... what context has particles travelling at this speed?
`e` is offline   Reply With Quote

Old   March 30, 2015, 16:18
Default
  #4
New Member
 
anonymous
Join Date: Mar 2015
Posts: 25
Rep Power: 11
sjbub is on a distinguished road
Quote:
Originally Posted by `e` View Post
If they're being reflected then that suggests that 'vmag' is always greater than 'capture_vel'. A velocity of 1000 m/s is about Mach 3 in air... what context has particles travelling at this speed?
It doesn't represent anything real, I wanted to try to force everything to bounce off the wall and exit. My previous udf had only about 2% of the mass exiting the domain and I was thinking that my udf wasn't telling the particles to return to their path if they didn't meet the capture velocity criteria.
sjbub is offline   Reply With Quote

Old   March 30, 2015, 17:02
Default
  #5
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
If the capture velocity is less than the particle velocity at the wall then they should stick (according to PATH_ABORT). Try printing a message when the code reaches the line before aborting the particle path to check whether or not this line of code is being executed.

Code:
/*Stop tracking the particle*/
Message("A particle is about to be aborted...\n");
return PATH_ABORT;
Another possible cause is if you've forgotten to enable the user-defined boundary condition for your wall (because the default is reflect on walls and it sounds like that's happening).
`e` is offline   Reply With Quote

Old   March 31, 2015, 03:29
Default
  #6
Senior Member
 
Join Date: Nov 2013
Posts: 1,965
Rep Power: 26
pakk will become famous soon enough
Just a minor point: when your particles are smaller than the capture velocity, your code effectively does this:

Code:
for(i=0; i<dim; i++)
  P_VEL(p)[i] = 0;
}
return PATH_ABORT;
So first you set the velocity of the particle to zero, and then you tell Fluent to stop following the particle. You don't have to set the velocity of the particle to zero, you can just return PATH_ABORT and the particle will be stuck.
pakk is offline   Reply With Quote

Old   March 31, 2015, 20:42
Default
  #7
Member
 
Join Date: Mar 2015
Posts: 30
Rep Power: 11
mimi0201 is on a distinguished road
you just used exactly same code as i used, in determining the particle impacting on the wall!!! vmag cannot exceed 1000m/s right???
mimi0201 is offline   Reply With Quote

Old   April 6, 2015, 11:11
Default
  #8
New Member
 
anonymous
Join Date: Mar 2015
Posts: 25
Rep Power: 11
sjbub is on a distinguished road
Yes, true the velocity cannot be that high. I was testing my udf to force everything to stick by putting a velocity that I know would not be possible.

I had my original UDF set up incorrectly. I had the velocity capture part set up right but I forgot to tell the particle what to do (continue on its path) if it didnt meet the criteria.
sjbub is offline   Reply With Quote

Old   April 6, 2015, 11:12
Default
  #9
New Member
 
anonymous
Join Date: Mar 2015
Posts: 25
Rep Power: 11
sjbub is on a distinguished road
Quote:
Originally Posted by pakk View Post
Just a minor point: when your particles are smaller than the capture velocity, your code effectively does this:

Code:
for(i=0; i<dim; i++)
  P_VEL(p)[i] = 0;
}
return PATH_ABORT;
So first you set the velocity of the particle to zero, and then you tell Fluent to stop following the particle. You don't have to set the velocity of the particle to zero, you can just return PATH_ABORT and the particle will be stuck.
oh okay thanks pakk
sjbub is offline   Reply With Quote

Old   April 7, 2015, 04:36
Default
  #10
Senior Member
 
Join Date: Mar 2014
Posts: 375
Rep Power: 13
hwet is on a distinguished road
I was going over the same example in the UDF manual today, could you tell what is the point of adding and then subtracting the same normal component from the particle velocity.
Also how does the above code actually make the particle reflect, i think it is just making the particle hit the wall again with a slightly smaller velocity again and again?
hwet is offline   Reply With Quote

Old   April 7, 2015, 05:31
Default
  #11
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
They're not adding and removing the normal velocity from the particle. They're evaluating the normal velocity of the particle, storing this value in the variable 'vn', and then removing this value from the particle (therefore the particle is motionless). Next, they apply a new reflected velocity to the particle based on 'vn' but scaled back by a coefficient of restitution.
`e` is offline   Reply With Quote

Old   April 7, 2015, 05:39
Default
  #12
Senior Member
 
Join Date: Mar 2014
Posts: 375
Rep Power: 13
hwet is on a distinguished road
Shouldn't the new reflected velocity have a negative component to change its direction (reflected), what they have done appears to be just reducing the velocity of the particle by a certain coefficient, that i think will not make it change its direction to be reflected, it will still be moving towards the wall just with a changed velocity and a different angle maybe?
hwet is offline   Reply With Quote

Old   April 7, 2015, 06:24
Default
  #13
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
Ok, let's work through this reflection code with an example.

Suppose our particle exists in 2-D and has a velocity vector p = (3,-2) m/s. The wall is parallel to the x-axis and therefore has a normal unit vector of n = (0,1). Units are absent to keep simplicity in the following text.

Code:
/* Compute normal velocity. */
for(i=0; i<idim; i++)
vn += P_VEL(p)[i]*normal[i];
vn = p dot n = (3,-2) dot (0,1) = -2 (the same speed our particle was travelling towards the wall, "normal component")

Code:
/* Subtract off normal velocity. */
for(i=0; i<idim; i++)
P_VEL(p)[i] -= vn*normal[i];
p = p - vn*n = (3,-2) - (-2)*(0,1) = (3,0) (now the normal component for our particle is zero)

Code:
/* Apply tangential coefficient of restitution. */
for(i=0; i<idim; i++)
P_VEL(p)[i] *= tan_coeff;
Suppose the tangential coefficient is 0.5:
p = p*tangential_coefficient = (3,0)*0.5 = (1.5,0) (the tangential speed is reduced but the direction remains the same)

Code:
/* Add reflected normal velocity. */
for(i=0; i<idim; i++)
P_VEL(p)[i] -= nor_coeff*vn*normal[i];
Suppose the normal coefficient is 0.5:
p = p - normal_coefficient*vn*n = (1.5,0) - 0.5*(-2)*(0,1) = (1.5,1) (the normal speed is reduced and changes direction)

Code:
/* Store new velocity in P_VEL0 of particle */
for(i=0; i<idim; i++)
P_VEL0(p)[i] = P_VEL(p)[i];
Some DPM solvers may use the velocity of the particle as it enters the current cell for calculating the next velocity or position.

As we expect, our reflected velocity, (1.5,1) m/s, has been reduced and directed away from the wall. This code works.
sjbub likes this.
`e` is offline   Reply With Quote

Old   April 7, 2015, 08:40
Default
  #14
Senior Member
 
Join Date: Mar 2014
Posts: 375
Rep Power: 13
hwet is on a distinguished road
Best explanation ever! Thanks
hwet is offline   Reply With Quote

Old   April 8, 2015, 01:38
Default
  #15
Senior Member
 
Join Date: Mar 2014
Posts: 375
Rep Power: 13
hwet is on a distinguished road
Could you tell why in the code originally posted above, the angle is calculated, i dont see it being use anywhere?
hwet is offline   Reply With Quote

Old   April 8, 2015, 03:03
Default
  #16
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
The code in the original post of this thread is copied from an example in the UDF Manual. Perhaps the developers writing the manual wanted to provide this code for calculating the angle in case a user wanted this value.
`e` is offline   Reply With Quote

Old   April 8, 2015, 03:10
Default
  #17
Senior Member
 
Join Date: Mar 2014
Posts: 375
Rep Power: 13
hwet is on a distinguished road
Hmm that makes sense.

Was just wondering if the angle of incidence is used in anyway in the reflected velocity calculation for this particular example, apparently it is calculated but not used.

Actually that example is for reflected particles as well, and explaining the procedure it states 'First, the angle of incidence is calculated. Next, the normal particle velocity, with respect to wall...' So i thought I was just missing out on something. Thanks
hwet is offline   Reply With Quote

Old   April 8, 2015, 03:16
Default
  #18
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
What might have happened, is developer A wrote the code using the angle of incidence (component-wise method). Then, a second developer B was tasked with optimising or reviewing this code and changed to using the dot product and normal vector but forgot to edit the comments and remove the angle calculation. Who knows, there's a few things in Fluent I don't understand their motivations for...
`e` is offline   Reply With Quote

Old   April 15, 2015, 23:55
Default
  #19
Member
 
Join Date: Mar 2015
Posts: 30
Rep Power: 11
mimi0201 is on a distinguished road
Im just wondering what does this sentence do in this code? "if ((NNULLP(t)) && (THREAD_TYPE(t) == THREAD_F_WALL))
F_CENTROID(x,f,t);"
mimi0201 is offline   Reply With Quote

Old   April 16, 2015, 00:51
Default
  #20
`e`
Senior Member
 
Join Date: Mar 2015
Posts: 892
Rep Power: 18
`e` is on a distinguished road
Code:
F_CENTROID(x,f,t);
This macro returns the coordinates of the centroid of the face f belonging to thread t.

Code:
if ((NNULLP(t)) && (THREAD_TYPE(t) == THREAD_F_WALL))
This if statement restricts when the above macro is called. Specifically if this thread exists (has storage allocated, NNULLP(t) returns true) and if this thread is a wall boundary type (THREAD_TYPE(t) == THREAD_F_WALL).
mimi0201 likes this.
`e` is offline   Reply With Quote

Reply


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
how to determine the number of particles injected. welch FLUENT 2 January 18, 2024 04:08
trying to simulate two-phase jet flow with particles in surface injection ajkratos FLUENT 5 March 3, 2015 21:33
Conditional Release of DPM particles - UDF nvschandra Fluent UDF and Scheme Programming 0 December 10, 2013 11:02
particles model ati_ros61 FLOW-3D 3 December 6, 2009 16:03
Particles escaping geometry - through seams? Jeremy FLUENT 1 July 30, 2008 03:29


All times are GMT -4. The time now is 23:50.