https://mooseframework.inl.gov
InclusionProperties.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 "Material.h"
13 #include "RankTwoTensor.h"
14 
15 // Forward Declarations
16 
25 {
26 public:
28 
30 
31 protected:
32  virtual void computeQpProperties();
33  virtual void precomputeInteriorProperties();
34 
35 private:
37  const Real _a;
38  const Real _b;
39 
41  const Real _lambda;
42  const Real _mu;
43 
45  std::vector<Real> _misfit;
46 
51 
60 
65 };
This material calculates the stresses, strains, and elastic energies for an ellipsoidal inclusion in ...
std::vector< Real > _misfit
Misfit strains.
MaterialProperty< RankTwoTensor > & _strain
const Real _a
Semimajor axes of the ellipsoidal inclusion.
MaterialProperty< Real > & _elastic_energy
RankTwoTensor _total_strain_int
const Real _lambda
Elastic constants (isotropic)
Real _kappa
Kolosov&#39;s first constant.
RankTwoTensor _stress_int
Interior stress and strain values are constant so they only need to be calculated once...
InclusionProperties(const InputParameters &parameters)
MaterialProperty< RankTwoTensor > & _stress
The stress tensor.
virtual void precomputeInteriorProperties()
Real _nu
Poisson&#39;s ratio.
static InputParameters validParams()
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
RankTwoTensor _elastic_strain_int
virtual void computeQpProperties()
const InputParameters & parameters() const