www.mooseframework.org
ComputeCosseratLinearElasticStress.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 
13 
15 
16 template <>
18 
26 {
27 public:
28  static InputParameters validParams();
29 
30  ComputeCosseratLinearElasticStress(const InputParameters & parameters);
31 
32  virtual void initialSetup() override;
33 
34 protected:
35  virtual void computeQpStress() override;
36 
38  const std::string _elasticity_tensor_name;
40  const MaterialProperty<RankFourTensor> & _elasticity_tensor;
41 };
ComputeCosseratLinearElasticStress
ComputeCosseratLinearElasticStress computes the Cosserat stress and couple-stress following linear el...
Definition: ComputeCosseratLinearElasticStress.h:25
ComputeCosseratLinearElasticStress::computeQpStress
virtual void computeQpStress() override
Compute the stress and store it in the _stress material property for the current quadrature point.
Definition: ComputeCosseratLinearElasticStress.C:41
ComputeCosseratLinearElasticStress::initialSetup
virtual void initialSetup() override
Definition: ComputeCosseratLinearElasticStress.C:34
ComputeCosseratLinearElasticStress::validParams
static InputParameters validParams()
Definition: ComputeCosseratLinearElasticStress.C:17
ComputeCosseratLinearElasticStress::_elasticity_tensor
const MaterialProperty< RankFourTensor > & _elasticity_tensor
Elasticity tensor material property.
Definition: ComputeCosseratLinearElasticStress.h:40
ComputeCosseratStressBase.h
ComputeCosseratLinearElasticStress::ComputeCosseratLinearElasticStress
ComputeCosseratLinearElasticStress(const InputParameters &parameters)
Definition: ComputeCosseratLinearElasticStress.C:25
validParams< ComputeCosseratLinearElasticStress >
InputParameters validParams< ComputeCosseratLinearElasticStress >()
ComputeCosseratStressBase
ComputeCosseratStressBase is the base class for stress tensors.
Definition: ComputeCosseratStressBase.h:22
ComputeCosseratLinearElasticStress::_elasticity_tensor_name
const std::string _elasticity_tensor_name
Name of the elasticity tensor material property.
Definition: ComputeCosseratLinearElasticStress.h:38