|
[Sponsors] |
Mass Transfer without Phase Change in InterPhaseChangeFoam |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
October 15, 2014, 12:18 |
Mass Transfer without Phase Change in InterPhaseChangeFoam
|
#1 |
Member
Parisa
Join Date: Feb 2013
Posts: 51
Rep Power: 13 |
Hello everyone,
I am working with interPhaseChangeFoam and diagnosing the solver. I modified the solver based on the tutorial of Andxersen, such that I implemented TEqn.H and also pSat as a function of temperature. I created a simple case, flow in a duct. The inlet and the whole domain is vapor, with alpha=0. The temperatures for the walls, inlet flow and inside the domain is the same. So, no phase change happens, such that the minimum and maximum values of alpha are zero. However, in alphaEqn.H, when I print "vDotvmcAlphal" I see strange values for that, that is -330. Here is my question: If alpha doesn't change (that means no phase change occurs), why "vDotvmcAlphal" has a value. Since "vDotvmcAlphal" is calculated based on the evaporated/condensed mass rate, it seems that mass is transferred whitout a phase change. I really appreciate if you guide me. Best, Parisa |
|
October 15, 2014, 16:57 |
|
#2 |
Member
Alex
Join Date: Jun 2011
Posts: 33
Rep Power: 15 |
Hi Parisa,
In your setup, the fluid is initially vapor everywhere (alpha1 = 0). In the solver, the vDotvmcAlphal parameter is applied as an implicit proportional source term. This is the equivalent of applying vDotvmcAlphal*alpha1 (= 0 for alpha1 = 0). So there won't be any condensation for this particular case. Code:
fvScalarMatrix alpha1Eqn ( fv::EulerDdtScheme<scalar>(mesh).fvmDdt(alpha1) + fv::gaussConvectionScheme<scalar> ( mesh, phi, upwind<scalar>(mesh, phi) ).fvmDiv(phi, alpha1) - fvm::Sp(divU, alpha1) == fvm::Sp(vDotvmcAlphal, alpha1) + vDotcAlphal ); You may want to look at the MS thesis by Thiele (2010). He made a similar modification to the interPhaseChangeFoam solver to handle thermally driven condensation. I have some concerns about the approach in that thesis, but it should give you some helpful pointers for your project. |
|
October 15, 2014, 17:01 |
|
#3 | |
Member
Parisa
Join Date: Feb 2013
Posts: 51
Rep Power: 13 |
Thanks Alex for your help,
So, if you think it can handle correctly (by the modification that you pointed), so there is no any worries about the lack of accuracy in mass transfer. Am I right? Quote:
|
||
October 15, 2014, 17:29 |
|
#4 |
Member
Alex
Join Date: Jun 2011
Posts: 33
Rep Power: 15 |
There are some major questions to consider in your code development with respect to modeling phase change. In particular:
|
|
October 15, 2014, 17:33 |
|
#5 |
Member
Parisa
Join Date: Feb 2013
Posts: 51
Rep Power: 13 |
No, I don't apply to interface since in interPhaseChangeFoam phase change can occur anywhere that there are gradients of pressure.
I just simply add net rate of evaporation and condensation multiply to latent heat, into energy equation. But, for sure I need to validate my code. What do you recommend for the validation? Except Stephan Problem that is a benchmark. Thanks, |
|
May 26, 2015, 10:40 |
validation
|
#6 | |
Senior Member
Join Date: May 2011
Posts: 231
Rep Power: 16 |
Hi Parisa,
Did you manage to validate your code? Do you get reasonable results? thanks in advance! Kanarya Quote:
|
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Water subcooled boiling | Attesz | CFX | 7 | January 5, 2013 04:32 |
Phase change heat transfer | Lexa | FLUENT | 0 | October 10, 2011 03:53 |
Multiphase Mass transfer UDF issue | therandomestname | FLUENT | 0 | April 21, 2011 15:51 |
mass transfer coefficient for boundary condition | niek | Main CFD Forum | 0 | March 29, 2011 06:33 |
help needed about phase change | Yanhu Guo | Main CFD Forum | 4 | January 24, 2001 00:16 |