Skip to content

Commit

Permalink
[PL] BC; Capital-case writing of BC.
Browse files Browse the repository at this point in the history
  • Loading branch information
endJunction committed Jul 18, 2018
1 parent 4c293ba commit 97eb96e
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ createConstraintDirichletBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}

return std::make_unique<ConstraintDirichletBoundaryCondition>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ std::unique_ptr<DirichletBoundaryCondition> createDirichletBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}

return std::make_unique<DirichletBoundaryCondition>(
Expand Down
2 changes: 1 addition & 1 deletion ProcessLib/BoundaryCondition/DirichletBoundaryCondition.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class DirichletBoundaryCondition final : public BoundaryCondition

MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);

// Create local DOF table from the bc mesh subset for the given variable
// Create local DOF table from the BC mesh subset for the given variable
// and component id.
_dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
variable_id, {component_id}, std::move(bc_mesh_subset),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData,

MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);

// Create local DOF table from the bc mesh subset for the given variable and
// Create local DOF table from the BC mesh subset for the given variable and
// component id.
_dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
variable_id, {component_id}, std::move(bc_mesh_subset),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ GenericNonuniformNaturalBoundaryCondition<BoundaryConditionData,

MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);

// Create local DOF table from the bc mesh subset for the given variable and
// Create local DOF table from the BC mesh subset for the given variable and
// component id.
_dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
variable_id, {component_id}, std::move(bc_mesh_subset),
Expand Down
2 changes: 1 addition & 1 deletion ProcessLib/BoundaryCondition/NeumannBoundaryCondition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ std::unique_ptr<NeumannBoundaryCondition> createNeumannBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}

return std::make_unique<NeumannBoundaryCondition>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ createNonuniformDirichletBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}
return std::make_unique<NonuniformDirichletBoundaryCondition>(
boundary_mesh, *property, dof_table, variable_id, component_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class NonuniformDirichletBoundaryCondition final : public BoundaryCondition

MeshLib::MeshSubset boundary_mesh_subset(_boundary_mesh, bc_nodes);

// Create local DOF table from the bc mesh subset for the given variable
// Create local DOF table from the BC mesh subset for the given variable
// and component id.
_dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
variable_id, {component_id}, std::move(boundary_mesh_subset),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ createNonuniformNeumannBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}

return std::make_unique<NonuniformNeumannBoundaryCondition>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ NormalTractionBoundaryCondition<LocalAssemblerImplementation>::

MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);

// Create local DOF table from the bc mesh subset for the given variable and
// Create local DOF table from the BC mesh subset for the given variable and
// component ids.
_dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
variable_id, component_ids, std::move(bc_mesh_subset),
Expand Down Expand Up @@ -96,7 +96,7 @@ createNormalTractionBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}

auto const& pressure = findParameter<double>(parameter_name, parameters, 1);
Expand Down
2 changes: 1 addition & 1 deletion ProcessLib/BoundaryCondition/RobinBoundaryCondition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ std::unique_ptr<RobinBoundaryCondition> createRobinBoundaryCondition(
config.getConfigParameter<bool>("strict_bc_domain", true);
if (!strict_bc_domain)
{
DBUG("Allow non-strict bc domain and global component mapping.");
DBUG("Allow non-strict BC domain and global component mapping.");
}

return std::make_unique<RobinBoundaryCondition>(
Expand Down

0 comments on commit 97eb96e

Please sign in to comment.