diff --git a/Applications/ApplicationsLib/LinearSolverLibrarySetup.h b/Applications/ApplicationsLib/LinearSolverLibrarySetup.h index 42698f3c8e9ce6c68aad8facbf486f07825d4e3b..39df3c8d56922f5da8103a07109ec36653f683a6 100644 --- a/Applications/ApplicationsLib/LinearSolverLibrarySetup.h +++ b/Applications/ApplicationsLib/LinearSolverLibrarySetup.h @@ -32,6 +32,7 @@ struct LinearSolverLibrarySetup final MPI_Init(&argc, &argv); char help[] = "ogs6 with PETSc \n"; PetscInitialize(&argc, &argv, nullptr, help); + MPI_Comm_set_errhandler(PETSC_COMM_WORLD, MPI_ERRORS_RETURN); } ~LinearSolverLibrarySetup() diff --git a/MeshLib/Vtk/VtkMappedMeshSource.cpp b/MeshLib/Vtk/VtkMappedMeshSource.cpp index 34bc9eba8b327de8383057c7eb5e8c3fb02c9a28..c31e9dfbd80bf38159c6709f797e38bc11fed3c8 100644 --- a/MeshLib/Vtk/VtkMappedMeshSource.cpp +++ b/MeshLib/Vtk/VtkMappedMeshSource.cpp @@ -144,35 +144,43 @@ int VtkMappedMeshSource::RequestData(vtkInformation* /*request*/, std::vector<std::string> const& propertyNames = properties.getPropertyVectorNames(); - for (auto name = propertyNames.cbegin(); name != propertyNames.cend(); - ++name) + for (auto const& name : propertyNames) { - if (addProperty<double>(properties, *name)) + if (addProperty<double>(properties, name)) { continue; } - if (addProperty<float>(properties, *name)) + if (addProperty<float>(properties, name)) { continue; } - if (addProperty<int>(properties, *name)) + if (addProperty<int>(properties, name)) { continue; } - if (addProperty<unsigned>(properties, *name)) + if (addProperty<unsigned>(properties, name)) { continue; } - if (addProperty<std::size_t>(properties, *name)) + if (addProperty<std::size_t>(properties, name)) { continue; } - if (addProperty<char>(properties, *name)) + if (addProperty<char>(properties, name)) { continue; } - DBUG("Mesh property '%s' with unknown data type.", *name->c_str()); + OGS_FATAL( + "Mesh property '%s' with unknown data type. Please check the data " + "type of the mesh properties. The available data types are:" + "\n\t double," + "\n\t float," + "\n\t int," + "\n\t unsigned," + "\n\t size_t," + "\n\t char.", + name.data()); } output->GetPointData()->ShallowCopy(this->PointData.GetPointer());