www.mooseframework.org
ACGrGrElasticDrivingForce.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 "ACBulk.h"
13 
14 // Forward Declarations
16 template <typename>
19 template <typename>
22 
23 template <>
25 
31 class ACGrGrElasticDrivingForce : public ACBulk<Real>
32 {
33 public:
34  ACGrGrElasticDrivingForce(const InputParameters & parameters);
35 
36 protected:
37  virtual Real computeDFDOP(PFFunctionType type);
38 
39 private:
40  const MaterialProperty<RankFourTensor> & _D_elastic_tensor;
41  const MaterialProperty<RankTwoTensor> & _elastic_strain;
42 };
43 
ACBulk
This is the Allen-Cahn equation base class that implements the bulk or local energy term of the equat...
Definition: ACBulk.h:24
ACBulk.h
validParams< ACGrGrElasticDrivingForce >
InputParameters validParams< ACGrGrElasticDrivingForce >()
Definition: ACGrGrElasticDrivingForce.C:20
ACGrGrElasticDrivingForce::computeDFDOP
virtual Real computeDFDOP(PFFunctionType type)
Definition: ACGrGrElasticDrivingForce.C:37
ACGrGrElasticDrivingForce::ACGrGrElasticDrivingForce
ACGrGrElasticDrivingForce(const InputParameters &parameters)
Definition: ACGrGrElasticDrivingForce.C:29
RankTwoTensor
RankTwoTensorTempl< Real > RankTwoTensor
Definition: ACGrGrElasticDrivingForce.h:17
ACGrGrElasticDrivingForce::_D_elastic_tensor
const MaterialProperty< RankFourTensor > & _D_elastic_tensor
Definition: ACGrGrElasticDrivingForce.h:40
ACGrGrElasticDrivingForce
Calculates the porton of the Allen-Cahn equation that results from the deformation energy.
Definition: ACGrGrElasticDrivingForce.h:31
RankFourTensorTempl
Definition: ACGrGrElasticDrivingForce.h:20
RankTwoTensorTempl
Definition: ACGrGrElasticDrivingForce.h:17
RankFourTensor
RankFourTensorTempl< Real > RankFourTensor
Definition: ACGrGrElasticDrivingForce.h:20
ACGrGrElasticDrivingForce::_elastic_strain
const MaterialProperty< RankTwoTensor > & _elastic_strain
Definition: ACGrGrElasticDrivingForce.h:41
ACBulk< Real >::PFFunctionType
PFFunctionType
Definition: ACBulk.h:37