My Project
Loading...
Searching...
No Matches
WellFilterCake.hpp
1/*
2 Copyright 2023 Equinor
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 3 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
20#ifndef OPM_WELL_FILTER_CAKE_HEADER_INCLUDED
21#define OPM_WELL_FILTER_CAKE_HEADER_INCLUDED
22
23#include <cstddef>
24#include <vector>
25
26namespace Opm {
27
28class DeferredLogger;
29class WellInterfaceGeneric;
30class WellState;
31
34public:
38 const double dt,
39 const double conc,
40 const std::size_t water_index,
41 WellState& well_state);
42
45 WellState& well_state,
47
49 const std::vector<double>& multipliers() const
50 {
51 return inj_fc_multiplier_;
52 }
53
54private:
55 std::vector<double> filtration_particle_volume_;
56 std::vector<double> inj_fc_multiplier_;
57};
58
59}
60
61#endif // OPM_WELL_FILTER_CAKE_HEADER_INCLUDED
Definition AquiferInterface.hpp:35
Definition DeferredLogger.hpp:57
Class for well calculations related to filter cakes.
Definition WellFilterCake.hpp:33
void updateFiltrationParticleVolume(const WellInterfaceGeneric &well, const double dt, const double conc, const std::size_t water_index, WellState &well_state)
Update the water injection volume.
Definition WellFilterCake.cpp:38
const std::vector< double > & multipliers() const
Returns a const-ref to multipliers.
Definition WellFilterCake.hpp:49
void updateInjFCMult(const WellInterfaceGeneric &well, WellState &well_state, DeferredLogger &deferred_logger)
Update the multiplier for well transmissbility due to cake filtration.
Definition WellFilterCake.cpp:79
Definition WellInterfaceGeneric.hpp:51
The state of a set of wells, tailored for use by the fully implicit blackoil simulator.
Definition WellState.hpp:60
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition BlackoilPhases.hpp:27