ncpratevector.hh
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  Copyright (C) 2011-2013 by Andreas Lauser
5 
6  This file is part of the Open Porous Media project (OPM).
7 
8  OPM is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 2 of the License, or
11  (at your option) any later version.
12 
13  OPM is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with OPM. If not, see <http://www.gnu.org/licenses/>.
20 */
26 #ifndef EWOMS_NCP_RATE_VECTOR_HH
27 #define EWOMS_NCP_RATE_VECTOR_HH
28 
29 #include "ncpindices.hh"
30 
31 #include <opm/material/common/Valgrind.hpp>
32 #include <opm/material/constraintsolvers/NcpFlash.hpp>
33 
34 #include <dune/common/fvector.hh>
35 
36 namespace Ewoms {
45 template <class TypeTag>
47  : public Dune::FieldVector<typename GET_PROP_TYPE(TypeTag, Evaluation),
48  GET_PROP_VALUE(TypeTag, NumEq)>
49 {
50  enum { numEq = GET_PROP_VALUE(TypeTag, NumEq) };
51  typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
52  typedef typename GET_PROP_TYPE(TypeTag, Evaluation) Evaluation;
53  typedef Dune::FieldVector<Evaluation, numEq> ParentType;
54  typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
55  typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices;
56 
57  enum { conti0EqIdx = Indices::conti0EqIdx };
58  enum { numComponents = GET_PROP_VALUE(TypeTag, NumComponents) };
59  enum { enableEnergy = GET_PROP_VALUE(TypeTag, EnableEnergy) };
60 
62 
63  typedef Opm::MathToolbox<Evaluation> Toolbox;
64 
65 public:
66  NcpRateVector() : ParentType()
67  { Valgrind::SetUndefined(*this); }
68 
72  NcpRateVector(const Evaluation& value)
73  : ParentType(value)
74  {}
75 
81  : ParentType(value)
82  {}
83 
87  void setMassRate(const ParentType &value)
88  {
89  // convert to molar rates
90  ParentType molarRate(value);
91  for (int compIdx = 0; compIdx < numComponents; ++compIdx)
92  molarRate[conti0EqIdx + compIdx] /= FluidSystem::molarMass(compIdx);
93 
94  // set the molar rate
95  setMolarRate(molarRate);
96  }
97 
101  void setMolarRate(const ParentType &value)
102  { ParentType::operator=(value); }
103 
107  template <class RhsEval>
108  void setEnthalpyRate(const RhsEval& rate)
109  { EnergyModule::setEnthalpyRate(*this, rate); }
110 
114  template <class FluidState, class RhsEval>
115  void setVolumetricRate(const FluidState &fluidState, int phaseIdx, const RhsEval& volume)
116  {
117  *this = 0.0;
118  for (int compIdx = 0; compIdx < numComponents; ++compIdx)
119  (*this)[conti0EqIdx + compIdx] = fluidState.molarity(phaseIdx, compIdx) * volume;
120 
121  EnergyModule::setEnthalpyRate(*this, fluidState, phaseIdx, volume);
122  Valgrind::CheckDefined(*this);
123  }
124 
128  template <class RhsEval>
129  NcpRateVector& operator=(const RhsEval& value)
130  {
131  for (unsigned i=0; i < this->size(); ++i)
132  (*this)[i] = value;
133  return *this;
134  }
135 
140  {
141  for (unsigned i=0; i < this->size(); ++i)
142  (*this)[i] = other[i];
143  return *this;
144  }
145 };
146 
147 } // namespace Ewoms
148 
149 #endif
NcpRateVector(const Evaluation &value)
Definition: ncpratevector.hh:72
#define GET_PROP_VALUE(TypeTag, PropTagName)
Access the value attribute of a property for a type tag.
Definition: propertysystem.hh:468
void setEnthalpyRate(const RhsEval &rate)
Set an enthalpy rate [J/As] where .
Definition: ncpratevector.hh:108
NcpRateVector(const NcpRateVector &value)
Default constructor.
Definition: ncpratevector.hh:80
void setMolarRate(const ParentType &value)
Set a molar rate of the conservation quantities.
Definition: ncpratevector.hh:101
void setMassRate(const ParentType &value)
Set a mass rate of the conservation quantities.
Definition: ncpratevector.hh:87
Implements a vector representing mass, molar or volumetric rates.
Definition: ncpratevector.hh:46
Provides the auxiliary methods required for consideration of the energy equation. ...
Definition: energymodule.hh:54
The primary variable and equation indices for the compositional multi-phase NCP model.
Definition: baseauxiliarymodule.hh:35
NcpRateVector()
Definition: ncpratevector.hh:66
NcpRateVector & operator=(const NcpRateVector &other)
Assignment operator from another rate vector.
Definition: ncpratevector.hh:139
NcpRateVector & operator=(const RhsEval &value)
Assignment operator from a scalar or a function evaluation.
Definition: ncpratevector.hh:129
void setVolumetricRate(const FluidState &fluidState, int phaseIdx, const RhsEval &volume)
Set a volumetric rate of a phase.
Definition: ncpratevector.hh:115