https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ACGrGrPolyLinearizedInterface.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 "ACGrGrPoly.h"
13
14// Forward Declarations
15
21{
22public:
24
26
27protected:
28 virtual Real assignThisOp();
29 virtual std::vector<Real> assignOtherOps();
30 virtual Real computeDFDOP(PFFunctionType type);
31 virtual Real computeQpOffDiagJacobian(unsigned int jvar);
32
33 const std::vector<MaterialPropertyName> _other_op_names;
34 const unsigned int _num_ops;
38
39 std::vector<const MaterialProperty<Real> *> _opj;
40 std::vector<const MaterialProperty<Real> *> _dopjdarg;
41};
This kernel calculates the residual for grain growth for a single phase, polycrystal system using the...
const MaterialProperty< Real > & _dopdphi
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
const MaterialProperty< Real > & _gamma
const MaterialProperty< Real > & _op
virtual Real computeDFDOP(PFFunctionType type)
std::vector< const MaterialProperty< Real > * > _dopjdarg
virtual std::vector< Real > assignOtherOps()
std::vector< const MaterialProperty< Real > * > _opj
const std::vector< MaterialPropertyName > _other_op_names
This kernel calculates the residual for grain growth for a single phase, poly-crystal system.
Definition ACGrGrPoly.h:22