Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Gmsh reader to support version 4 format #424

Open
3 tasks
yungyuc opened this issue Sep 8, 2024 · 0 comments
Open
3 tasks

Upgrade Gmsh reader to support version 4 format #424

yungyuc opened this issue Sep 8, 2024 · 0 comments
Labels
mesh Spatial mesh

Comments

@yungyuc
Copy link
Member

yungyuc commented Sep 8, 2024

Currently the Gmsh reader only supports format version 2.2:

// The parse only support ver 2.2 msh file.
if (msh_ver != 2.2)
{
    throw std::invalid_argument(Formatter() << "modmesh does not support msh file ver " << msh_ver << ".");
}

It should support all versions (version 4) and also binary data stream.

Tasks:

  • Format version 4 with ASCII data stream
  • Format version 2 with binary data stream
  • Format version 4 with binary data stream
@yungyuc yungyuc added the mesh Spatial mesh label Sep 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
mesh Spatial mesh
Projects
None yet
Development

No branches or pull requests

1 participant