www.mooseframework.org
SimpleACInterface.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 "Kernel.h"
13 
14 class SimpleACInterface;
15 
16 template <>
17 InputParameters validParams<SimpleACInterface>();
18 
22 class SimpleACInterface : public Kernel
23 {
24 public:
25  SimpleACInterface(const InputParameters & parameters);
26 
27 protected:
28  virtual Real computeQpResidual();
29  virtual Real computeQpJacobian();
30 
32  const MaterialProperty<Real> & _L;
34  const MaterialProperty<Real> & _kappa;
35 };
36 
SimpleACInterface::_kappa
const MaterialProperty< Real > & _kappa
Interfacial parameter.
Definition: SimpleACInterface.h:34
SimpleACInterface::SimpleACInterface
SimpleACInterface(const InputParameters &parameters)
Definition: SimpleACInterface.C:26
SimpleACInterface::computeQpResidual
virtual Real computeQpResidual()
Definition: SimpleACInterface.C:34
validParams< SimpleACInterface >
InputParameters validParams< SimpleACInterface >()
Definition: SimpleACInterface.C:16
SimpleACInterface
Compute the Allen-Cahn interface term with constant Mobility and Interfacial parameter.
Definition: SimpleACInterface.h:22
SimpleACInterface::computeQpJacobian
virtual Real computeQpJacobian()
Definition: SimpleACInterface.C:40
SimpleACInterface::_L
const MaterialProperty< Real > & _L
Mobility.
Definition: SimpleACInterface.h:32