Using GhostOffsets in Xdmf files #19760
Unanswered
jannisteunissen
asked this question in
Help using VisIt
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to use Visit's Xdmf reader to read in multiple blocks. These blocks have so-called ghost zones. In the database reader there appears to be support for this, since it reads the "BaseIndex and GhostOffsets properties" in
avtXdmfFileFormat::GetMesh
, see https://github.com/visit-dav/visit/blob/develop/src/databases/Xdmf/avtXdmfFileFormat.CHowever, I cannot get this functionality to work with a simple example. For example, consider the following 4x4 mesh:
I have tried to include ghost zones in this example, by adding
below the topology definition, so that the resulting file is:
However, the only thing that I get is an error:
The Mesh plot of variable "Mesh" yielded no data.
This error is also present when I change the GhostOffsets to "0 0 0 0" or "0 0 0 0 0 0" (since Visit appears to interpret 2D collections as 3D, see #19437). So my question is, how to correctly specify GhostOffsets in this example?Beta Was this translation helpful? Give feedback.
All reactions