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
@mesnardo Is this intentional? Or is it supposed to be written to root/field/time? (The viewer object at this line is already under root/field when calling this function.)
For example, if the field is p, and if the HDF5 file is read into data, then the count attribute of time 10.0 will be at: data["p"]["p"]["10.000000"].attrs["count"]
according to our current implementation at line 565 in probes.cpp.
The text was updated successfully, but these errors were encountered:
Good catch! No need to have this extra field (i.e., can be moved to one node up). count represents the number of time-steps over which the data were accumulated.
At line 565 in
probes.cpp
, an attribute,count
, is written toroot/field/field/time
.@mesnardo Is this intentional? Or is it supposed to be written to
root/field/time
? (Theviewer
object at this line is already underroot/field
when calling this function.)For example, if the field is
p
, and if the HDF5 file is read intodata
, then thecount
attribute of time10.0
will be at:data["p"]["p"]["10.000000"].attrs["count"]
according to our current implementation at line 565 in
probes.cpp
.The text was updated successfully, but these errors were encountered: