Hi,
could you point me out to where do I find a file example of the novel CellGrid that is in Paraview that I can potentially download and inspect?
Any further documentation that I might look at while trying to implement it?
Best
Hi,
could you point me out to where do I find a file example of the novel CellGrid that is in Paraview that I can potentially download and inspect?
Any further documentation that I might look at while trying to implement it?
Best
I believe @dcthomp could help you
Sorry for the slow reply. Here are some examples
scalar3
field shows how continuous (point-centered H-grad a.k.a. Lagrange) fields can be specified. Other fields (scalar0
, scalar1
, scalar2
, quadratic
) show how discontinuous H-grad fields may be specified. The curl1
and div1
fields show how the fields from the H-curl and H-div function spaces may be specified (these are only for discontinuous formulations at the moment).ghost-node
information in the cell-types
dictionary entries can be used to handle distributed-memory parallelism. 8 of the 12 nodes are marked as ghost nodes, so only 5 faces of one cell appear when rendering the data.vtkPartitionedDataSetCollection
of vtkCellGrid
instances with one cell-grid per cell shape).In terms of developer documentation:
That’s about it. Feel free to ask more specific, detail-oriented questions.
Hi @dcthomp thanks a lot for the very detailed answer. I’ll try to mess around with it a little bit and if any doubt arises I will get back in touch!