www.mooseframework.org
Q2PMaterial.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 "Material.h"
13 
14 // Forward Declarations
15 class Q2PMaterial;
16 
17 template <>
18 InputParameters validParams<Q2PMaterial>();
19 
23 class Q2PMaterial : public Material
24 {
25 public:
26  Q2PMaterial(const InputParameters & parameters);
27 
28 protected:
31 
33  const VariableValue & _por_change;
34  const VariableValue & _por_change_old;
35 
37  RealTensorValue _material_perm;
38 
40  RealVectorValue _material_gravity;
41 
43  MaterialProperty<Real> & _porosity_old;
44  MaterialProperty<Real> & _porosity;
45  MaterialProperty<RealTensorValue> & _permeability;
46  MaterialProperty<RealVectorValue> & _gravity;
47 
48  std::vector<const VariableValue *> _perm_change;
49 
50  virtual void computeQpProperties();
51 };
52 
Q2PMaterial::_material_perm
RealTensorValue _material_perm
permeability as entered by the user
Definition: Q2PMaterial.h:37
Q2PMaterial::_por_change_old
const VariableValue & _por_change_old
Definition: Q2PMaterial.h:34
Q2PMaterial::_por_change
const VariableValue & _por_change
porosity changes. if not entered they default to zero
Definition: Q2PMaterial.h:33
Q2PMaterial
Q2P Material.
Definition: Q2PMaterial.h:23
Q2PMaterial::_material_por
Real _material_por
porosity as entered by the user
Definition: Q2PMaterial.h:30
Q2PMaterial::Q2PMaterial
Q2PMaterial(const InputParameters &parameters)
Definition: Q2PMaterial.C:43
Q2PMaterial::_porosity
MaterialProperty< Real > & _porosity
Definition: Q2PMaterial.h:44
Q2PMaterial::_material_gravity
RealVectorValue _material_gravity
gravity as entered by user
Definition: Q2PMaterial.h:40
validParams< Q2PMaterial >
InputParameters validParams< Q2PMaterial >()
Definition: Q2PMaterial.C:17
Q2PMaterial::_porosity_old
MaterialProperty< Real > & _porosity_old
material properties
Definition: Q2PMaterial.h:43
Q2PMaterial::_permeability
MaterialProperty< RealTensorValue > & _permeability
Definition: Q2PMaterial.h:45
Q2PMaterial::_perm_change
std::vector< const VariableValue * > _perm_change
Definition: Q2PMaterial.h:48
Q2PMaterial::_gravity
MaterialProperty< RealVectorValue > & _gravity
Definition: Q2PMaterial.h:46
Q2PMaterial::computeQpProperties
virtual void computeQpProperties()
Definition: Q2PMaterial.C:70