Skip to content
Snippets Groups Projects
Commit a8826ab1 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Fix xdmf.org links.

parent 00c9b6d0
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ struct XdmfData final ...@@ -56,7 +56,7 @@ struct XdmfData final
std::optional<MeshLib::MeshItemType> attribute_center, std::optional<MeshLib::MeshItemType> attribute_center,
unsigned int const index, unsigned int n_files); unsigned int const index, unsigned int n_files);
// a hyperslab is defined by starts and strides see // a hyperslab is defined by starts and strides see
// https://www.xdmf.org/index.php/XDMF_Model_and_Format#HyperSlab // https://xdmf.org/index.php/XDMF_Model_and_Format#HyperSlab
std::vector<XdmfDimType> starts; std::vector<XdmfDimType> starts;
std::vector<XdmfDimType> strides; std::vector<XdmfDimType> strides;
std::vector<XdmfDimType> global_block_dims; std::vector<XdmfDimType> global_block_dims;
......
...@@ -30,7 +30,7 @@ namespace MeshLib::IO ...@@ -30,7 +30,7 @@ namespace MeshLib::IO
{ {
struct XdmfTopology struct XdmfTopology
{ {
// https://www.xdmf.org/index.php/XDMF_Model_and_Format#Topology, Section // https://xdmf.org/index.php/XDMF_Model_and_Format#Topology, Section
// Arbitrary // Arbitrary
unsigned int id; unsigned int id;
unsigned int number_of_nodes; unsigned int number_of_nodes;
......
...@@ -54,7 +54,7 @@ XdmfHdfData transformTopology(std::vector<int> const& values, ...@@ -54,7 +54,7 @@ XdmfHdfData transformTopology(std::vector<int> const& values,
/** /**
* \brief Copies all node points into a new vector. Contiguous data used for * \brief Copies all node points into a new vector. Contiguous data used for
* writing. Conform with XDMF standard in * writing. Conform with XDMF standard in
* https://www.xdmf.org/index.php/XDMF_Model_and_Format * https://xdmf.org/index.php/XDMF_Model_and_Format
* @param mesh OGS mesh can be mesh or partitionedMesh * @param mesh OGS mesh can be mesh or partitionedMesh
* @return vector containing a copy of the data * @return vector containing a copy of the data
*/ */
...@@ -62,7 +62,7 @@ std::vector<double> transformToXDMFGeometry(MeshLib::Mesh const& mesh); ...@@ -62,7 +62,7 @@ std::vector<double> transformToXDMFGeometry(MeshLib::Mesh const& mesh);
/** /**
* \brief Copies all cells into a new vector. Contiguous data used for writing. * \brief Copies all cells into a new vector. Contiguous data used for writing.
* The topology is specific to xdmf because it contains the xdmf cell types!! * The topology is specific to xdmf because it contains the xdmf cell types!!
* See section topology in https://www.xdmf.org/index.php/XDMF_Model_and_Format * See section topology in https://xdmf.org/index.php/XDMF_Model_and_Format
* @param mesh OGS mesh can be mesh or partitionedMesh * @param mesh OGS mesh can be mesh or partitionedMesh
* @param offset Local offset to transform local to global cell ID. Offset must * @param offset Local offset to transform local to global cell ID. Offset must
* be zero in serial and must be defined for each process in parallel execution. * be zero in serial and must be defined for each process in parallel execution.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment