www.mooseframework.org
MechanicsBPD.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 "MechanicsBasePD.h"
13 
14 class MechanicsBPD;
15 
16 template <>
17 InputParameters validParams<MechanicsBPD>();
18 
23 {
24 public:
25  MechanicsBPD(const InputParameters & parameters);
26 
27 protected:
28  virtual void computeLocalResidual() override;
29  virtual void computeLocalJacobian() override;
30  virtual void computeLocalOffDiagJacobian(unsigned int jvar) override;
31 
33  const MaterialProperty<Real> & _bond_force_ij;
34  const MaterialProperty<Real> & _bond_dfdU_ij;
35  const MaterialProperty<Real> & _bond_dfdT_ij;
37 
39  const unsigned int _component;
40 };
MechanicsBPD::_bond_force_ij
const MaterialProperty< Real > & _bond_force_ij
Bond based material properties.
Definition: MechanicsBPD.h:33
MechanicsBPD::MechanicsBPD
MechanicsBPD(const InputParameters &parameters)
Definition: MechanicsBPD.C:29
MechanicsBPD::_bond_dfdU_ij
const MaterialProperty< Real > & _bond_dfdU_ij
Definition: MechanicsBPD.h:34
MechanicsBPD::computeLocalOffDiagJacobian
virtual void computeLocalOffDiagJacobian(unsigned int jvar) override
Function to compute local contribution to the off-diagonal Jacobian at the current nodes.
Definition: MechanicsBPD.C:58
MechanicsBPD::_bond_dfdT_ij
const MaterialProperty< Real > & _bond_dfdT_ij
Definition: MechanicsBPD.h:35
MechanicsBPD::computeLocalJacobian
virtual void computeLocalJacobian() override
Definition: MechanicsBPD.C:46
MechanicsBasePD.h
MechanicsBPD
Kernel class for bond based peridynamic solid mechanics models.
Definition: MechanicsBPD.h:22
MechanicsBPD::computeLocalResidual
virtual void computeLocalResidual() override
Definition: MechanicsBPD.C:39
MechanicsBPD::_component
const unsigned int _component
The index of displcement component.
Definition: MechanicsBPD.h:39
MechanicsBasePD
Base kernel class for peridynamic solid mechanics models.
Definition: MechanicsBasePD.h:23
validParams< MechanicsBPD >
InputParameters validParams< MechanicsBPD >()
Definition: MechanicsBPD.C:16