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 "SideVariablePostprocessor.h" 11 : #include "MooseVariable.h" 12 : #include "SubProblem.h" 13 : #include "MooseTypes.h" 14 : 15 : #include "libmesh/quadrature.h" 16 : 17 : InputParameters 18 14465 : SideVariablePostprocessor::validParams() 19 : { 20 14465 : InputParameters params = SidePostprocessor::validParams(); 21 14465 : params.addRequiredCoupledVar("variable", 22 : "The name of the variable that this postprocessor operates on"); 23 14465 : return params; 24 0 : } 25 : 26 104 : SideVariablePostprocessor::SideVariablePostprocessor(const InputParameters & parameters) 27 : : SidePostprocessor(parameters), 28 : MooseVariableInterface<Real>(this, 29 : false, 30 : "variable", 31 : Moose::VarKindType::VAR_ANY, 32 : Moose::VarFieldType::VAR_FIELD_STANDARD), 33 104 : _u(coupledValue("variable")), 34 104 : _grad_u(coupledGradient("variable")), 35 104 : _qp(0) 36 : { 37 104 : addMooseVariableDependency(&mooseVariableField()); 38 104 : } 39 : 40 : void 41 640 : SideVariablePostprocessor::execute() 42 : { 43 2560 : for (_qp = 0; _qp < _qrule->n_points(); _qp++) 44 1920 : computeQpValue(); 45 640 : }