|
[Sponsors] |
Law 2 Evaporated Droplet Model: When particle reach Tvap, then particle temp drop |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 13, 2022, 11:23 |
Law 2 Evaporated Droplet Model: When particle reach Tvap, then particle temp drop
|
#1 |
New Member
Wut
Join Date: Jul 2022
Posts: 1
Rep Power: 0 |
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; } |
|
Tags |
law 2 evap model, particel temp drop |
|
|
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 |