ENH: Using icoTabulated EoS and non-Newtonian laminar model

This commit is contained in:
sergio
2020-08-20 12:20:12 -07:00
committed by Andrew Heather
parent c3c4f30a55
commit 97448c655d
4 changed files with 22 additions and 9 deletions

View File

@ -29,7 +29,7 @@ boundaryField
{ {
type inletOutlet; type inletOutlet;
inletValue uniform 1; inletValue uniform 1;
value uniform 0; value uniform 1;
} }
left left

View File

@ -20,7 +20,7 @@ thermoType
mixture pureMixture; mixture pureMixture;
transport const; transport const;
thermo hConst; thermo hConst;
equationOfState rhoConst; equationOfState icoTabulated;
specie specie; specie specie;
energy sensibleEnthalpy; energy sensibleEnthalpy;
} }
@ -34,7 +34,12 @@ mixture
} }
equationOfState equationOfState
{ {
rho 13529; rho
(
(200 13525)
(350 13529)
(400 13520)
);
} }
thermodynamics thermodynamics
{ {

View File

@ -20,7 +20,7 @@ thermoType
mixture pureMixture; mixture pureMixture;
transport const; transport const;
thermo hConst; thermo hConst;
equationOfState rhoConst; equationOfState icoTabulated;
specie specie; specie specie;
energy sensibleEnthalpy; energy sensibleEnthalpy;
} }
@ -34,7 +34,12 @@ mixture
} }
equationOfState equationOfState
{ {
rho 500; rho
(
(200 1010)
(350 1000)
(400 980)
);
} }
thermodynamics thermodynamics
{ {

View File

@ -17,12 +17,15 @@ FoamFile
simulationType laminar; simulationType laminar;
RAS laminar
{ {
RASModel kEpsilon; model generalizedNewtonian;
turbulence on; viscosityModel powerLaw;
printCoeffs on; nuMin 1e-06;
nuMax 1;
k 0.02;
n 0.4;
} }
// ************************************************************************* // // ************************************************************************* //