www.mooseframework.org
WeakPlaneStressNOSPD.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 "MechanicsBaseNOSPD.h"
13 
15 
16 template <>
17 InputParameters validParams<WeakPlaneStressNOSPD>();
18 
24 {
25 public:
26  WeakPlaneStressNOSPD(const InputParameters & parameters);
27 
28  virtual void computeLocalResidual() override;
29  virtual void computeLocalJacobian() override;
30  virtual void computeLocalOffDiagJacobian(unsigned int coupled_component) override;
31  virtual void computePDNonlocalOffDiagJacobian(unsigned int jvar_num,
32  unsigned int coupled_component) override;
33 };
MechanicsBaseNOSPD
Base kernel class for bond-associated correspondence material models.
Definition: MechanicsBaseNOSPD.h:22
WeakPlaneStressNOSPD::computeLocalResidual
virtual void computeLocalResidual() override
Definition: WeakPlaneStressNOSPD.C:33
WeakPlaneStressNOSPD::computeLocalOffDiagJacobian
virtual void computeLocalOffDiagJacobian(unsigned int coupled_component) override
Function to compute local contribution to the off-diagonal Jacobian at the current nodes.
Definition: WeakPlaneStressNOSPD.C:49
WeakPlaneStressNOSPD::computeLocalJacobian
virtual void computeLocalJacobian() override
Definition: WeakPlaneStressNOSPD.C:40
MechanicsBaseNOSPD.h
WeakPlaneStressNOSPD
Kernel class for weak plane stress formulation based on bond-associated correspondence material model...
Definition: WeakPlaneStressNOSPD.h:23
validParams< WeakPlaneStressNOSPD >
InputParameters validParams< WeakPlaneStressNOSPD >()
Definition: WeakPlaneStressNOSPD.C:18
WeakPlaneStressNOSPD::computePDNonlocalOffDiagJacobian
virtual void computePDNonlocalOffDiagJacobian(unsigned int jvar_num, unsigned int coupled_component) override
Function to compute nonlocal contribution to the off-diagonal Jacobian at the current nodes.
Definition: WeakPlaneStressNOSPD.C:76
WeakPlaneStressNOSPD::WeakPlaneStressNOSPD
WeakPlaneStressNOSPD(const InputParameters &parameters)
Definition: WeakPlaneStressNOSPD.C:27