www.mooseframework.org
ADAllenCahn.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 "ADAllenCahnBase.h"
13 
14 // Forward Declarations
15 template <ComputeStage>
17 
19 
25 template <ComputeStage compute_stage>
26 class ADAllenCahn : public ADAllenCahnBase<compute_stage, Real>
27 {
28 public:
29  ADAllenCahn(const InputParameters & parameters);
30 
31 protected:
32  virtual ADReal computeDFDOP();
33 
34  const MaterialPropertyName _f_name;
35  const ADMaterialProperty(Real) & _dFdEta;
36 
38 };
39 
ADAllenCahn::ADMaterialProperty
const ADMaterialProperty(Real) &_dFdEta
ADAllenCahn::computeDFDOP
virtual ADReal computeDFDOP()
Compute the derivative of the bulk free energy w.r.t the order parameter.
Definition: ADAllenCahn.C:32
ADAllenCahn::ADAllenCahn
ADAllenCahn(const InputParameters &parameters)
Definition: ADAllenCahn.C:23
ADAllenCahn::usingAllenCahnBaseMembers
usingAllenCahnBaseMembers(Real)
ADAllenCahnBase
This is the Allen-Cahn equation base class that implements the bulk or local energy term of the equat...
Definition: ADAllenCahnBase.h:22
ADAllenCahn
ADAllenCahn uses the Free Energy function and derivatives provided by a DerivativeParsedMaterial to c...
Definition: ADAllenCahn.h:16
ADAllenCahnBase.h
declareADValidParams
declareADValidParams(ADAllenCahn)
ADAllenCahn::_f_name
const MaterialPropertyName _f_name
Definition: ADAllenCahn.h:34