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 
21 class ACGrGrPoly : public ACGrGrBase
22 {
23 public:
25 
26  ACGrGrPoly(const InputParameters & parameters);
27 
28 protected:
29  virtual Real assignThisOp();
30  virtual std::vector<Real> assignOtherOps();
31  virtual Real computeDFDOP(PFFunctionType type);
32  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
33 
35 };
This is the base class for kernels that calculate the residual for grain growth.
Definition: ACGrGrBase.h:21
This kernel calculates the residual for grain growth for a single phase, poly-crystal system...
Definition: ACGrGrPoly.h:21
virtual Real assignThisOp()
Definition: ACGrGrPoly.C:28
virtual Real computeDFDOP(PFFunctionType type)
Definition: ACGrGrPoly.C:44
static InputParameters validParams()
Definition: ACGrGrPoly.C:15
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: ACGrGrPoly.C:75
virtual std::vector< Real > assignOtherOps()
Definition: ACGrGrPoly.C:34
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
ACGrGrPoly(const InputParameters &parameters)
Definition: ACGrGrPoly.C:22
const MaterialProperty< Real > & _gamma
Definition: ACGrGrPoly.h:34