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

Law 2 Evaporated Droplet Model: When particle reach Tvap, then particle temp drop

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 13, 2022, 11:23
Default Law 2 Evaporated Droplet Model: When particle reach Tvap, then particle temp drop
  #1
Wut
New Member
 
Wut
Join Date: Jul 2022
Posts: 1
Rep Power: 0
Wut is on a distinguished road
Hi

My simulation is the drying process, so i selected droplet particle and enable species transport. In DPM, I use custom law 1 and 2.

Law 1: Heating when Tp < Tvap
Law 2: Vaporization when Tp > Tvap

By drying concept for moisture particle, the Tvap will equal to Twb of hot air. Let say my moisture particle has initial temp 317 K and Twb of hot air is 319 K.
The particle shall be heated up from 317 K to 319 K and after that particle shall have temperature 319 K until end of drying process.
Some paper said this shall use UDF to solve this bug. The below is my UDF code. The key point is I would like to keep particle tempature constant 319 K when using Law2.

#include "udf.h"
#include "dpm.h"
DEFINE_DPM_SWITCH(dpm_switch, p, coupled)
{
Material *m = P_MATERIAL(p);
if(P_T(p) < DPM_VAPOR_TEMP(p, m))
P_CURRENT_LAW(p) = DPM_LAW_INITIAL_INERT_HEATING;
else
P_CURRENT_LAW(p) = DPM_LAW_VAPORIZATION;
}
Attached Images
File Type: png Picture to Show Particle temp drop.png (54.1 KB, 5 views)
Wut is offline   Reply With Quote

Reply

Tags
law 2 evap model, particel temp drop


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
interFoam wave propagation and explosion of Courant number and residuals ChiaraViola OpenFOAM Running, Solving & CFD 1 June 26, 2019 06:36
dispersion model with lagragian particle tracking model for incompressible flows eelcovv OpenFOAM Running, Solving & CFD 54 April 10, 2018 10:36
droplet separation off a particle in turbulent stream anonymous_89 Main CFD Forum 0 August 22, 2013 14:40
Water subcooled boiling Attesz CFX 7 January 5, 2013 04:32
Check particle impaction with User Fortran Julian K. CFX 3 January 12, 2012 10:46


All times are GMT -4. The time now is 19:44.