opm-simulators
SolutionContainers.hpp
Go to the documentation of this file.
1 // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 // vi: set et ts=4 sw=4 sts=4:
3 /*
4  This file is part of the Open Porous Media project (OPM).
5 
6  OPM is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 2 of the License, or
9  (at your option) any later version.
10 
11  OPM is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with OPM. If not, see <http://www.gnu.org/licenses/>.
18 
19  Consult the COPYING file in the top-level source directory of this
20  module for the precise wording of the license and the list of
21  copyright holders.
22 */
28 #ifndef OPM_SOLUTION_CONTAINERS_HPP
29 #define OPM_SOLUTION_CONTAINERS_HPP
30 
31 #include <vector>
32 
33 namespace Opm {
34 
36 template<class Scalar>
38  std::vector<Scalar> maxAdsorption;
39  std::vector<Scalar> concentration;
40  std::vector<Scalar> moleWeight; // polymer molecular weight
41 
42  static PolymerSolutionContainer serializationTestObject();
43 
44  template<class Serializer>
45  void serializeOp(Serializer& serializer)
46  {
47  serializer(maxAdsorption);
48  serializer(concentration);
49  serializer(moleWeight);
50  }
51 
52  bool operator==(const PolymerSolutionContainer& rhs) const;
53 };
54 
56 template<class Scalar>
58  std::vector<Scalar> microbialConcentration;
59  std::vector<Scalar> oxygenConcentration;
60  std::vector<Scalar> ureaConcentration;
61  std::vector<Scalar> biofilmVolumeFraction;
62  std::vector<Scalar> calciteVolumeFraction;
63 
64  static BioeffectsSolutionContainer serializationTestObject();
65 
67  void resize(const unsigned numElems);
68 
69  template<class Serializer>
70  void serializeOp(Serializer& serializer)
71  {
72  serializer(microbialConcentration);
73  serializer(oxygenConcentration);
74  serializer(ureaConcentration);
75  serializer(biofilmVolumeFraction);
76  serializer(calciteVolumeFraction);
77  }
78 
79  bool operator==(const BioeffectsSolutionContainer& rhs) const;
80 };
81 
83 template<class Scalar>
84 struct CO2H2SolutionContainer {
85  std::vector<Scalar> cXmfCO2;
86  std::vector<Scalar> cXmfH2;
87  std::vector<Scalar> cYmfwat;
88 
89  static CO2H2SolutionContainer serializationTestObject();
90 
92  void resize(const unsigned numElems);
93 
94  template<class Serializer>
95  void serializeOp(Serializer& serializer)
96  {
97  serializer(cXmfCO2);
98  serializer(cXmfH2);
99  serializer(cYmfwat);
100  }
101 
102  bool operator==(const CO2H2SolutionContainer& rhs) const;
103 };
104 
105 } // namespace Opm
106 
107 #endif // OPM_SOLUTION_CONTAINERS_HPP
Struct holding MICP extension data.
Definition: BioeffectsContainer.hpp:34
void resize(const unsigned numElems)
Resize vectors and zero initialize.
Definition: SolutionContainers.cpp:93
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition: blackoilbioeffectsmodules.hh:45
void resize(const unsigned numElems)
Resize vectors and zero initialize.
Definition: SolutionContainers.cpp:63
Struct holding polymer extension data.
Definition: SolutionContainers.hpp:37