www.mooseframework.org
TotalFreeEnergy.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 "TotalFreeEnergyBase.h"
13 
14 // Forward Declarations
15 class TotalFreeEnergy;
16 
17 template <>
18 InputParameters validParams<TotalFreeEnergy>();
19 
25 {
26 public:
27  TotalFreeEnergy(const InputParameters & parameters);
28 
29 protected:
30  virtual Real computeValue();
31 
33  const MaterialProperty<Real> & _F;
34 
36  std::vector<const MaterialProperty<Real> *> _kappas;
37 };
38 
TotalFreeEnergyBase
Total free energy (both the bulk and gradient parts), where the bulk free energy has been defined in ...
Definition: TotalFreeEnergyBase.h:24
TotalFreeEnergy::_F
const MaterialProperty< Real > & _F
Bulk free energy material property.
Definition: TotalFreeEnergy.h:33
TotalFreeEnergy::computeValue
virtual Real computeValue()
Definition: TotalFreeEnergy.C:44
TotalFreeEnergy
Total free energy (both the bulk and gradient parts), where the bulk free energy has been defined in ...
Definition: TotalFreeEnergy.h:24
validParams< TotalFreeEnergy >
InputParameters validParams< TotalFreeEnergy >()
Definition: TotalFreeEnergy.C:16
TotalFreeEnergyBase.h
TotalFreeEnergy::_kappas
std::vector< const MaterialProperty< Real > * > _kappas
Gradient interface free energy coefficients.
Definition: TotalFreeEnergy.h:36
TotalFreeEnergy::TotalFreeEnergy
TotalFreeEnergy(const InputParameters &parameters)
Definition: TotalFreeEnergy.C:30