www.mooseframework.org
MaterialTensorIntegralSM.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 "ElementIntegralPostprocessor.h"
14 
15 // Forward Declarations
17 class SymmTensor;
18 
19 template <>
21 
26 class MaterialTensorIntegralSM : public ElementIntegralPostprocessor
27 {
28 public:
29  MaterialTensorIntegralSM(const InputParameters & parameters);
30 
31 protected:
32  virtual Real computeQpIntegral();
33 
35  const MaterialProperty<SymmTensor> & _tensor;
36 };
37 
MaterialTensorIntegralSM
This postprocessor computes an element integral of a component of a material tensor.
Definition: MaterialTensorIntegralSM.h:26
MaterialTensorIntegralSM::_material_tensor_calculator
MaterialTensorCalculator _material_tensor_calculator
Definition: MaterialTensorIntegralSM.h:34
MaterialTensorCalculator.h
MaterialTensorIntegralSM::_tensor
const MaterialProperty< SymmTensor > & _tensor
Definition: MaterialTensorIntegralSM.h:35
MaterialTensorIntegralSM::computeQpIntegral
virtual Real computeQpIntegral()
Definition: MaterialTensorIntegralSM.C:36
MaterialTensorCalculator
Definition: MaterialTensorCalculator.h:24
validParams< MaterialTensorIntegralSM >
InputParameters validParams< MaterialTensorIntegralSM >()
Definition: MaterialTensorIntegralSM.C:19
SymmTensor
Definition: SymmTensor.h:21
MaterialTensorIntegralSM::MaterialTensorIntegralSM
MaterialTensorIntegralSM(const InputParameters &parameters)
Definition: MaterialTensorIntegralSM.C:28