https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ACGrGrPoly.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 "ACGrGrBase.h"
13
14// Forward Declarations
15
21class ACGrGrPoly : public ACGrGrBase
22{
23public:
25
26 ACGrGrPoly(const InputParameters & parameters);
27
28protected:
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:22
This kernel calculates the residual for grain growth for a single phase, poly-crystal system.
Definition ACGrGrPoly.h:22
virtual Real computeDFDOP(PFFunctionType type)
Definition ACGrGrPoly.C:44
static InputParameters validParams()
Definition ACGrGrPoly.C:15
const MaterialProperty< Real > & _gamma
Definition ACGrGrPoly.h:34
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition ACGrGrPoly.C:75
virtual Real assignThisOp()
Definition ACGrGrPoly.C:28
virtual std::vector< Real > assignOtherOps()
Definition ACGrGrPoly.C:34