diff --git a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp index d36fd179e9739596ce2da373448dc9b0d921b965..cc8e43e565290ac47037bfad30480f02aaefa31f 100644 --- a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp +++ b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp @@ -90,12 +90,6 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( if (_less && local_x[0] < _constraint_threshold_parameter(t, pos).front()) { - DBUG( - "PrimaryVariableConstraintDirichletBoundaryCondition {:f} " - "< {:f} - value {:f} will be set for dof {:d}.", - local_x[0], _constraint_threshold_parameter(t, pos).front(), - _parameter(t, pos).front(), global_index); - bc_values.ids.emplace_back(global_index); bc_values.values.emplace_back(_parameter(t, pos).front()); } @@ -103,21 +97,9 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( local_x[0] > _constraint_threshold_parameter(t, pos).front()) { - DBUG( - "PrimaryVariableConstraintDirichletBoundaryCondition {:f} " - "> {:f} - value {:f} will be set for dof {:d}.", - local_x[0], _constraint_threshold_parameter(t, pos).front(), - _parameter(t, pos).front(), global_index); - bc_values.ids.emplace_back(global_index); bc_values.values.emplace_back(_parameter(t, pos).front()); } - else - { - DBUG( - "PrimaryVariableConstraintDirichletBoundaryCondition " - "condition not satisfied - bc won't be set."); - } } } }