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

heat and vapour transfer with species transport

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 9, 2015, 01:12
Default heat and vapour transfer with species transport
  #1
Member
 
sean read
Join Date: Sep 2014
Location: Melbourne, Australia
Posts: 41
Rep Power: 11
seanread is on a distinguished road
I'm trying to simulate heat and vapour transfer in a complex geometry (nasal cavity).

I'm using species transport to simulate the vapour transfer, but would like to account for the latent heat of evaporation.

I'm thinking a udf to modify the heat flux term seems like the right direction but I'm not so confident with udf writing, and not sure how to go about it.

I found this online for heat flux coefficient modification:

Code:
/***********************************************************************/
/* UDF for specifying the diffusive heat flux between a wall and      
*/
/* neighboring cells                                                  
*/
/***********************************************************************/

#include "udf.h"

static real h = 0.;             /* heat transfer coefficient (W/m^2 C)
*/

DEFINE_ADJUST(htc_adjust, domain)
{
  /* Define the heat transfer coefficient. */

  h = 120;
}

DEFINE_HEAT_FLUX(heat_flux, f, t, c0, t0, cid, cir)
{
  cid[0] = 0.;
  cid[1] = h;
  cid[2] = h;
  cid[3] = 0.;
}
I would think that I could maybe modify this, for example,

cid[0] = -Latent heat of evaporation * water flux,

but I'm not sure how to pair my water flux variable to the value calculated in fluent. Can someone point me in the right direction with this?

thanks,

Sean
seanread is offline   Reply With Quote

Old   November 2, 2015, 00:47
Default
  #2
Member
 
sean read
Join Date: Sep 2014
Location: Melbourne, Australia
Posts: 41
Rep Power: 11
seanread is on a distinguished road
no takers on this?
seanread is offline   Reply With Quote

Old   November 30, 2015, 09:01
Default
  #3
New Member
 
Join Date: Nov 2015
Posts: 5
Rep Power: 10
amasugi14 is on a distinguished road
Hi, im doing almost same simulation as yours (airflow pattern within nasal cavity). I am also having some problems regarding the humidty. Maybe we could discuss more to gain some insights. Please email me if you interested, amasugi14@yahoo.co.
amasugi14 is offline   Reply With Quote

Reply

Tags
heat flux udf, species transport model


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
Water subcooled boiling Attesz CFX 7 January 5, 2013 03:32
Specifying volume/Mass fraction in Species Transport for problem without inlet tanjinjack FLUENT 1 October 9, 2011 04:42
Constant velocity of the material Sas CFX 15 July 13, 2010 08:56
Vapour formation with heat and mass transfer Rajit FLUENT 6 August 24, 2006 05:34
Water vapour condensation in CFX-5.7.1 hdj CFX 1 November 27, 2005 07:15


All times are GMT -4. The time now is 01:49.