Skip to content
Snippets Groups Projects
Commit f9c11d78 authored by Norihiro Watanabe's avatar Norihiro Watanabe Committed by Dmitri Naumov
Browse files

fix typo

parent 8b902a6f
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ BoundaryConditionBuilder::createDirichletBoundaryCondition( ...@@ -102,7 +102,7 @@ BoundaryConditionBuilder::createDirichletBoundaryCondition(
}); });
ids.erase(ids_new_end_iterator, std::end(ids)); ids.erase(ids_new_end_iterator, std::end(ids));
DBUG("Found %d nodes for Dirichlet BCs for the variable %d and componet %d", DBUG("Found %d nodes for Dirichlet BCs for the variable %d and component %d",
ids.size(), variable_id, config.component_id); ids.size(), variable_id, config.component_id);
return ProcessLib::createDirichletBoundaryCondition( return ProcessLib::createDirichletBoundaryCondition(
......
...@@ -39,7 +39,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData, ...@@ -39,7 +39,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData,
static_cast<int>(dof_table_bulk.getNumberOfComponents())); static_cast<int>(dof_table_bulk.getNumberOfComponents()));
std::vector<MeshLib::Node*> nodes = MeshLib::getUniqueNodes(_elements); std::vector<MeshLib::Node*> nodes = MeshLib::getUniqueNodes(_elements);
DBUG("Found %d nodes for Natural BCs for the varialbe %d and component %d", DBUG("Found %d nodes for Natural BCs for the variable %d and component %d",
nodes.size(), variable_id, component_id); nodes.size(), variable_id, component_id);
auto const& mesh_subsets = auto const& mesh_subsets =
......
...@@ -47,7 +47,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData, ...@@ -47,7 +47,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData,
static_cast<int>(dof_table_bulk.getNumberOfComponents())); static_cast<int>(dof_table_bulk.getNumberOfComponents()));
std::vector<MeshLib::Node*> nodes = MeshLib::getUniqueNodes(_elements); std::vector<MeshLib::Node*> nodes = MeshLib::getUniqueNodes(_elements);
DBUG("Found %d nodes for Natural BCs for the varialbe %d and component %d", DBUG("Found %d nodes for Natural BCs for the variable %d and component %d",
nodes.size(), variable_id, component_id); nodes.size(), variable_id, component_id);
auto const& mesh_subsets = auto const& mesh_subsets =
......
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