|
[Sponsors] |
heat and vapour transfer with species transport |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
October 9, 2015, 02:12 |
heat and vapour transfer with species transport
|
#1 |
Member
sean read
Join Date: Sep 2014
Location: Melbourne, Australia
Posts: 41
Rep Power: 12 |
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.; } 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 |
|
November 2, 2015, 01:47 |
|
#2 |
Member
sean read
Join Date: Sep 2014
Location: Melbourne, Australia
Posts: 41
Rep Power: 12 |
no takers on this?
|
|
November 30, 2015, 10:01 |
|
#3 |
New Member
Join Date: Nov 2015
Posts: 5
Rep Power: 10 |
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.
|
|
Tags |
heat flux udf, species transport model |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Water subcooled boiling | Attesz | CFX | 7 | January 5, 2013 04:32 |
Specifying volume/Mass fraction in Species Transport for problem without inlet | tanjinjack | FLUENT | 1 | October 9, 2011 05:42 |
Constant velocity of the material | Sas | CFX | 15 | July 13, 2010 09:56 |
Vapour formation with heat and mass transfer | Rajit | FLUENT | 6 | August 24, 2006 06:34 |
Water vapour condensation in CFX-5.7.1 | hdj | CFX | 1 | November 27, 2005 08:15 |