|
[Sponsors] |
October 24, 2019, 18:46 |
Help Please
|
#1 |
New Member
Hector Pacheco
Join Date: Aug 2019
Posts: 13
Rep Power: 7 |
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 |
|
October 25, 2019, 04:05 |
|
#2 |
Senior Member
Kmeti Rao
Join Date: May 2019
Posts: 145
Rep Power: 8 |
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 |
|
October 25, 2019, 04:19 |
|
#3 |
Senior Member
Join Date: Sep 2013
Posts: 353
Rep Power: 21 |
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; } |
|
October 25, 2019, 13:25 |
|
#4 |
New Member
Hector Pacheco
Join Date: Aug 2019
Posts: 13
Rep Power: 7 |
Thanks for your answer
|
|
October 25, 2019, 13:28 |
|
#5 |
New Member
Hector Pacheco
Join Date: Aug 2019
Posts: 13
Rep Power: 7 |
Thank you very much. I could fix the mistake. Thanks again
|
|
|
|