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;
inletValue uniform 1;
value uniform 0;
value uniform 1;
}
left

View File

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

View File

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

View File

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