https://mooseframework.inl.gov
Loading...
Searching...
No Matches
KKSPhaseConcentrationDerivatives.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
13#include "NestedSolve.h"
14
16{
17public:
19
21
22protected:
23 virtual void computeQpProperties() override;
24
26 const unsigned int _num_c;
27
29 const std::vector<VariableName> _c_names;
30
32 const VariableName _eta_name;
33
35 const std::vector<MaterialPropertyName> _ci_names;
36 std::vector<const MaterialProperty<Real> *> _prop_ci;
38
40 std::vector<std::vector<std::vector<MaterialProperty<Real> *>>> _dcidb;
41
43 std::vector<std::vector<MaterialProperty<Real> *>> _dcideta;
44
46 const MaterialName _Fa_name;
47 const MaterialName _Fb_name;
49
53 std::vector<std::vector<std::vector<const MaterialProperty<Real> *>>> _d2Fidcidbi;
54
57
60};
const std::vector< MaterialPropertyName > _ci_names
Phase concentrations.
const unsigned int _num_c
Number of global concentrations.
std::vector< std::vector< std::vector< MaterialProperty< Real > * > > > _dcidb
Derivative of phase concentrations wrt global concentrations .
const MaterialProperty< Real > & _prop_dh
Derivative of switching function.
const MaterialName _Fa_name
Free energy names.
std::vector< const MaterialProperty< Real > * > _prop_ci
std::vector< std::vector< std::vector< const MaterialProperty< Real > * > > > _d2Fidcidbi
Second derivative of phase concentrations wrt two phase concentrations .
const VariableName _eta_name
Phase parameter.
std::vector< std::vector< MaterialProperty< Real > * > > _dcideta
Derivative of phase concentrations wrt eta .
const MaterialProperty< Real > & _prop_h
Switching function.
const std::vector< VariableName > _c_names
Names of global concentrations.