https://mooseframework.inl.gov
GhostElemPD.h
Go to the documentation of this file.
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 #pragma once
11 
13 #include "PeridynamicsMesh.h"
14 
20 {
21 public:
23 
25 
26  virtual void meshChanged() override;
27  virtual void initialize() override {}
28  virtual void execute() override {}
29  virtual void finalize() override {}
30 
31 protected:
35  void ghostElements();
36 };
virtual void initialize() override
Definition: GhostElemPD.h:27
GhostElemPD(const InputParameters &parameters)
Definition: GhostElemPD.C:24
void ghostElements()
Function to ghost/copy element information from other processors.
Definition: GhostElemPD.C:36
virtual void finalize() override
Definition: GhostElemPD.h:29
Userobject class to ghost the required element for calculation on current processor from other proces...
Definition: GhostElemPD.h:19
const InputParameters & parameters() const
virtual void meshChanged() override
Definition: GhostElemPD.C:30
virtual void execute() override
Definition: GhostElemPD.h:28
static InputParameters validParams()
Definition: GhostElemPD.C:16