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

DEFINE_DPM_DRAG - fluid phase velocity correction

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 20, 2021, 06:25
Post DEFINE_DPM_DRAG - fluid phase velocity correction
  #1
New Member
 
Join Date: Nov 2020
Posts: 3
Rep Power: 5
tarjeivs is on a distinguished road
Hi!

A Lagrangian (one-way) tracking is used to model submicron particle dispersion and deposition in a turbulent channel flow. The discrete random walk (DRW) model in Fluent gives bad results for submicron particles, so I want to implement a fluctuating correction to the fluid phase velocity in the DEFINE_DPM_DRAG macro:

u = \bar{u} + u',

Here:
c->V[i] = \bar{u} // from the cell of the fluid simulation
p->Vprime[i] = u' // modelled with the DRW

I call the fluid phase velocity and change it like this:

cphase_state_t *c = &(p->cphase[0]);
for (i=0; i<dim; i++) c->V[i] += p->Vprime[i] ; (Equation *)

Based on this velocity a new particle Reynolds number is found, and 18*Cd*Re/24 is returned. Then to my question:

In what way has equation* changed the cell velocity (u_cell = c->V[i]) and the velocity field?

1) Just for this timestep? In that case, u in the Lagrangian tracking equation includes the modeled fluctuating velocity:

d/dt(v_p) = F_D (u-v_p) (Equation **)

Here, F_D = mu/(rho_p*d_p^2)*(18*Cd*Re/24).


2) Only inside the DEFINE_DPM_DRAG drag? u, in equation **, is not affected by the velocity correction.


3) For the whole simulation? The velocity field is changing during the simulation because of fluctuating velocity corrections from all the particles.

In other words, is this cell velocity (c->V[i]) called in the Lagrangian tracking equation?
tarjeivs is offline   Reply With Quote

Reply

Tags
define_dpm_drag, discrete phase model, discrete random walk, lagrangian particles, 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
[OLAFLOW] The OLAFLOW Thread Phicau OpenFOAM Community Contributions 457 March 27, 2024 00:59
Question about adaptive timestepping Guille1811 CFX 25 November 12, 2017 17:38
Difficulty in calculating angular velocity of Savonius turbine simulation alfaruk CFX 14 March 17, 2017 06:08
Error in Two phase (condensation) modeling adilsyyed CFX 15 June 24, 2015 19:42
Velocity profile disturbance due to loss coefficient rks171 Main CFD Forum 3 May 25, 2012 17:30


All times are GMT -4. The time now is 07:09.