www.mooseframework.org
ComputeSmallStrainNOSPD.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 "ComputeStrainBaseNOSPD.h"
13 #include "RankTwoTensor.h"
14 
16 
17 template <>
18 InputParameters validParams<ComputeSmallStrainNOSPD>();
19 
24 {
25 public:
26  ComputeSmallStrainNOSPD(const InputParameters & parameters);
27 
28 protected:
29  virtual void computeQpStrain() override;
30 
34  virtual void computeQpTotalStrain();
35 };
validParams< ComputeSmallStrainNOSPD >
InputParameters validParams< ComputeSmallStrainNOSPD >()
Definition: ComputeSmallStrainNOSPD.C:16
ComputeSmallStrainNOSPD::computeQpStrain
virtual void computeQpStrain() override
Function to compute strain tensors.
Definition: ComputeSmallStrainNOSPD.C:33
ComputeSmallStrainNOSPD
Material class for bond-associated correspondence material model for small strain.
Definition: ComputeSmallStrainNOSPD.h:23
ComputeStrainBaseNOSPD
Base material class for correspondence material model.
Definition: ComputeStrainBaseNOSPD.h:24
ComputeStrainBaseNOSPD.h
ComputeSmallStrainNOSPD::computeQpTotalStrain
virtual void computeQpTotalStrain()
Function to compute the total strain tensor for small strain case.
Definition: ComputeSmallStrainNOSPD.C:47
ComputeSmallStrainNOSPD::ComputeSmallStrainNOSPD
ComputeSmallStrainNOSPD(const InputParameters &parameters)
Definition: ComputeSmallStrainNOSPD.C:27