IOSS: 2D exodus vectors as 3D vectors #470
-
I'm not very familiar with IOSS. For ParaView 2D exodus files currently don't have Glyph and WarpByVector available for the vector data (like displacement/velocity). This is due to the IOSS reader returning 2D vectors and ParaView wanting 3D. The legacy reader in ParaView used to manually add a zero third dimension but that isn't present in the IOSS reader. Is there any way currently to make the underlying Database return 3D vectors instead of 2D for a 2D exodus file? I currently have a proof of concept fix for VTK https://gitlab.kitware.com/vtk/vtk/-/merge_requests/11319 but was wondering if this could be avoided. I was thinking maybe something like the non-scalar Tensor transform but I tried a simple one without much luck and it looks like non-scalar ones are not implemented yet. Could just be user error. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It would be possible to do this, not sure of the actual effort required or how to specify which 2D fields are expanded to 3D. It might also be easier at the ParaView level, so will discuss with them also... |
Beta Was this translation helpful? Give feedback.
It would be possible to do this, not sure of the actual effort required or how to specify which 2D fields are expanded to 3D. It might also be easier at the ParaView level, so will discuss with them also...
@spyridon97