https://mooseframework.inl.gov
MultiBarrierFunctionMaterial.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 
22 {
23 public:
25 
27 
28 protected:
29  virtual void computeQpProperties();
30 
32  std::string _function_name;
33 
36 
38  bool _well_only;
39 
41  const unsigned int _num_eta;
42  const std::vector<const VariableValue *> _eta;
43 
46  std::vector<MaterialProperty<Real> *> _prop_dg, _prop_d2g;
47 };
std::vector< MaterialProperty< Real > * > _prop_dg
const unsigned int _num_eta
order parameters
MooseEnum _g_order
Polynomial order of the barrier function .
MultiBarrierFunctionMaterial(const InputParameters &parameters)
const std::vector< const VariableValue * > _eta
std::string _function_name
name of the function of eta (used to generate the material property names)
Double well phase transformation barrier free energy contribution.
bool _well_only
zero out g contribution in the eta interval [0:1]
const InputParameters & parameters() const
std::vector< MaterialProperty< Real > * > _prop_d2g
MaterialProperty< Real > & _prop_g
Barrier functions and their drivatives.