|
[Sponsors] |
UDF for defining a body force in Singel ROtating Reference Frame |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
February 9, 2010, 02:06 |
UDF for defining a body force in Singel ROtating Reference Frame
|
#1 |
New Member
Teymour
Join Date: Apr 2009
Location: Seattle
Posts: 25
Rep Power: 17 |
Dear all,
I am trying to use Discrete Phase Model (DPM) to look at particle behavior in the solution of my Single Rotating Reference Frame (SRF) which contains my countinues fluid. As long as SRF has rotating frames, therefore a Centrifugal and Coriolis term will be added to the equation of force balance of the particles. What I need to do, is writing a UDF which calculates these two forces. Then compile it with my model, so that it cancels those two additional forces. I wrote a UDF based on UDF manual section 2.5.2 file:///usr/ansys_inc/v120/fluent//f...udf/node67.htm as follow, but it did not work out and I get error when I want to compile it. I was wondering if anyone can help me with that. /* UDF for computing the force due rotating refrence frame on a particle */ #include "udf.h" #define ROHR 1.5 /* density ratio of particles (roh/roh_p) */ #define OMEGA 1.78 /* angular velocity [rad/sec] */ /* Calculate some of centrifugal & coriolis force on a particle */ /* axis of rotation is "Y" and there are two force components in "X" and "Z" */ /* Fx= (1-ROHR)*OMEGA^2*x + 2*OMEGA*(u_z,p - ROHR*u_z), Fz= (1-ROHR)*OMEGA^2*z + 2*OMEGA*(u_x,p - ROHR*u_x) */ DEFINE_DPM_BODY_FORCE(particle_body_force,p,i) { real bforce=0; if(P_TIME(p)>=TSTART) { if(i==0) bforce=(1-ROHR)*OMEGA^2*P_INIT_POS(p)[0] + 2*OMEGA*(P_VEL(p)[2] - ROHR*rel_vel[2]); else if(i==2) bforce=(1-ROHR)*OMEGA^2*P_INIT_POS(p)[2] + 2*OMEGA*(P_VEL(p)[0] - ROHR*rel_vel[0]); } else bforce=0.0; /* an acceleration should be returned */ return (bforce/P_MASS(p)); Thank you for your help in advance. -teymourj Last edited by teymourj; February 9, 2010 at 02:09. Reason: Correcting UDF lines |
|
July 28, 2011, 14:46 |
Solution!
|
#2 |
New Member
Teymour
Join Date: Apr 2009
Location: Seattle
Posts: 25
Rep Power: 17 |
I found the solution to this problem. Read the MRF/SRF limitations for tracking particles in ANSYS FLUENT user's guide at:
// User's Guide :: 1 // 10. Modeling Flows with Moving Reference Frames // 10.3. Flow in Multiple Moving Reference Frames // 10.3.1. The Multiple Reference Frame Model Note that the particle track in rotating reference frame for inert particles is MEANINGLESS (see the user's guide). You should use the TUI command to track particles and extract their data in absolute reference frame. Best, Teymour |
|
July 28, 2011, 18:45 |
|
#3 | |
Member
Ming Cai
Join Date: Mar 2011
Posts: 50
Rep Power: 15 |
THANK YOU SO MUCH!!!!!!
That's why I can not get anyting. With rotating reference frame. Ansys customer support seems to made a mistake, I had asked them whether I can inject particles without being affected by rotation reference frame and they said no...... I had been stucked here for a long time. Thanks for your help! Quote:
|
||
August 18, 2016, 15:33 |
|
#4 |
Member
mahya
Join Date: Jul 2016
Posts: 45
Rep Power: 10 |
can you explain it for me ?
i have problem in it yet |
|
August 18, 2016, 16:01 |
Please be specific about your problem/question.
|
#5 |
New Member
Teymour
Join Date: Apr 2009
Location: Seattle
Posts: 25
Rep Power: 17 |
@mahayheidari: Please be specific about your problem and what you are not understanding and I will provide you inputs.
This thread is very old and I am not sure what you need me to explain. Explain your problem from scratch. |
|
August 18, 2016, 16:07 |
|
#6 |
Member
mahya
Join Date: Jul 2016
Posts: 45
Rep Power: 10 |
I have a prticle in a fluid
And the particle have transitional and rotational movement I simulate it But the particle just have transitional movement And it cant rotate I want to know what should i do Thanks |
|
August 18, 2016, 16:09 |
|
#7 |
New Member
Teymour
Join Date: Apr 2009
Location: Seattle
Posts: 25
Rep Power: 17 |
What are the models you are using to simulate the flow field and particle respectively in FUENT?
|
|
August 18, 2016, 16:13 |
|
#8 |
Member
mahya
Join Date: Jul 2016
Posts: 45
Rep Power: 10 |
There is a canal that a circular particle move in it
If you want i will sent the picture |
|
August 18, 2016, 16:15 |
|
#9 |
Member
mahya
Join Date: Jul 2016
Posts: 45
Rep Power: 10 |
Dynamic mesh
Remeshing Smoothing 6dof |
|
August 18, 2016, 16:33 |
|
#10 |
New Member
Teymour
Join Date: Apr 2009
Location: Seattle
Posts: 25
Rep Power: 17 |
Well to be honest these informations are not helpful for me to help you.
This thread was about changing the Reference Frame for particle tracking of particles using DRW model coupled with the SRF or MRF model. In the SRF or MRF model RANS equations are solved in rotating reference frame and particles are tracked in that frame. It seems that you are using Dynamic mesh model in which the movement of particles should be physical by default. Hope this helps. |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Single rotating reference frame | Belete Kiflie | FLUENT | 7 | November 9, 2018 10:54 |
DPM and Forces in rotating reference frame | Xiana | FLUENT | 3 | May 8, 2015 07:35 |
Error with Wmake | skabilan | OpenFOAM Installation | 3 | July 28, 2009 01:35 |
Moving Reference Frame UDF | Mark | FLUENT | 1 | March 17, 2008 18:57 |
rotating reference frame | Pei-Ying Hsieh | Main CFD Forum | 1 | April 5, 2006 09:54 |