-
Notifications
You must be signed in to change notification settings - Fork 114
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
Contours via Plots.jl are supported for TreeMesh #2230
Comments
This is very cool that it works with the contour plots. Any idea why it does not work for P4estMesh? |
It looks like when the function On the other hand I saw that Makie.jl has recently came out with a feature to make contours also for unstructured/curvilinear grid, taking as inputs matrices of the spatial coordinates ps: it looks like that the minimum version of |
When working on the visualization callback (#2225 ) I only recently realized that |
Updated on |
Thank you! Now it is possible to visualize contours, but there are errors in the interpolation. For example: I think this is due to the fact that |
Contour plots can be easily done as follows
pd = PlotData2D(sol), contour(pd["var_name"])
but the correct visualization is given only if the chosen mesh was TreeMesh. As an example:
For all the other cases the image displayed is
The text was updated successfully, but these errors were encountered: