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