diff --git a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp index cc8e43e565290ac47037bfad30480f02aaefa31f..4813a20e8b83b3bf75b3007e800a6416cc577869 100644 --- a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp +++ b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.cpp @@ -30,13 +30,13 @@ PrimaryVariableConstraintDirichletBoundaryCondition:: MeshLib::Mesh const& bc_mesh, NumLib::LocalToGlobalIndexMap const& dof_table_bulk, int const variable_id, int const component_id, - ParameterLib::Parameter<double> const& constraint_threshold_parameter, + ParameterLib::Parameter<double> const& threshold_parameter, bool const less) : _parameter(parameter), _bc_mesh(bc_mesh), _variable_id(variable_id), _component_id(component_id), - _constraint_threshold_parameter(constraint_threshold_parameter), + _threshold_parameter(threshold_parameter), _less(less) { checkParametersOfDirichletBoundaryCondition(_bc_mesh, dof_table_bulk, @@ -87,15 +87,13 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( // fetch the value of the primary variable auto const local_x = x.get(std::vector{global_index}); pos.setNodeID(id); - if (_less && - local_x[0] < _constraint_threshold_parameter(t, pos).front()) + if (_less && local_x[0] < _threshold_parameter(t, pos).front()) { bc_values.ids.emplace_back(global_index); bc_values.values.emplace_back(_parameter(t, pos).front()); } else if (!_less && - local_x[0] > - _constraint_threshold_parameter(t, pos).front()) + local_x[0] > _threshold_parameter(t, pos).front()) { bc_values.ids.emplace_back(global_index); bc_values.values.emplace_back(_parameter(t, pos).front()); @@ -124,38 +122,29 @@ createPrimaryVariableConstraintDirichletBoundaryCondition( auto& parameter = ParameterLib::findParameter<double>( param_name, parameters, 1, &bc_mesh); - auto const constraint_type = - //! \ogs_file_param{prj__process_variables__process_variable__boundary_conditions__boundary_condition__PrimaryVariableConstraintDirichletBoundaryCondition__constraint_type} - config.getConfigParameter<std::string>("constraint_type"); - if (constraint_type != "PrimaryVariable") - { - OGS_FATAL( - "The constraint type is '{:s}', but has to be 'PrimaryVariable'.", - constraint_type); - } - - auto const constraint_parameter_name = config.getConfigParameter< + auto const threshold_parameter_name = config.getConfigParameter< std::string>( - //! \ogs_file_param{prj__process_variables__process_variable__boundary_conditions__boundary_condition__PrimaryVariableConstraintDirichletBoundaryCondition__constraint_threshold_parameter} - "constraint_threshold_parameter"); - DBUG("Using parameter {:s} as constraint_threshold_parameter", - constraint_parameter_name); - - auto& constraint_threshold_parameter = ParameterLib::findParameter<double>( - constraint_parameter_name, parameters, 1, &bc_mesh); - - auto const constraint_direction_string = - //! \ogs_file_param{prj__process_variables__process_variable__boundary_conditions__boundary_condition__PrimaryVariableConstraintDirichletBoundaryCondition__constraint_direction} - config.getConfigParameter<std::string>("constraint_direction"); - if (constraint_direction_string != "greater" && - constraint_direction_string != "less") + //! \ogs_file_param{prj__process_variables__process_variable__boundary_conditions__boundary_condition__PrimaryVariableConstraintDirichletBoundaryCondition__threshold_parameter} + "threshold_parameter"); + DBUG("Using parameter {:s} as threshold_parameter", + threshold_parameter_name); + + auto& threshold_parameter = ParameterLib::findParameter<double>( + threshold_parameter_name, parameters, 1, &bc_mesh); + + auto const comparison_operator_string = + //! + //\ogs_file_param{prj__process_variables__process_variable__boundary_conditions__boundary_condition__PrimaryVariableConstraintDirichletBoundaryCondition__comparison_operator} + config.getConfigParameter<std::string>("comparison_operator"); + if (comparison_operator_string != "greater" && + comparison_operator_string != "less") { OGS_FATAL( - "The constraint direction is '{:s}', but has to be either " + "The comparison operator is '{:s}', but has to be either " "'greater' or 'less'.", - constraint_direction_string); + comparison_operator_string); } - bool const less = constraint_direction_string == "less"; + bool const less = comparison_operator_string == "less"; // In case of partitioned mesh the boundary could be empty, i.e. there is no // boundary condition. @@ -174,7 +163,7 @@ createPrimaryVariableConstraintDirichletBoundaryCondition( return std::make_unique< PrimaryVariableConstraintDirichletBoundaryCondition>( parameter, bc_mesh, dof_table_bulk, variable_id, component_id, - constraint_threshold_parameter, less); + threshold_parameter, less); } } // namespace ProcessLib diff --git a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.h b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.h index 7d9b064461baa7ea726871e9bc968a3684dc0a9c..4f887f65927f1eb72699b8796b618821037aa984 100644 --- a/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.h +++ b/ProcessLib/BoundaryCondition/PrimaryVariableConstraintDirichletBoundaryCondition.h @@ -40,7 +40,7 @@ public: MeshLib::Mesh const& bc_mesh, NumLib::LocalToGlobalIndexMap const& dof_table_bulk, int const variable_id, int const component_id, - ParameterLib::Parameter<double> const& constraint_threshold_parameter, + ParameterLib::Parameter<double> const& threshold_parameter, bool const less); void getEssentialBCValues( @@ -58,15 +58,15 @@ private: /// The threshold parameter used to the switch on/off the Dirichlet-type /// boundary condition. - ParameterLib::Parameter<double> const& _constraint_threshold_parameter; + ParameterLib::Parameter<double> const& _threshold_parameter; /// The value less is used for the calculation of the constraint /// criterion. If less is set to true (i.e. 'less' is set in the /// project file) the criterion 'calculated_value - /// < constraint_threshold' is evaluated to switch on/off the boundary + /// < _threshold_parameter' is evaluated to switch on/off the boundary /// condition. /// If less will be set to false in case 'greater' is given in the project - /// file and the condition 'calculated_value > constraint_threshold' is + /// file and the condition 'calculated_value > _threshold_parameter' is /// evaluated. bool const _less; };