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

Merge branch 'xdmf_integration_points_as_other' into 'master'

[MeL/IO]: XDMF: cell type is 'Other' for integration points

See merge request ogs/ogs!3912
parents 4cfee7fd 37e4b189
No related branches found
No related tags found
No related merge requests found
...@@ -30,10 +30,10 @@ using namespace BaseLib; ...@@ -30,10 +30,10 @@ using namespace BaseLib;
namespace MeshLib::IO namespace MeshLib::IO
{ {
// similar definition in Location.h - XDMF uses capital letters // similar definition in Location.h - XDMF uses capital letters
// Actually there is no correspondece for "IntegrationPoint" in XDMF Format // There is no correspondece for "IntegrationPoint" in XDMF Format
// specification // specification - add it as "Other"
constexpr char const* mesh_item_type_strings[] = {"Node", "Edge", "Face", constexpr char const* mesh_item_type_strings[] = {"Node", "Edge", "Face",
"Cell", "IntegrationPoint"}; "Cell", "Other"};
// Transforms MeshItemType into string // Transforms MeshItemType into string
static std::string meshItemTypeString( static std::string meshItemTypeString(
......
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