// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- // vi: set et ts=4 sw=4 sts=4: /* This file is part of the Open Porous Media project (OPM). OPM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. OPM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OPM. If not, see . Consult the COPYING file in the top-level source directory of this module for the precise wording of the license and the list of copyright holders. */ /*! * \file * * \copydoc Opm::BlackOilBoundaryRateVector */ #ifndef EWOMS_BLACK_OIL_BOUNDARY_RATE_VECTOR_HH #define EWOMS_BLACK_OIL_BOUNDARY_RATE_VECTOR_HH #include #include #include "blackoilintensivequantities.hh" #include "blackoilenergymodules.hh" namespace Opm { /*! * \ingroup BlackOilModel * * \brief Implements a boundary vector for the fully implicit black-oil model. */ template class BlackOilBoundaryRateVector : public GET_PROP_TYPE(TypeTag, RateVector) { typedef typename GET_PROP_TYPE(TypeTag, RateVector) ParentType; typedef typename GET_PROP_TYPE(TypeTag, ExtensiveQuantities) ExtensiveQuantities; typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; typedef typename GET_PROP_TYPE(TypeTag, LocalResidual) LocalResidual; typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, Evaluation) Evaluation; typedef typename GET_PROP_TYPE(TypeTag, RateVector) RateVector; typedef typename GET_PROP_TYPE(TypeTag, Indices) Indices; enum { numEq = GET_PROP_VALUE(TypeTag, NumEq) }; enum { numPhases = GET_PROP_VALUE(TypeTag, NumPhases) }; enum { numComponents = GET_PROP_VALUE(TypeTag, NumComponents) }; enum { enableSolvent = GET_PROP_VALUE(TypeTag, EnableSolvent) }; enum { enablePolymer = GET_PROP_VALUE(TypeTag, EnablePolymer) }; enum { enableEnergy = GET_PROP_VALUE(TypeTag, EnableEnergy) }; enum { conti0EqIdx = Indices::conti0EqIdx }; enum { contiEnergyEqIdx = Indices::contiEnergyEqIdx }; enum { enableFoam = GET_PROP_VALUE(TypeTag, EnableFoam) }; static constexpr bool blackoilConserveSurfaceVolume = GET_PROP_VALUE(TypeTag, BlackoilConserveSurfaceVolume); typedef Opm::BlackOilEnergyModule EnergyModule; public: /*! * \brief Default constructor */ BlackOilBoundaryRateVector() : ParentType() {} /*! * \copydoc ImmiscibleBoundaryRateVector::ImmiscibleBoundaryRateVector(Scalar) */ BlackOilBoundaryRateVector(Scalar value) : ParentType(value) {} /*! * \copydoc ImmiscibleBoundaryRateVector::ImmiscibleBoundaryRateVector(const ImmiscibleBoundaryRateVector& ) */ BlackOilBoundaryRateVector(const BlackOilBoundaryRateVector& value) = default; BlackOilBoundaryRateVector& operator=(const BlackOilBoundaryRateVector& value) = default; /*! * \copydoc ImmiscibleBoundaryRateVector::setFreeFlow */ template void setFreeFlow(const Context& context, unsigned bfIdx, unsigned timeIdx, const FluidState& fluidState) { ExtensiveQuantities extQuants; extQuants.updateBoundary(context, bfIdx, timeIdx, fluidState); const auto& insideIntQuants = context.intensiveQuantities(bfIdx, timeIdx); unsigned focusDofIdx = context.focusDofIndex(); unsigned interiorDofIdx = context.interiorScvIndex(bfIdx, timeIdx); //////// // advective fluxes of all components in all phases //////// (*this) = 0.0; for (unsigned phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) { const auto& pBoundary = fluidState.pressure(phaseIdx); const Evaluation& pInside = insideIntQuants.fluidState().pressure(phaseIdx); RateVector tmp; // mass conservation if (pBoundary < pInside) // outflux LocalResidual::template evalPhaseFluxes_(tmp, phaseIdx, insideIntQuants.pvtRegionIndex(), extQuants, insideIntQuants.fluidState()); else if (pBoundary > pInside) { typedef typename std::conditional::value, Evaluation, Scalar>::type RhsEval; // influx LocalResidual::template evalPhaseFluxes_(tmp, phaseIdx, insideIntQuants.pvtRegionIndex(), extQuants, fluidState); } for (unsigned i = 0; i < tmp.size(); ++i) (*this)[i] += tmp[i]; // energy conservation if (enableEnergy) { Evaluation density; Evaluation specificEnthalpy; if (pBoundary > pInside) { if (focusDofIdx == interiorDofIdx) { density = fluidState.density(phaseIdx); specificEnthalpy = fluidState.enthalpy(phaseIdx); } else { density = Opm::getValue(fluidState.density(phaseIdx)); specificEnthalpy = Opm::getValue(fluidState.enthalpy(phaseIdx)); } } else if (focusDofIdx == interiorDofIdx) { density = insideIntQuants.fluidState().density(phaseIdx); specificEnthalpy = insideIntQuants.fluidState().enthalpy(phaseIdx); } else { density = Opm::getValue(insideIntQuants.fluidState().density(phaseIdx)); specificEnthalpy = Opm::getValue(insideIntQuants.fluidState().enthalpy(phaseIdx)); } Evaluation enthalpyRate = density*extQuants.volumeFlux(phaseIdx)*specificEnthalpy; EnergyModule::addToEnthalpyRate(*this, enthalpyRate); } } if (enableSolvent) { (*this)[Indices::contiSolventEqIdx] = extQuants.solventVolumeFlux(); if (blackoilConserveSurfaceVolume) (*this)[Indices::contiSolventEqIdx] *= insideIntQuants.solventInverseFormationVolumeFactor(); else (*this)[Indices::contiSolventEqIdx] *= insideIntQuants.solventDensity(); } if (enablePolymer) { (*this)[Indices::contiPolymerEqIdx] = extQuants.volumeFlux(FluidSystem::waterPhaseIdx) * insideIntQuants.polymerConcentration(); } // make sure that the right mass conservation quantities are used LocalResidual::adaptMassConservationQuantities_(*this, insideIntQuants.pvtRegionIndex()); // heat conduction if (enableEnergy) EnergyModule::addToEnthalpyRate(*this, extQuants.energyFlux()); #ifndef NDEBUG for (unsigned i = 0; i < numEq; ++i) { Opm::Valgrind::CheckDefined((*this)[i]); } Opm::Valgrind::CheckDefined(*this); #endif } /*! * \copydoc ImmiscibleBoundaryRateVector::setInFlow */ template void setInFlow(const Context& context, unsigned bfIdx, unsigned timeIdx, const FluidState& fluidState) { this->setFreeFlow(context, bfIdx, timeIdx, fluidState); // we only allow fluxes in the direction opposite to the outer // unit normal for (unsigned eqIdx = 0; eqIdx < numEq; ++eqIdx) { Scalar& val = this->operator[](eqIdx); val = std::min(0.0, val); } } /*! * \copydoc ImmiscibleBoundaryRateVector::setOutFlow */ template void setOutFlow(const Context& context, unsigned bfIdx, unsigned timeIdx, const FluidState& fluidState) { this->setFreeFlow(context, bfIdx, timeIdx, fluidState); // we only allow fluxes in the same direction as the outer // unit normal for (unsigned eqIdx = 0; eqIdx < numEq; ++eqIdx) { Scalar& val = this->operator[](eqIdx); val = std::max( Scalar(0), val); } } /*! * \copydoc ImmiscibleBoundaryRateVector::setNoFlow */ void setNoFlow() { (*this) = Scalar(0); } /*! * \copydoc Specify an energy flux that corresponds to the thermal conduction from * the domain boundary * * This means that a "thermal flow" boundary is a no-flow condition for mass and thermal * conduction for energy. */ template void setThermalFlow(const Context& context, unsigned bfIdx, unsigned timeIdx, const FluidState& boundaryFluidState) { // set the mass no-flow condition setNoFlow(); if (!enableEnergy) // if we do not conserve energy there is nothing we should do in addition return; ExtensiveQuantities extQuants; extQuants.updateBoundary(context, bfIdx, timeIdx, boundaryFluidState); (*this)[contiEnergyEqIdx] += extQuants.energyFlux(); #ifndef NDEBUG for (unsigned i = 0; i < numEq; ++i) Opm::Valgrind::CheckDefined((*this)[i]); Opm::Valgrind::CheckDefined(*this); #endif } }; } // namespace Opm #endif