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

Simulation of Evaporation in Fluent

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 3, 2018, 15:06
Default Simulation of Evaporation in Fluent
  #1
New Member
 
Zeeshan Ahmad Khan
Join Date: Sep 2018
Posts: 10
Rep Power: 8
zakmt293 is on a distinguished road
Hy guys I am simulating flow boiling and the geometry is 2-dimensional with micro channel. Can someone help me that which UDF would be better for such simulation in these two. Your response would serve as a guidance for me Thank You

#include "udf.h"
#include "sg_mphase.h"
#define T_SAT 373
#define LAT_HT 2455.1345e3
DEFINE_SOURCE(vap_src, cell, pri_th, dS, eqn)
{
Thread *mix_th, *sec_th;
real m_dot_v;
mix_th = THREAD_SUPER_THREAD(pri_th);
sec_th = THREAD_SUB_THREAD(mix_th, 1);
/*m_dot_v=0.;*/
if(C_T(cell, mix_th)>=T_SAT)
{
m_dot_v = 0.1*C_VOLUME(cell, sec_th)*C_R(cell, sec_th)*fabs(C_T(cell, sec_th) - T_SAT)/T_SAT;

dS[eqn] = 0.;
}
return m_dot_v ;
}

Second one
#include "udf.h"
#define T_SAT 373.8
#define LAT_HT 2455e3
#define k_eff 0.05
#define dx 0.05e-3
DEFINE_SOURCE(vap_src,cell,th,dS,eqn) /*vapor source*/
{
real m_v;
m_v=0.0;
if (C_T(cell,th)>T_SAT)
{
m_v=k_eff*(C_T(cell,th)-T_SAT)/(LAT_HT*C_VOLUME(cell,th));
dS[eqn]=0;
}
return m_v;
}
zakmt293 is offline   Reply With Quote

Old   November 9, 2018, 18:46
Default
  #2
New Member
 
vivek
Join Date: Aug 2018
Posts: 14
Rep Power: 8
vivek162 is on a distinguished road
are you simulating two-phase closed thermosyphon using VOF model?
vivek162 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
Rotating motion simulation in fluent yusuf.5ayat ANSYS 0 January 10, 2017 07:18
FSI with Fluent and NX Advanced Simulation ZenCef FLUENT 0 December 21, 2016 17:02
Why OpenFOAM much slower than fluent in NACA0012 simulation (transsonic situation) xucloud77 OpenFOAM 5 October 24, 2016 10:23
Simulation on fluent 14 NAD FLUENT 0 September 11, 2013 03:05
LSR (Land speed record) car simulation on FLUENT Maxime31850 FLUENT 2 May 1, 2013 12:15


All times are GMT -4. The time now is 15:06.