https://mooseframework.inl.gov
GrandPotentialInterface.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"
13 
18 {
19 public:
21 
23 
24 protected:
25  virtual void computeQpProperties() override;
26 
28  const std::vector<Real> _sigma;
29 
31  const Real _width;
32 
34  const unsigned int _n_pair;
35 
37  std::vector<Real> _gamma;
41 
43  std::vector<MaterialPropertyName> _gamma_name;
44 
46  std::vector<MaterialProperty<Real> *> _gamma_prop;
50 };
static InputParameters validParams()
std::vector< MaterialPropertyName > _gamma_name
gamma material property names
MaterialProperty< Real > & _kappa_prop
const unsigned int _n_pair
number of interface pairs
std::vector< Real > _gamma
Calculated gamma parameter values.
std::vector< MaterialProperty< Real > * > _gamma_prop
Material properties for all interface pairs.
const Real _width
Interface width for the interface with the median interfacial free energy.
Calculate Grand Potential interface parameters for a specified interfacial free energy and width...
MaterialProperty< Real > & _mu_prop
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
const std::vector< Real > _sigma
list of interfacial free energies
GrandPotentialInterface(const InputParameters &parameters)
virtual void computeQpProperties() override