www.mooseframework.org
NodalVariableIntegralPD.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 #pragma once
11 
13 
15 
16 template <>
17 InputParameters validParams<NodalVariableIntegralPD>();
18 
23 {
24 public:
25  NodalVariableIntegralPD(const InputParameters & parameters);
26 
27 protected:
28  virtual Real computeNodalValue() override;
29 
31  MooseVariable & _var;
32 };
NodalVariableIntegralPD::_var
MooseVariable & _var
Nodal variable to be integrated.
Definition: NodalVariableIntegralPD.h:31
validParams< NodalVariableIntegralPD >
InputParameters validParams< NodalVariableIntegralPD >()
Definition: NodalVariableIntegralPD.C:17
NodalVariableIntegralPD
Postprocessor class to compute nodal variable integral in peridynamic discretization.
Definition: NodalVariableIntegralPD.h:22
NodalIntegralPostprocessorBasePD.h
NodalVariableIntegralPD::NodalVariableIntegralPD
NodalVariableIntegralPD(const InputParameters &parameters)
Definition: NodalVariableIntegralPD.C:28
NodalVariableIntegralPD::computeNodalValue
virtual Real computeNodalValue() override
Function to evaluate the given function at each material point.
Definition: NodalVariableIntegralPD.C:35
NodalIntegralPostprocessorBasePD
Postprocessor class to compute a volume integral of the specified variable Note that specializations ...
Definition: NodalIntegralPostprocessorBasePD.h:24