www.mooseframework.org
ACGrGrBase.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
15 class ACGrGrBase;
16 
17 template <>
18 InputParameters validParams<ACGrGrBase>();
19 
25 class ACGrGrBase : public ACBulk<Real>
26 {
27 public:
28  ACGrGrBase(const InputParameters & parameters);
29 
30 protected:
31  const unsigned int _op_num;
32 
33  std::vector<const VariableValue *> _vals;
34  std::vector<unsigned int> _vals_var;
35 
36  const MaterialProperty<Real> & _mu;
37 };
38 
ACGrGrBase::_vals
std::vector< const VariableValue * > _vals
Definition: ACGrGrBase.h:33
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
ACGrGrBase::ACGrGrBase
ACGrGrBase(const InputParameters &parameters)
Definition: ACGrGrBase.C:22
ACGrGrBase::_op_num
const unsigned int _op_num
Definition: ACGrGrBase.h:31
ACGrGrBase::_vals_var
std::vector< unsigned int > _vals_var
Definition: ACGrGrBase.h:34
ACGrGrBase
This is the base class for kernels that calculate the residual for grain growth.
Definition: ACGrGrBase.h:25
validParams< ACGrGrBase >
InputParameters validParams< ACGrGrBase >()
Definition: ACGrGrBase.C:14
ACGrGrBase::_mu
const MaterialProperty< Real > & _mu
Definition: ACGrGrBase.h:36