CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   Help Please (https://www.cfd-online.com/Forums/openfoam-solving/221670-help-please.html)

hector18 October 24, 2019 17:46

Help Please
 
Hi friends,

I get this error when I run my simulation:

--> FOAM FATAL IO ERROR:
Essential entry 'value' missing

file: /home/ofuser/workingDir/Documents/openfoam/proyecto/background/0/alpha.water.boundaryField.oversetAll

This is my file alpha.water. I think itīs fine.

dimensions [0 0 0 0 0 0 0];

internalField uniform 0;

boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"

inlet
{
type fixedValue;
value $internalField;
}

outlet
{
type variableHeightFlowRate;
lowerBound 0;
upperBound 1;
value $internalField;
}

atmosphere
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}

hull
{
type zeroGradient;
}

oversetAll
{
type overset;
}
}

Anyone can help me?

Thanks in advance

Krao October 25, 2019 03:05

Hi Hector, I have not used oversetMesh command, but by seeing the error I can suggest that, you have missed to add the 'value' somewhere?

Also, I would like to ask, why the dimensions of alpha are [0 0 0 0 0 0 0]? Shouldn't it be [1 -1 -1 0 0 0 0]?

K. Rao

Bloerb October 25, 2019 03:19

The error message tells you that in the file
alpha.water
within
boundaryField
in the boundary condition for oversetAll
the entry value is missing.

This will hence fix your error:
Code:

oversetAll
{
type overset;
value $internalField;
}


hector18 October 25, 2019 12:25

Quote:

Originally Posted by Krao (Post 748032)
Hi Hector, I have not used oversetMesh command, but by seeing the error I can suggest that, you have missed to add the 'value' somewhere?

Also, I would like to ask, why the dimensions of alpha are [0 0 0 0 0 0 0]? Shouldn't it be [1 -1 -1 0 0 0 0]?

K. Rao

Thanks for your answer

hector18 October 25, 2019 12:28

Quote:

Originally Posted by Bloerb (Post 748034)
The error message tells you that in the file
alpha.water
within
boundaryField
in the boundary condition for oversetAll
the entry value is missing.

This will hence fix your error:
Code:

oversetAll
{
type overset;
value $internalField;
}


Thank you very much. I could fix the mistake. Thanks again


All times are GMT -4. The time now is 03:42.