https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ThirdPhaseSuppressionMaterial.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 "Material.h"
14
15// Forward Declarations
16
23{
24public:
26
28
29protected:
30 virtual void computeQpProperties();
31
33 std::string _function_name;
34
36 const unsigned int _num_eta;
37 const std::vector<const VariableValue *> _eta;
38
41 std::vector<MaterialProperty<Real> *> _prop_dg;
42
44 std::vector<std::vector<MaterialProperty<Real> *>> _prop_d2g;
45};
OPInterfaceBarrierMaterial is a Free Energy Penalty contribution material that acts on all of the eta...
const std::vector< const VariableValue * > _eta
const unsigned int _num_eta
order parameters
std::vector< MaterialProperty< Real > * > _prop_dg
MaterialProperty< Real > & _prop_g
Barrier functions and their drivatives.
std::string _function_name
name of the function of eta (used to generate the material property names)
std::vector< std::vector< MaterialProperty< Real > * > > _prop_d2g
Material properties to store the second derivatives.