https://mooseframework.inl.gov
Loading...
Searching...
No Matches
GeneralizedPlaneStrainOffDiagNOSPD.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
12#include "MechanicsBaseNOSPD.h"
13
19{
20public:
22
24
25protected:
26 virtual void computeLocalResidual() override {};
27 virtual void computeOffDiagJacobianScalar(unsigned int jvar_num) override;
28
35 void computeDispFullOffDiagJacobianScalar(unsigned int component, unsigned int jvar_num);
36
43 void computeDispPartialOffDiagJacobianScalar(unsigned int component, unsigned int jvar_num);
44
49 void computeTempOffDiagJacobianScalar(unsigned int jvar_num);
50
53
54 DenseMatrix<Number> _ken;
55 DenseMatrix<Number> _kne;
56};
Kernel class for coupled off diagonal Jacobian entries of Form I of horizon stabilized peridynamic ge...
void computeTempOffDiagJacobianScalar(unsigned int jvar_num)
Function to compute off disgonal Jacobian for coupling between temperature and scalar variable.
virtual void computeOffDiagJacobianScalar(unsigned int jvar_num) override
const unsigned int _scalar_out_of_plane_strain_var_num
The variable number of the scalar out-of-plane strain variable.
void computeDispFullOffDiagJacobianScalar(unsigned int component, unsigned int jvar_num)
Function to compute the full off diagonal Jacobian for coupling between displacements and scalar vari...
void computeDispPartialOffDiagJacobianScalar(unsigned int component, unsigned int jvar_num)
Function to compute partial off diagonal Jacobian for coupling between displacements and scalar varia...
Base kernel class for bond-associated correspondence material models.