CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

How to resolve this >> liquid @ fixed SATURATION TEMPERATURE

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 7, 2019, 03:02
Default How to resolve this >> liquid @ fixed SATURATION TEMPERATURE
  #1
Senior Member
 
Kumaresh
Join Date: Oct 2016
Posts: 349
Rep Power: 11
Kummi is on a distinguished road
Send a message via Yahoo to Kummi
Hello everyone,

I want to set the liquid evaporation at the interface. The interface is at the fixed saturation temperature of T = 100deg. My conditions at the interface (boiling plane) are as follows:
Quote:
T= 100 ==> alpha [moisture content) =0]
Based on it, mass and heat balances are calculated at interface as,
Mass balance (r) = rho * alpha * (dx/dt) [kg/m2.s]
Heat balance (-K dT/dx) = (r) * latent heat [W/m2]
There found no variation in Temperature and alpha after resolving the below code at TEqn.H
Quote:
volScalarField alphaPrime = mag(gradAlphaX);
// set liquid and interfacial temperature to Tsat
forAll(mesh.cells(), celli)
{
if (alpha[celli] = scalar(0.1)) //10% of moisture
{
T[celli] = scalar (373.0); //Tsat = 100deg
alphaPrime[celli]= scalar(0); //moisture content = 0
}
}
volScalarField VX = V.component(vector::X); //VX =interface_VELOCITY
volScalarField mDot = -(rho*alpha*VX); //mass balance
{
fvScalarMatrix TEqn
(
fvm::ddt(rho*cp, T) // fvm::ddt(cp, T)
- mDot * cp * gradTx //source term
- fvm::laplacian(K, T) // - fvm::laplacian(lambda/rho, T)
);
TEqn.relax();
TEqn.solve();
}
Some assistance will be highly helpful. Thank you
Kummi 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
what is latent heat of ethanol at 30 degree saturation temperature? 1757003@kiit.ac.in FLUENT 0 May 15, 2019 05:34
Fixed temperature at the wall boundary James K FLUENT 0 June 30, 2018 21:44
Below Saturation Temperature Evaporation amit.garg FLUENT 0 May 11, 2015 03:59
Calculation of the Governing Equations Mihail CFX 7 September 7, 2014 06:27
Fixed Temperature in StarCCM+ Oliver Siemens 4 September 8, 2008 07:22


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