www.mooseframework.org
BoundaryOffsetPD.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 
12 #include "AuxKernelBasePD.h"
13 
14 class BoundaryOffsetPD;
15 class PeridynamicsMesh;
16 
17 template <>
18 InputParameters validParams<BoundaryOffsetPD>();
19 
24 {
25 public:
26  BoundaryOffsetPD(const InputParameters & parameters);
27 
28 protected:
29  Real computeValue() override;
30 };
validParams< BoundaryOffsetPD >
InputParameters validParams< BoundaryOffsetPD >()
Definition: BoundaryOffsetPD.C:17
PeridynamicsMesh
Peridynamics mesh class.
Definition: PeridynamicsMesh.h:25
AuxKernelBasePD.h
BoundaryOffsetPD
Aux Kernel class to output the offset of boundary nodes from initial FE mesh.
Definition: BoundaryOffsetPD.h:23
BoundaryOffsetPD::computeValue
Real computeValue() override
Definition: BoundaryOffsetPD.C:35
AuxKernelBasePD
Peridynamic Aux Kernel base class.
Definition: AuxKernelBasePD.h:23
BoundaryOffsetPD::BoundaryOffsetPD
BoundaryOffsetPD(const InputParameters &parameters)
Definition: BoundaryOffsetPD.C:28