20#ifndef PARALLEL_PAVG_DYNAMIC_SOURCE_DATA_HPP
21#define PARALLEL_PAVG_DYNAMIC_SOURCE_DATA_HPP
23#include <opm/input/eclipse/Schedule/Well/PAvgDynamicSourceData.hpp>
25#include <opm/simulators/utils/ParallelCommunication.hpp>
43 template<
class T>
using SourceDataSpan =
typename PAvgDynamicSourceData<Scalar>::template SourceDataSpan<T>;
54 using Evaluator = std::function<void(
int, SourceDataSpan<Scalar>)>;
69 const std::vector<std::size_t>& sourceLocations,
91 void reconstruct(
const std::vector<std::size_t>& sourceLocations,
116 std::reference_wrapper<const Parallel::Communication> comm_;
119 std::vector<LocalLocation> locations_{};
122 std::vector<Scalar> localSrc_{};
126 std::vector<typename std::vector<Scalar>::size_type> storageIndex_{};
129 std::vector<int> allSizes_{};
132 std::vector<int> startPointers_{};
141 [[nodiscard]]
typename std::vector<Scalar>::size_type
142 storageIndex(
typename std::vector<Scalar>::size_type elemIndex)
const override;
156 void finaliseConstruction(
const std::vector<std::size_t>& sourceLocations,
164 [[nodiscard]] SourceDataSpan<Scalar>
165 localSourceTerm(
const std::size_t localIx);
170 void defineCommunication();
Dynamic source data for block-average pressure calculations.
Definition ParallelPAvgDynamicSourceData.hpp:37
std::function< void(int, SourceDataSpan< Scalar >)> Evaluator
Collect source term contributions from local, on-rank, cell.
Definition ParallelPAvgDynamicSourceData.hpp:54
void setToZero()
Clear contents of local source term contributions.
Definition ParallelPAvgDynamicSourceData.cpp:48
void synchroniseSources()
Exchange local contributions to build full, global view of all source terms.
Definition ParallelPAvgDynamicSourceData.cpp:73
std::function< int(const std::size_t)> GlobalToLocal
Translate globally unique, linearised Cartesian cell indices to local, on-rank, cell indices.
Definition ParallelPAvgDynamicSourceData.hpp:42
void collectLocalSources(Evaluator eval)
Compute local, on-rank, contributions to the collection of source terms.
Definition ParallelPAvgDynamicSourceData.cpp:63
void reconstruct(const std::vector< std::size_t > &sourceLocations, GlobalToLocal localCellIdx)
Reconstruct Source Data backing storage and internal mapping tables.
Definition ParallelPAvgDynamicSourceData.cpp:55
ParallelPAvgDynamicSourceData(const Parallel::Communication &comm, const std::vector< std::size_t > &sourceLocations, GlobalToLocal localCellIdx)
Constructor.
Definition ParallelPAvgDynamicSourceData.cpp:38
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition blackoilboundaryratevector.hh:37