-
Hi all, I'm trying to work with
Reading the values seem straight-forward, but I wonder if I can get help on where I should appropriately store those values? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
your_mesh.add_node_datum<Real>("nodal_thickness")
, perhaps? That will allocate a floating-point value for every node. The main disadvantage is that you can't naturally store superparameteric data that way, but if you just have one value per node to begin with then that's probably fine in your case.