www.mooseframework.org
ComputeExtraStressVDWGas.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 "ComputeExtraStressBase.h"
13 
15 
16 template <>
18 
24 {
25 public:
26  static InputParameters validParams();
27 
28  ComputeExtraStressVDWGas(const InputParameters & parameters);
29 
30 protected:
31  virtual void computeQpExtraStress();
32 
33  const MaterialProperty<Real> & _b;
34  const MaterialProperty<Real> & _Va;
35  const MaterialProperty<Real> & _T;
36 
37  const VariableValue & _cg;
38  const Real _nondim_factor;
39  const Real _kB;
40 };
ComputeExtraStressVDWGas::ComputeExtraStressVDWGas
ComputeExtraStressVDWGas(const InputParameters &parameters)
Definition: ComputeExtraStressVDWGas.C:36
ComputeExtraStressVDWGas::_nondim_factor
const Real _nondim_factor
Definition: ComputeExtraStressVDWGas.h:38
ComputeExtraStressVDWGas::_Va
const MaterialProperty< Real > & _Va
Definition: ComputeExtraStressVDWGas.h:34
ComputeExtraStressVDWGas::_kB
const Real _kB
Definition: ComputeExtraStressVDWGas.h:39
ComputeExtraStressVDWGas::computeQpExtraStress
virtual void computeQpExtraStress()
Definition: ComputeExtraStressVDWGas.C:48
ComputeExtraStressVDWGas
Computes a concentration-dependent ExtraStress bases on the van der Waals equation of state that is a...
Definition: ComputeExtraStressVDWGas.h:23
ComputeExtraStressVDWGas::validParams
static InputParameters validParams()
Definition: ComputeExtraStressVDWGas.C:17
validParams< ComputeExtraStressVDWGas >
InputParameters validParams< ComputeExtraStressVDWGas >()
ComputeExtraStressVDWGas::_T
const MaterialProperty< Real > & _T
Definition: ComputeExtraStressVDWGas.h:35
ComputeExtraStressBase
ComputeExtraStressBase is the base class for extra_stress, which is added to stress calculated by the...
Definition: ComputeExtraStressBase.h:24
ComputeExtraStressVDWGas::_b
const MaterialProperty< Real > & _b
Definition: ComputeExtraStressVDWGas.h:33
ComputeExtraStressBase.h
ComputeExtraStressVDWGas::_cg
const VariableValue & _cg
Definition: ComputeExtraStressVDWGas.h:37