Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide a more intuitive strided structured example mesh #1397

Open
JustinPrivitera opened this issue Mar 22, 2025 · 2 comments
Open

Provide a more intuitive strided structured example mesh #1397

JustinPrivitera opened this issue Mar 22, 2025 · 2 comments

Comments

@JustinPrivitera
Copy link
Member

The strides for element associated fields should be in terms of elements. This example makes it seem as though strides are always the same for topologies, vertex-associated fields, and element-associated fields. I think we should change the example to make it clear.

mesh = conduit.Node()
desc = conduit.Node()
conduit.blueprint.mesh.examples.strided_structured(desc, 4, 3, 2, mesh)
state: 
  time: 3.1415
  cycle: 100
coordsets: 
  coords: 
    type: "explicit"
    values: 
      x: [-10.0, -6.66666666666667, -3.33333333333333, ..., 6.66666666666667, 10.0]
      y: [-10.0, -10.0, -10.0, ..., 10.0, 10.0]
      z: [-10.0, -10.0, -10.0, ..., 10.0, 10.0]
topologies: 
  mesh: 
    type: "structured"
    coordset: "coords"
    elements: 
      dims: 
        i: 3
        j: 2
        k: 1
        offsets: [2, 2, 2]
        strides: [1, 7, 42]
fields: 
  vert_vals: 
    association: "vertex"
    topology: "mesh"
    offsets: [2, 2, 2]
    strides: [1, 7, 42]
    values: [0.0, 0.0, 0.0, ..., 0.0, 0.0]
  ele_vals: 
    association: "element"
    topology: "mesh"
    offsets: [2, 2, 2]
    strides: [1, 7, 42]
    values: [0.0, 0.0, 0.0, ..., 0.0, 0.0]

The example isn't wrong, just misleading.

@cyrush
Copy link
Member

cyrush commented Mar 28, 2025

The current strided structured was designed to represent the complexity we need.

We should also provide a simpler example that is more intuitive.

@JustinPrivitera
Copy link
Member Author

I agree. I'll change the name of this ticket.

@JustinPrivitera JustinPrivitera changed the title I think the strided structured example mesh is wrong Provide a more intuitive strided structured example mesh Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants