https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ACInterface2DMultiPhase1.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 "Kernel.h"
13#include "JvarMapInterface.h"
15#include "ACInterface.h"
16
23{
24public:
26
27 ACInterface2DMultiPhase1(const InputParameters & parameters);
28
29protected:
30 virtual Real computeQpResidual();
31 virtual Real computeQpJacobian();
32 virtual Real computeQpOffDiagJacobian(unsigned int jvar);
33
34 Real sumSquareGradEta();
35
39
41 unsigned int _num_etas;
42 std::vector<const VariableValue *> _eta;
43 std::vector<const VariableGradient *> _grad_eta;
44};
Compute the Allen-Cahn interface term with the weak form residual .
unsigned int _num_etas
Order parameters.
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
const MaterialProperty< RealTensorValue > & _d2kappadgrad_etaa
std::vector< const VariableValue * > _eta
static InputParameters validParams()
std::vector< const VariableGradient * > _grad_eta
const MaterialProperty< RealGradient > & _dkappadgrad_etaa
Interfacial parameter.
Compute the Allen-Cahn interface term with the weak form residual .
Definition ACInterface.h:21