Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • ParaView ParaView
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,961
    • Issues 1,961
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 97
    • Merge requests 97
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • ParaViewParaView
  • ParaViewParaView
  • Issues
  • #18403
Closed
Open
Issue created Aug 30, 2018 by Nico Schlömer@nschloeContributor

Exodus data not read correctly?

Here's a funny issue with an Exodus file (test.e). It contains two triangles, four nodes, and on the four nodes two data points a and b. The data can be read with, e.g.,

import netCDF4

nc = netCDF4.Dataset("test.e")

names = nc.variables["name_nod_var"]
names.set_auto_mask(False)
point_data_names = [b"".join(c).decode("UTF-8") for c in names[:]]
print(point_data_names)

value1 = nc.variables["vals_nod_var1"]
value1.set_auto_mask(False)
print(value1[:])

value2 = nc.variables["vals_nod_var2"]
value2.set_auto_mask(False)
print(value2[:])

Output:

['a', 'b']
[[0.5488135  0.71518937 0.60276338 0.54488318]]
[[0.4236548  0.64589411 0.43758721 0.891773  ]]

Looks good. Now, when opening the file with ParaView, the node coordinates and the connectivity are read alright, but the data is off:

off

Is this a ParaView bug?

Edited Mar 25, 2021 by Nico Schlömer
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Assignee
Assign to
Time tracking