November 27, 2021, 11:51
|
[A newbie needs Help] Entry not found in dictionary
|
#1
|
New Member
Henrique Meier
Join Date: Nov 2021
Posts: 1
Rep Power: 0
|
Hello guys, i'm starting a college project about NonNewtonian fluids, using OF.
i've been looking inside the tutorials files and found the "NonNewtonianIcoFoam" solver. I didn't change a thing in the "transportProperties" file, but when i start the simulation, a fatal error IO appears " Entry 'nu' not found in dictionary " ../transportproperties" ".
How can i solve this problem?
The code inside the transportProperties file is:
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1812 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
transportModel CrossPowerLaw;
CrossPowerLawCoeffs
{
nu0 0.01;
nuInf 10;
m 0.4;
n 3;
}
BirdCarreauCoeffs
{
nu0 1e-06;
nuInf 1e-06;
k 0;
n 1;
}
// ************************************************************************* //
|
|
|