www.mooseframework.org
HomogenizationKernel.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 "Kernel.h"
13 
14 // Forward Declarations
17 class SymmTensor;
18 
19 template <>
20 InputParameters validParams<HomogenizationKernel>();
21 
22 class HomogenizationKernel : public Kernel
23 {
24 public:
25  HomogenizationKernel(const InputParameters & parameters);
26 
27 protected:
28  virtual Real computeQpResidual();
29 
30  const MaterialProperty<SymmElasticityTensor> & _elasticity_tensor;
31 
32 private:
33  const unsigned int _component;
34  const unsigned int _column;
35 };
HomogenizationKernel::HomogenizationKernel
HomogenizationKernel(const InputParameters &parameters)
Definition: HomogenizationKernel.C:38
HomogenizationKernel::_component
const unsigned int _component
Definition: HomogenizationKernel.h:33
SymmElasticityTensor
This class defines a basic set of capabilities any elasticity tensor should have.
Definition: SymmElasticityTensor.h:55
HomogenizationKernel
Definition: HomogenizationKernel.h:22
SymmTensor
Definition: SymmTensor.h:21
HomogenizationKernel::_elasticity_tensor
const MaterialProperty< SymmElasticityTensor > & _elasticity_tensor
Definition: HomogenizationKernel.h:30
validParams< HomogenizationKernel >
InputParameters validParams< HomogenizationKernel >()
Definition: HomogenizationKernel.C:18
HomogenizationKernel::computeQpResidual
virtual Real computeQpResidual()
Definition: HomogenizationKernel.C:55
HomogenizationKernel::_column
const unsigned int _column
Definition: HomogenizationKernel.h:34