https://mooseframework.inl.gov
Loading...
Searching...
No Matches
PorousFlowAqueousPreDisMineral.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
13
20{
21public:
23
25
26protected:
27 void initQpStatefulProperties() override;
28 void computeQpProperties() override;
29
31 const unsigned int _num_reactions;
32
34 const unsigned int _aq_ph;
35
38
41
44
47
50
54
56 const unsigned _num_initial_conc;
57
59 std::vector<const VariableValue *> _initial_conc;
60};
Material designed to form a std::vector of mass fractions of mineral concentrations from reaction rat...
const unsigned int _aq_ph
Aqueous phase number.
std::vector< const VariableValue * > _initial_conc
Initial values of the secondary species concentrations.
const bool _initial_conc_supplied
Whether the initial values of the secondary species concentrations have been supplied by the user.
const MaterialProperty< std::vector< Real > > & _sec_conc_old
Old values of the mineral species concentrations.
const MaterialProperty< Real > & _porosity_old
Porosity.
const MaterialProperty< std::vector< Real > > & _reaction_rate
Reaction rate of mineralisation.
const unsigned _num_initial_conc
Number of secondary species concentrations supplied by the user.
MaterialProperty< std::vector< Real > > & _sec_conc
Mineral concentrations at quadpoint or nodes.
const unsigned int _num_reactions
Number of equations in the aqueous geochemistry system.
const MaterialProperty< std::vector< Real > > & _saturation
Saturation.
Base class for all PorousFlow vector materials.