|
[Sponsors] |
solid dispersed phase error using multiphaseEulerFoam |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
March 29, 2022, 04:07 |
solid dispersed phase error using multiphaseEulerFoam
|
#1 |
Member
Muhammad Ahyar
Join Date: Mar 2020
Posts: 30
Rep Power: 6 |
I tried to create a polydisperse simulation in openfoam using multiphaseEulerFoam solver. As far as I know, the difference between the solid and gas phase in multiphase simulation on openfoam lies in the thermoPhysicalProperties file in constant directory. so I tried to resemble the thermoPhysicalProperties of my solid phase into the thermoPhysicalProperties of titaniaSynthesis case located at $FOAM_TUTORIALS/multiphase/multiphaseEulerFoam/laminar/titaniaSynthesis.
But my simulation went divergent when I apply the EquationOfState to rhoConst and the equationOfState.rho value into a number that bigger than water density. here's the code from my thermoPhysicalProperties Code:
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 9 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { format ascii; class dictionary; object thermophysicalProperties.particle; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // thermoType { type heRhoThermo; mixture pureMixture; // awalnya puremixture transport const; thermo hConst; equationOfState rhoConst; specie specie; energy sensibleInternalEnergy; } mixture { specie { molWeight 58.6934; } equationOfState { rho 1009; } thermodynamics { Cp 684; Hf -1.18307e+07; } transport { mu 0; Pr 8.0e-6; } } // ************************************************************************* // Code:
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 9 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { format ascii; class dictionary; location "constant"; object thermophysicalProperties.particles; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // thermoType { type heRhoThermo; mixture multiComponentMixture; transport const; thermo hConst; equationOfState rhoConst; specie specie; energy sensibleInternalEnergy; } species (TiO2); defaultSpecie TiO2; TiO2 { specie { molWeight 79.87880; } equationOfState { rho 4230; } thermodynamics { Hf -1.18307e+07; Cp 684.246; } transport { mu 1e-7; Pr 8.0e-6; } } // ************************************************************************* // what should I change to make the simulation runs well? |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Conjugate Heat Transfer: Solid Time Step in Transient Simulation, DO Model | Dingens | FLUENT | 0 | July 9, 2021 07:19 |
Wall shear stress for solid phase? | qi.yang@polimi.it | OpenFOAM Programming & Development | 0 | February 24, 2020 07:26 |
Derive fixed number of phase from clone () in multiphaseEulerFoam Solver | Aj Nair | OpenFOAM Programming & Development | 0 | December 16, 2013 21:41 |
Viscosity for solid dispersed phase in E-E modelin | Kushagra | FLUENT | 0 | June 27, 2008 20:01 |
How to calculate density of solid phase | zhou | Main CFD Forum | 0 | December 17, 1999 20:06 |