-
Notifications
You must be signed in to change notification settings - Fork 56
DOFs numberings displays #339
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
Conversation
|
To clarify: "DOF" here means the numbering of the Mesh nodes (as a high-order grid function), right? |
|
Js seems to be working: https://github.com/GLVis/glvis-js/actions/runs/15313952476 😉 Thanks for the cleanup 👍 I need to take a deeper look... |
|
I tested that and it works nicely with 2D scalars on conforming meshes, but a few things to do:
|
|
@tzanio , it shows DOFs (in the sense of finite element nodes) for the visualized grid function. In the case of mesh visualization, the nodes of the coloring grid function. |
- Avoid using mfem:: in header files
tzanio
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is really great, thank you @camierjs !
najlkin
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 🎉
tzanio
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR adds DOFs numbering.
The
nkey now cycles in 2D:NONE→ELEMENTS→EDGES→VERTICES→DOFS.Should solve #106
Parallel numbering is now by default 'local' to each rank and can be toggled back to 'global' with

Alt-n:(
mpirun -n 3 ./ex6p -m ../data/star-mixed.mesh -o 2 -md 200)