Uploaded mesh error

I could upload the mesh but I am getting the following error:

The header of some mesh files is incomplete. Please check the files and upload the mesh again.Error Id: 2cc815eb

I could run the case in OpenFOAM . I am using Openfoam V9
The mesh files are written in Ascii format . Can you please help me with this ? I am new to Simscale and trying this for my Thesis. any help would be highly appreciable.

Hi agoney,

can you please provide us with a link to your project?
Just one thing I can suggest you to try to fin a case within the public cases that also us an OPENFoam mesh and see where the difference is.

Best regards Sebastian

I could find out the issue: posting here cause it might be useful to others if they have the same error

When converting .msh to .foam using fluentMeshToFoam , latest versions of openfoam don’t include the version in the header file.

If you include the version, in all the files in polymesh folder , this error will be resolved.

Error : The header of some mesh files is incomplete. Please check the files and upload the mesh again.

Sample :

FoamFile
{
version 9.0;
format ascii;
class polyBoundaryMesh;
location “constant/polyMesh”;
object boundary;
}

just by adding version 9.0 the error gets resolved.

Hi great work.
Thanks for letting us know the solution.