You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding mesh tag for field which is a vector (3 components on each mesh vertex for example), the field displayed in paraview contains 6 components.
Example is given below:
Create the mesh tag from omega_h:
mesh->add_tag<o::Real>(0, "electric_field", 3);
o::Write<o::Real> E_node(mesh->nverts() * 3, 0);
...
some operations to fill the field.
...
mesh->set_tag(0, "electric_field", o::Reals(E_node));
Displayed results in paraview shown as 6 components on each mesh vertex (XX, YY, ZZ, XY, YZ, XZ):
The text was updated successfully, but these errors were encountered:
When adding mesh tag for field which is a vector (3 components on each mesh vertex for example), the field displayed in
paraview
contains 6 components.Example is given below:
Create the mesh tag from
omega_h
:Displayed results in
paraview
shown as 6 components on each mesh vertex(XX, YY, ZZ, XY, YZ, XZ)
:The text was updated successfully, but these errors were encountered: