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 135367 : DirichletBCBase::validParams() 14 : { 15 135367 : InputParameters params = NodalBC::validParams(); 16 270734 : params.addParam<bool>( 17 270734 : "preset", true, "Whether or not to preset the BC (apply the value before the solve begins)."); 18 135367 : return params; 19 0 : } 20 : 21 60819 : DirichletBCBase::DirichletBCBase(const InputParameters & parameters) 22 121632 : : NodalBC(parameters), _preset(getParam<bool>("preset")) 23 : { 24 60813 : } 25 : 26 : void 27 3791699 : DirichletBCBase::computeValue(NumericVector<Number> & current_solution) 28 : { 29 : mooseAssert(_preset, "BC is not preset"); 30 : 31 3791699 : if (_var.isNodalDefined()) 32 : { 33 3713161 : const dof_id_type & dof_idx = _var.nodalDofIndex(); 34 3713161 : current_solution.set(dof_idx, computeQpValue()); 35 : } 36 3791699 : } 37 : 38 : Real 39 49669560 : DirichletBCBase::computeQpResidual() 40 : { 41 49669560 : return _u[_qp] - computeQpValue(); 42 : }