-
I am unable to properly encode ghost zones in Ascent such that VisIt (v3.3.3) reading back the Blueprint HDF5 file would recognize the cell-data as such and show them to me with an "Inverse Ghost Zone" reading VTKFormat.html `ascent_options["ghost_field_name"].append() = "avtGhostZones"; mesh["fields/avtGhostZones/association"].set("element");` I can pseudo-color all other variables, except the "avtGhostZones" (no coloring appears). fine. But Inverse Ghost Zones does not show me any cells! if instead I encode my Conduit node with a more generic name, such as "ghost", i.e. mesh["fields/ghost/association"].set("element");` VisIt lets me make a pseudocoloring of it (see attached screenshot for a 4 MPI task job (this is a 2D problem), but I still cannot apply 'inverse ghost zone' End of the day, I would expect that Ascent would take any name I specify as "ghost_field_name" and make a blueprint HDF5 file with corresponds to what VisIt expects. I'd appreciate some guidance. TIA |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@jfavre The VisIt blueprint plugin does not support ghost zone identification yet. For ghost zones in Ascent (as you report) we do use a field to indicate ghost zones & Ascent allows you to specify this name and it will use that field as ghosts in its pipelines. However it does not cull ghost zones before blueprint export. Calling it I recommend giving it your own name ( |
Beta Was this translation helpful? Give feedback.
Thanks @cyrush !