From: Daniel Garcia-Sanchez Date: Wed, 9 Jan 2019 18:38:53 +0000 (+0100) Subject: Changelog entry X-Git-Tag: v9.1.0-rc1~453^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7020%2Fhead;p=dealii.git Changelog entry --- diff --git a/doc/news/changes/major/20190108DanielGarcia-Sanchez b/doc/news/changes/major/20190108DanielGarcia-Sanchez new file mode 100644 index 0000000000..587aba4af7 --- /dev/null +++ b/doc/news/changes/major/20190108DanielGarcia-Sanchez @@ -0,0 +1,7 @@ +New: A new HDF5 interface has been added. The Hierarchical Data Format (HDF) is +a cross platform and a high I/O performance format designed to store large +amounts of data. It supports serial and MPI I/O access. The deal.II's HDF5 +interface can be used to write and read data, such the results of a simulation, +in a HDF5 file. +
+(Daniel Garcia-Sanchez, 2019/01/09) diff --git a/include/deal.II/base/hdf5.h b/include/deal.II/base/hdf5.h index 15769c1d78..a036daa425 100644 --- a/include/deal.II/base/hdf5.h +++ b/include/deal.II/base/hdf5.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2018 by the deal.II authors +// Copyright (C) 2018 - 2019 by the deal.II authors // // This file is part of the deal.II library. // @@ -301,7 +301,7 @@ DEAL_II_NAMESPACE_OPEN * concurrency. To achieve high parallel performance with HDF5, we advice to use * HDF5 with MPI. * - * @author Daniel Garcia-Sanchez, 2018 + * @author Daniel Garcia-Sanchez, 2018, 2019. */ // clang-format on namespace HDF5 @@ -309,7 +309,7 @@ namespace HDF5 /** * Base class for the HDF5 objects. * - * @author Daniel Garcia-Sanchez, 2018 + * @author Daniel Garcia-Sanchez, 2018, 2019. */ class HDF5Object { @@ -387,7 +387,7 @@ namespace HDF5 /** * This class implements an HDF5 DataSet. * - * @author Daniel Garcia-Sanchez, 2018 + * @author Daniel Garcia-Sanchez, 2018, 2019. */ class DataSet : public HDF5Object { @@ -933,7 +933,7 @@ namespace HDF5 /** * This class implements an HDF5 Group * - * @author Daniel Garcia-Sanchez, 2018 + * @author Daniel Garcia-Sanchez, 2018,2019. */ class Group : public HDF5Object { @@ -1032,7 +1032,7 @@ namespace HDF5 /** * This class implements an HDF5 File * - * @author Daniel Garcia-Sanchez, 2018 + * @author Daniel Garcia-Sanchez, 2018, 2019. */ class File : public Group {