|
[Sponsors] |
bubbleColumn change Inlet position to top does't work with compressible flow |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 23, 2019, 07:58 |
bubbleColumn change Inlet position to top does't work with compressible flow
|
#1 |
New Member
Siqi Ma
Join Date: May 2019
Location: Germany
Posts: 4
Rep Power: 7 |
I am running twoPhaseEulerFoam in the case of bubbleColumn and I changed the inlet to the top and outlet to the bottom which can be approximated to a standing pipe with air injected from top
- in blockMesh I exchanged the position of the patch inlet and patch outlet from the sample case, so the air bubbles are injected from the top and the mixture fluid flows out from bottom. code from file blockMeshDict Code:
patches ( patch inlet ( (3 7 6 2) ) patch outlet ( (1 5 4 0) ) code from file alpha.air Code:
dimensions [0 0 0 0 0 0 0]; internalField uniform 0; code from U.air Code:
dimensions [0 1 -1 0 0 0 0]; internalField uniform (0 -0.1 0); code from thermophysicalProperties.air Code:
thermoType { type heRhoThermo; mixture pureMixture; transport const; thermo hConst; equationOfState rhoConst; specie specie; energy sensibleInternalEnergy; } mixture { specie { molWeight 28.9; } equationOfState { R 3000; rho 1164; } thermodynamics { Cp 1007; Hf 0; } transport { mu 1.84e-05; Pr 0.7; } } alpha.air p_rgh but if i deal with the original thermophysicalProperties (equationOfState : perfectGas) which means compressible flow. The outcome is quite unrealistic... The upper part is filled with complete air and pushing down the fluid, there is no "injection" into the water alpha.air p_rgh I think the unrealistic behavior in compressible flow (perfectGas/perfectFluid) is because of the density change affects the pressure. the solver twoPhaseEulerFoam use p_rgh rather than p to solve the result. (btw all the other boundary conditions remain exactly the same as original case) code of file p_rgh Code:
dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; boundaryField { inlet { type fixedFluxPressure; value $internalField; } outlet { type prghPressure; p uniform 110000; value $internalField; } walls { type fixedFluxPressure; value $internalField; } } Code:
dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; boundaryField { inlet { type calculated; value $internalField; } outlet { type calculated; value $internalField; } walls { type calculated; value $internalField; } } Does anybody has any idea or relative thought about how could I deal with the compressible case? - about boundary condition especially of p_rgh? - about part of the solver code about pressure to dig into? thanks a lot, even some hints will be really helpful. |
|
Tags |
bubble column, compressible, p_rgh, thermophysicalproperties, twophaseeulerfoam |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Solution does not change in transient 3D compressible flow | ticofiz | FLUENT | 2 | October 4, 2022 13:36 |
How can it possible to change by itself in volumetric flow rate of velocity inlet BC | oozcan | FLUENT | 10 | November 25, 2016 05:54 |
Multiphase flow - incorrect velocity on inlet | Mike_Tom | CFX | 6 | September 29, 2016 02:27 |
Gate valve flow simulations... | nikesh | FloEFD, FloWorks & FloTHERM | 5 | January 28, 2014 02:31 |
Supersonic Inlet for a Compressible Flow in a Nozzle | Daco | FLUENT | 8 | November 8, 2012 04:34 |