|
[Sponsors] |
Adding evaporation source terms + interMixingFoam |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
February 2, 2022, 07:30 |
Adding evaporation source terms + interMixingFoam
|
#1 |
Member
Join Date: Apr 2019
Location: India
Posts: 81
Rep Power: 7 |
Hello Everyone,
I am trying to model evaporation of a water droplet in open air. I am considering vapour and air diffusion. Hence, I chose interMixingFoam as my base solver, as it can handle three fluids out of which two are miscible with each other. I have added the temperature equation to it and have calculated the evaporation mass transfer rate (mDot). I need add the density weighted source terms to the alpha equations. Code:
// Solve for alpha1 solve ( fvm::ddt(alpha1) + fvc::div(alphaPhi1) + mDot/rho1 ); Code:
// Solve for alpha2 fvScalarMatrix alpha2Eqn ( fvm::ddt(alpha2) + fvc::div(alphaPhi2) - fvm::laplacian(Dc23 + Dc32, alpha2) - mDot/rho2 ); alpha2Eqn.solve(); I read previous posts that directed to look for interCondensatingEvaporatingFoam. But, interCondensatingEvaporatingFoam has only one alphaEqn and hence it just defines one Su and Sp terms. However, in my case I have two source terms mDot/rho1 and mDot/rho2. Some one kindly please guide how to proceed with this problem. Thank You. |
|
April 19, 2022, 10:36 |
|
#2 |
Member
Vitor Monteiro
Join Date: Nov 2020
Posts: 32
Rep Power: 6 |
Instead of using inter, wouldn't it be better to use multiphaseEulerFoam? It has the interfaceCompositionPhaseChangeMultiphaseSystem model that could help you. See the tutorial bubbleColumnEvaporating to check how it is implemented.
|
|
May 9, 2022, 01:19 |
|
#3 | |
Member
Join Date: Apr 2019
Location: India
Posts: 81
Rep Power: 7 |
Quote:
First of all, sorry for the late reply. Thanks for the suggestion. However, I see that the multiphaseEulerFoam does not consider phase change. (https://www.openfoam.com/documentati...EulerFoam.html). Likewise, the bubble column tutorial in multiphaseEulerFoam folder also does not consider phase change. Please correct me, if I am wrong. Thank You. |
||
May 9, 2022, 13:55 |
|
#4 |
Member
Al
Join Date: May 2019
Posts: 37
Rep Power: 7 |
Hello,
I believe icoReactingMultiphaseInterFoam can be used. For your particular case, you should use water for the soluble fraction and air and vapor for the gas part. Then choose liquid to vapor for the phase change. The* pooleEvaporation tutorial is*a good example of this. Actually, it's the example you're looking for, and just modifying the boundary conditions and geometry will result in the problem you mentioned in your question. You can find it in the following address in openfoam. Code:
openfoam2006/tutorials/multiphase/icoReactingMultiPhaseInterFoam/poolEvaporation |
|
May 9, 2022, 19:50 |
|
#5 | |
Member
Vitor Monteiro
Join Date: Nov 2020
Posts: 32
Rep Power: 6 |
Quote:
Actually, I thing there is a interface change modeling for evaporation. See this please (https://openfoam.org/release/8/). In that context, what does the bubbleColumnEVAPORATING tutorial in multiphaseEulerFoam do if there's not evaporation? Sorry, correct me if I'm wrong. |
||
May 11, 2022, 22:26 |
|
#6 | |
Member
Join Date: Apr 2019
Location: India
Posts: 81
Rep Power: 7 |
Quote:
Thank You. |
||
May 11, 2022, 22:31 |
|
#7 | |
Member
Join Date: Apr 2019
Location: India
Posts: 81
Rep Power: 7 |
Quote:
The ESI version does not have bubble column evaporating tutorial. I will install the foundation version of OpenFOAM and check the phase change models in multiPhaseEulerFoam. Thanks a lot for the suggestion. My main requirement is that I want to implement a new phase change model. It requires the inclusion of source term as described in my first post. Thank You. |
||
May 12, 2022, 15:19 |
|
#8 | |
Member
Vitor Monteiro
Join Date: Nov 2020
Posts: 32
Rep Power: 6 |
Quote:
Take a look on that and tell us if it was worthy. |
||
April 14, 2023, 10:48 |
|
#9 | |
New Member
Graciella
Join Date: Sep 2022
Posts: 4
Rep Power: 4 |
Quote:
I hope you are good. I have the same challenge right now. Did you get to solve this issue? Also, how did you calculate the evaporation mass transfer rate (mDot)? Did you need to have a separate file for this source code? |
||
June 23, 2023, 19:30 |
|
#10 |
New Member
zaki
Join Date: Nov 2018
Posts: 17
Rep Power: 8 |
||
Tags |
evaporation, intermixingfoam, mass transfer coefficient |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[swak4Foam] swak4foam for OpenFOAM 4.0 | mnikku | OpenFOAM Community Contributions | 80 | May 17, 2022 09:06 |
multiRegionHeater error | ordinary | OpenFOAM Running, Solving & CFD | 2 | June 9, 2020 18:43 |
[foam-extend.org] Problems installing foam-extend-4.0 on openSUSE 42.2 and Ubuntu 16.04 | ordinary | OpenFOAM Installation | 19 | September 3, 2019 19:13 |
polynomial BC | srv537 | OpenFOAM Pre-Processing | 4 | December 3, 2016 10:07 |
[Other] How to use finite area method in official OpenFOAM 2.2.0? | Detian Liu | OpenFOAM Meshing & Mesh Conversion | 4 | November 3, 2015 04:04 |