www.mooseframework.org
PoroFullSatMaterial.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 "DerivativeMaterialInterface.h"
13 #include "Material.h"
14 
15 // Forward Declarations
17 
18 template <>
19 InputParameters validParams<PoroFullSatMaterial>();
20 
27 class PoroFullSatMaterial : public DerivativeMaterialInterface<Material>
28 {
29 public:
30  PoroFullSatMaterial(const InputParameters & parameters);
31 
32 protected:
34  Real _phi0;
35 
37  Real _alpha;
38 
41 
44 
47 
49  const VariableValue & _porepressure;
50 
52  std::string _porepressure_name;
53 
55  unsigned int _ndisp;
56 
58  std::vector<const VariableGradient *> _grad_disp;
59 
61  MaterialProperty<Real> & _vol_strain;
62 
64  MaterialProperty<Real> & _biot_coefficient;
65 
67  MaterialProperty<Real> & _porosity;
68 
70  MaterialProperty<Real> & _dporosity_dP;
71 
73  MaterialProperty<Real> & _dporosity_dep;
74 
76  MaterialProperty<Real> & _one_over_biot_modulus;
77 
79  MaterialProperty<Real> & _done_over_biot_modulus_dP;
80 
82  MaterialProperty<Real> & _done_over_biot_modulus_dep;
83 
84  virtual void initQpStatefulProperties();
85  virtual void computeQpProperties();
86 };
87 
PoroFullSatMaterial::_done_over_biot_modulus_dep
MaterialProperty< Real > & _done_over_biot_modulus_dep
d(1/M)/d(volumetric_strain)
Definition: PoroFullSatMaterial.h:82
PoroFullSatMaterial::initQpStatefulProperties
virtual void initQpStatefulProperties()
Definition: PoroFullSatMaterial.C:79
PoroFullSatMaterial::_one_over_K
Real _one_over_K
1/K, where K is the solid bulk modulus. Usually 1/K = C_iijj, where C is the compliance matrix: strai...
Definition: PoroFullSatMaterial.h:40
PoroFullSatMaterial::computeQpProperties
virtual void computeQpProperties()
Definition: PoroFullSatMaterial.C:85
PoroFullSatMaterial::PoroFullSatMaterial
PoroFullSatMaterial(const InputParameters &parameters)
Definition: PoroFullSatMaterial.C:45
PoroFullSatMaterial::_alpha
Real _alpha
Biot coefficient.
Definition: PoroFullSatMaterial.h:37
PoroFullSatMaterial::_one_over_biot_modulus
MaterialProperty< Real > & _one_over_biot_modulus
1/M, where M is the Biot modulus
Definition: PoroFullSatMaterial.h:76
PoroFullSatMaterial::_grad_disp
std::vector< const VariableGradient * > _grad_disp
grad(displacement)
Definition: PoroFullSatMaterial.h:58
PoroFullSatMaterial
Material designed to calculate and store all the quantities needed for the fluid-flow part of poromec...
Definition: PoroFullSatMaterial.h:27
PoroFullSatMaterial::_vol_strain
MaterialProperty< Real > & _vol_strain
volumetric strain = strain_ii
Definition: PoroFullSatMaterial.h:61
validParams< PoroFullSatMaterial >
InputParameters validParams< PoroFullSatMaterial >()
Definition: PoroFullSatMaterial.C:16
PoroFullSatMaterial::_one_over_Kf
Real _one_over_Kf
1/Kf, where Kf is the fluid bulk modulus.
Definition: PoroFullSatMaterial.h:43
PoroFullSatMaterial::_constant_porosity
bool _constant_porosity
whether to use constant porosity (set _porosity = _phi0 always)
Definition: PoroFullSatMaterial.h:46
PoroFullSatMaterial::_porepressure
const VariableValue & _porepressure
porepressure variable
Definition: PoroFullSatMaterial.h:49
PoroFullSatMaterial::_porepressure_name
std::string _porepressure_name
name given by user to the porepressure variable
Definition: PoroFullSatMaterial.h:52
PoroFullSatMaterial::_phi0
Real _phi0
porosity at zero porepressure and volumetric strain
Definition: PoroFullSatMaterial.h:34
PoroFullSatMaterial::_done_over_biot_modulus_dP
MaterialProperty< Real > & _done_over_biot_modulus_dP
d(1/M)/d(porepressure)
Definition: PoroFullSatMaterial.h:79
PoroFullSatMaterial::_porosity
MaterialProperty< Real > & _porosity
porosity
Definition: PoroFullSatMaterial.h:67
PoroFullSatMaterial::_dporosity_dP
MaterialProperty< Real > & _dporosity_dP
d(porosity)/d(porepressure)
Definition: PoroFullSatMaterial.h:70
PoroFullSatMaterial::_dporosity_dep
MaterialProperty< Real > & _dporosity_dep
d(porosity)/d(volumetric_strain)
Definition: PoroFullSatMaterial.h:73
PoroFullSatMaterial::_ndisp
unsigned int _ndisp
number of displacement variables supplied
Definition: PoroFullSatMaterial.h:55
PoroFullSatMaterial::_biot_coefficient
MaterialProperty< Real > & _biot_coefficient
Biot coefficient.
Definition: PoroFullSatMaterial.h:64