www.mooseframework.org
ACGrGrPoly.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 "ACGrGrBase.h"
13 
14 // Forward Declarations
15 class ACGrGrPoly;
16 
17 template <>
18 InputParameters validParams<ACGrGrPoly>();
19 
25 class ACGrGrPoly : public ACGrGrBase
26 {
27 public:
28  ACGrGrPoly(const InputParameters & parameters);
29 
30 protected:
31  virtual Real computeDFDOP(PFFunctionType type);
32  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
33 
34  const MaterialProperty<Real> & _gamma;
35 };
36 
ACGrGrPoly::_gamma
const MaterialProperty< Real > & _gamma
Definition: ACGrGrPoly.h:34
ACGrGrPoly::computeDFDOP
virtual Real computeDFDOP(PFFunctionType type)
Definition: ACGrGrPoly.C:29
validParams< ACGrGrPoly >
InputParameters validParams< ACGrGrPoly >()
Definition: ACGrGrPoly.C:16
ACGrGrBase
This is the base class for kernels that calculate the residual for grain growth.
Definition: ACGrGrBase.h:25
ACGrGrPoly
This kernel calculates the residual for grain growth for a single phase, poly-crystal system.
Definition: ACGrGrPoly.h:25
ACGrGrPoly::ACGrGrPoly
ACGrGrPoly(const InputParameters &parameters)
Definition: ACGrGrPoly.C:23
ACGrGrBase.h
ACGrGrPoly::computeQpOffDiagJacobian
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: ACGrGrPoly.C:57
ACBulk< Real >::PFFunctionType
PFFunctionType
Definition: ACBulk.h:37