https://mooseframework.inl.gov
KKSACBulkC.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 "KKSACBulkBase.h"
13 
14 // Forward Declarations
15 
23 class KKSACBulkC : public KKSACBulkBase
24 {
25 public:
27 
28  KKSACBulkC(const InputParameters & parameters);
29 
30 protected:
31  virtual Real computeDFDOP(PFFunctionType type);
32  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
33 
35  std::string _ca_name;
36  unsigned int _ca_var;
37  const VariableValue & _ca;
38 
40  std::string _cb_name;
41  unsigned int _cb_var;
42  const VariableValue & _cb;
43 
46 
49 
52  std::vector<const MaterialProperty<Real> *> _prop_d2Fadcadarg;
53 };
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: KKSACBulkC.C:59
unsigned int _cb_var
Definition: KKSACBulkC.h:41
KKSACBulkC(const InputParameters &parameters)
Definition: KKSACBulkC.C:25
static InputParameters validParams()
Definition: KKSACBulkC.C:15
const MaterialProperty< Real > & _prop_d2Fadca2
Second derivative of the free energy function .
Definition: KKSACBulkC.h:48
std::string _cb_name
phase b concentration
Definition: KKSACBulkC.h:40
KKSACBulkBase child class for the phase concentration difference term in the the Allen-Cahn bulk res...
Definition: KKSACBulkC.h:23
virtual Real computeDFDOP(PFFunctionType type)
Definition: KKSACBulkC.C:43
unsigned int _ca_var
Definition: KKSACBulkC.h:36
std::string _ca_name
phase a concentration
Definition: KKSACBulkC.h:35
ACBulk child class that takes all the necessary data from a KKSBaseMaterial and sets up the Allen-Cah...
Definition: KKSACBulkBase.h:22
std::vector< const MaterialProperty< Real > * > _prop_d2Fadcadarg
Mixed partial derivatives of the free energy function wrt ca and any other coupled variables ...
Definition: KKSACBulkC.h:52
const MaterialProperty< Real > & _prop_dFadca
Derivative of the free energy function .
Definition: KKSACBulkC.h:45
OutputTools< Real >::VariableValue VariableValue
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const VariableValue & _cb
Definition: KKSACBulkC.h:42
const VariableValue & _ca
Definition: KKSACBulkC.h:37