Open mipals opened 1 month ago
I pushed a commit that fixes so try again after pkg> update FerriteViz
(see https://github.com/Ferrite-FEM/FerriteViz.jl/commit/041b32c5b63c86b606475a5c2f2e1349717f04ab)
That does seem to work! Thanks 👍
Thanks @fredrikekre
Fixed in https://github.com/Ferrite-FEM/FerriteViz.jl/pull/103
Hey there,
As discussed on slack, here is a MWE that shows that
surface
fails to plot directly when the geometry is quadratic with the following errorFirst of all the error is a little misleading, as it is not the user arguments that is wrong, but rather something internally in
surface
.I can see the benefit of not directly plotting second order geometry as linear approximations, as in theory one would be plotting the "wrong" thing. However,
wireframe
does exactly this so supporting the same forsurface
seems reasonable.In the MWE i did include how I ended up plotting what I wanted by extracting the vertices of the element and then creating a new linear grid and corresponding
DofHandler
.MWE