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

1D point sink boiling model !!! (PROJECT)

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 21, 2019, 06:39
Default Boiling model in openfoam !!
  #1
Senior Member
 
Kumaresh
Join Date: Oct 2016
Posts: 348
Rep Power: 11
Kummi is on a distinguished road
Send a message via Yahoo to Kummi
Hello Foamers,

My topic of research is to build the 1D mathematical model for simulating the coal pyrolysis in OpenFOAM. My question is all about solving "Boiling of moisture" based on 1D point sink boiling model.
When I come across the boiling topic in openFOAM, I found some existing solvers like interFoam, compressibleInterFoam, interPhaseChangeFoam (based on VOF - fluid-fluid interaction) and so on, where I am not sure it is related to my topic.


As explained in attachment (figure), due to supply of heat from the wall ==> the moisture content present in the coal gets evaporated at 100deg. The rate of boiling (r) is calculated with respect to the moisture content and rate of progression of boiling plane ==> Finally, rate of boiling (r) will be called manipulated in ENERGY equation as a source term. This problem is solely dependent on main variable temperature (T) with no pressure and velocity terms. However, I understand the flow physics, I couldn't able to find any existing solvers related to this topic to find my way or any clues to set-up my simulation fro boiling. So, I would like to know where should I need to start, how to proceed and move on !!!
Kindly someone share their ideas please. Thank you !!!
Attached Images
File Type: jpg Model with conditionss.jpg (134.9 KB, 21 views)

Last edited by Kummi; May 24, 2019 at 01:33.
Kummi is offline   Reply With Quote

Old   May 22, 2019, 10:17
Default
  #2
New Member
 
Dinesh
Join Date: Jun 2018
Posts: 15
Rep Power: 7
DineshMyilsamy is on a distinguished road
Could you please explain about the equations mentioned - quite clearly..
DineshMyilsamy is offline   Reply With Quote

Old   May 22, 2019, 12:21
Default
  #3
Senior Member
 
Kumaresh
Join Date: Oct 2016
Posts: 348
Rep Power: 11
Kummi is on a distinguished road
Send a message via Yahoo to Kummi
Hello Dinesh,
Thank you for your reply ^^
☞By default, coal present inside the chamber contains moisture content (1~10% approx). By supplying heat from the wall, the moisture (in coal) will be evaporated around T=100deg.
☞ In order to define this scenario, the mathematical model is defined based on energy (T) equation with source term to capture the flow physics of moisture evaporation.
☞It is assumed that the:
(i) At all high temperature zones - (with respect to boiling plane (xb))– moisture content (w=0) is zero.
(ii) Temperature (∂T/ ∂x=0) is constant (in every plane section) along axial distance.
☞The variation of moisture content at lower temperature (T<100) is captured by the rate of boiling (r) when approached through point sink ideology (negative source model which absorbs everything).
☞The calculated rate of boiling (r) is multiplied with [2.257*e6] to substitute as source term in main energy equation as shown in figure above.


To implement point sink ideology  I don’t have any clue to implement it in openFOAM. Since I am new to openFOAM, adding such source terms in main equation seems to be quite complex.
Thank you.. Hope u understand !!
Kummi is offline   Reply With Quote

Old   May 22, 2019, 12:24
Default
  #4
Senior Member
 
Kumaresh
Join Date: Oct 2016
Posts: 348
Rep Power: 11
Kummi is on a distinguished road
Send a message via Yahoo to Kummi
Have you worked with such idealogy before ?
Kummi is offline   Reply With Quote

Old   May 24, 2019, 01:37
Default
  #5
Senior Member
 
Kumaresh
Join Date: Oct 2016
Posts: 348
Rep Power: 11
Kummi is on a distinguished road
Send a message via Yahoo to Kummi
Spark of ideas from anyone ? may give better plan to approach my problem..
Hoping toooo !!
Kummi is offline   Reply With Quote

Old   February 8, 2021, 10:03
Default
  #6
New Member
 
H.Ham
Join Date: Mar 2019
Posts: 21
Rep Power: 7
kimou is on a distinguished road
Hi kummi,

You work on 1D probleme, in compressibleInterFoam, Me too i work on 1D two-phase-flow compressible. I hope that you resolve your probleme


Please, I would like to know how you chose your discretizations (fvSchemes and fvSolution) for your problem ??


best regret,
kimou is offline   Reply With Quote

Old   February 8, 2021, 11:00
Default
  #7
Senior Member
 
Kumaresh
Join Date: Oct 2016
Posts: 348
Rep Power: 11
Kummi is on a distinguished road
Send a message via Yahoo to Kummi
Hello Kimou,
Here is the scheme and solution I used.
Quote:
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

ddtSchemes
{
default CrankNicolson 0.9;
}

gradSchemes
{
default Gauss linear;
}

divSchemes
{
default none;
}

laplacianSchemes
{
default none;
laplacian(thermo:alpha,h) Gauss linear corrected;
laplacian(kappa,T) Gauss harmonic corrected;
laplacian(alpha,h) Gauss linear uncorrected;
}

interpolationSchemes
{
default linear;
}

snGradSchemes
{
default corrected;
}

fluxRequired
{
default no;
}
Quote:
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
h
{
solver PCG;
preconditioner DIC;
tolerance 1e-6;
relTol 0;
}

"Yi"
{
solver PBiCGStab;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
}

rho
{
solver PCG;
preconditioner DIC;
tolerance 0;
relTol 0;
};

}

SIMPLE
{
nNonOrthCorr 0;
}

relaxationFactors
{
equations
{
h 1;
}
}
Hope it helps.
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
Wall boiling model for saturated boiling adilsyyed CFX 1 October 22, 2016 11:34
A floating point exception - SEM Model yansheng STAR-CCM+ 1 April 4, 2016 04:57
block-structured mesh for t-junction Robert@cfd ANSYS Meshing & Geometry 20 November 11, 2011 04:59
Problem with UDF compiling for kTkLW model Wantami FLUENT 0 July 18, 2011 05:11
CFX4.3 -build analysis form Chie Min CFX 5 July 12, 2001 23:19


All times are GMT -4. The time now is 10:29.