Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #include "DirichletBCBase.h" 11 : 12 : InputParameters 13 193540 : DirichletBCBase::validParams() 14 : { 15 193540 : InputParameters params = NodalBC::validParams(); 16 387080 : params.addParam<bool>( 17 387080 : "preset", true, "Whether or not to preset the BC (apply the value before the solve begins)."); 18 193540 : return params; 19 0 : } 20 : 21 67268 : DirichletBCBase::DirichletBCBase(const InputParameters & parameters) 22 134528 : : NodalBC(parameters), _preset(getParam<bool>("preset")) 23 : { 24 67260 : } 25 : 26 : void 27 4288769 : DirichletBCBase::computeValue(NumericVector<Number> & current_solution) 28 : { 29 : mooseAssert(_preset, "BC is not preset"); 30 : 31 4288769 : if (_var.isNodalDefined()) 32 : { 33 4218322 : const dof_id_type & dof_idx = _var.nodalDofIndex(); 34 4218322 : current_solution.set(dof_idx, computeQpValue()); 35 : } 36 4288769 : } 37 : 38 : Real 39 54854127 : DirichletBCBase::computeQpResidual() 40 : { 41 54854127 : return _u[_qp] - computeQpValue(); 42 : }