www.mooseframework.org
GhostElemPD.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 #include "PeridynamicsMesh.h"
14 
15 class GhostElemPD;
16 
17 template <>
18 InputParameters validParams<GhostElemPD>();
19 
25 {
26 public:
27  GhostElemPD(const InputParameters & parameters);
28 
29  virtual void meshChanged() override;
30  virtual void initialize() override {}
31  virtual void execute() override {}
32  virtual void finalize() override {}
33 
34 protected:
38  void ghostElements();
39 };
GeneralUserObjectBasePD.h
GeneralUserObjectBasePD
Definition: GeneralUserObjectBasePD.h:20
GhostElemPD::GhostElemPD
GhostElemPD(const InputParameters &parameters)
Definition: GhostElemPD.C:25
PeridynamicsMesh.h
GhostElemPD
Userobject class to ghost the required element for calculation on current processor from other proces...
Definition: GhostElemPD.h:24
GhostElemPD::ghostElements
void ghostElements()
Function to ghost/copy element information from other processors.
Definition: GhostElemPD.C:37
GhostElemPD::execute
virtual void execute() override
Definition: GhostElemPD.h:31
GhostElemPD::finalize
virtual void finalize() override
Definition: GhostElemPD.h:32
GhostElemPD::meshChanged
virtual void meshChanged() override
Definition: GhostElemPD.C:31
GhostElemPD::initialize
virtual void initialize() override
Definition: GhostElemPD.h:30
validParams< GhostElemPD >
InputParameters validParams< GhostElemPD >()
Definition: GhostElemPD.C:17