Skip to content
#

hdf5

Here are 176 public repositories matching this topic...

The CFD General Notation System (CGNS) provides a standard for recording and recovering computer data associated with the numerical solution of fluid dynamics equations. All developement work and bug fixes should be based off the 'develop' branch, CGNS uses the branching model Gitflow. https://cgnsorg.atlassian.net is used for issue tracking.

  • Updated Oct 16, 2019
  • 1 commits
  • C
czender
czender commented Jul 24, 2019

A user recently requested directions to functionality implemented by make_bounds() and was unaware of its existence because it is undocumented. This reminded me that many ncap2 functions listed by ncap2 -f (which few people know exists) may be undocumented. This task is to create a list of the undocumented functions, paste it here, and then to add a description of each to the User Guide befo

oruebel
oruebel commented May 29, 2019

2) Feature Request

Currently the ordering of dimensions described in the schema is in many cases not listed in the documentation. E.g., for ElectricalSeries.data we should add to the docval that the dimensions are num_time | num_channels. This would help users avoid errors with ordering of dimensions.

This issue was motivated by #960

This issue is in part also related to #626

pierrepaleo
pierrepaleo commented Aug 1, 2019

Follow-up of #2696/#2698.

Previously, pyopencl code used

d_array = pyopencl.array.zeros(queue, shape, dtype)

Because of the issues with pocl, this was replaced with

d_array = pyopencl.array.empty(queue, shape, dtype)
d_array.fill(0)

I see several issues:

  • More code for doing the same thing, so potentially more bugs
  • The code was changed because
ax3l
ax3l commented Oct 15, 2019

It would be nice to have a command-line and API equivalent tool of h5disp in Matlab.

Python:

import openpmd_api

series = openpmd_api.Series("git-sample/data%T.h5",
                            openpmd_api.Access_Type.read_only)

openpmd_api.h5disp(series)
# or
series.disp()

C++:

#include <openPMD/openP
Loading…
You can’t perform that action at this time.