27#ifndef OPM_VTK_TRACER_MODULE_HPP
28#define OPM_VTK_TRACER_MODULE_HPP
30#include <dune/common/fvector.hh>
42namespace Opm::Parameters {
55 template <
class TypeTag>
72 using ScalarBuffer =
typename ParentType::ScalarBuffer;
85 Parameters::Register<Parameters::VtkWriteTracerConcentration>
86 (
"Include the tracer concentration in the VTK output files");
95 if (eclTracerConcentrationOutput_()){
96 const auto& tracerModel = this->simulator_.problem().tracerModel();
97 eclFreeTracerConcentration_.resize(tracerModel.numTracers());
98 eclSolTracerConcentration_.resize(tracerModel.numTracers());
99 const auto& enableSolTracers = tracerModel.enableSolTracers();
116 if (!Parameters::Get<Parameters::EnableVtkOutput>()) {
120 if (eclTracerConcentrationOutput_()) {
121 const auto& tracerModel = elemCtx.problem().tracerModel();
122 const auto& enableSolTracers = tracerModel.enableSolTracers();
126 for (
unsigned dofIdx = 0; dofIdx < elemCtx.numPrimaryDof(0); ++dofIdx) {
127 unsigned globalDofIdx = elemCtx.globalSpaceIndex(dofIdx, 0);
128 eclFreeTracerConcentration_[
tracerIdx][globalDofIdx] = tracerModel.freeTracerConcentration(
tracerIdx, globalDofIdx);
132 for (
unsigned dofIdx = 0; dofIdx < elemCtx.numPrimaryDof(0); ++dofIdx) {
133 unsigned globalDofIdx = elemCtx.globalSpaceIndex(dofIdx, 0);
134 eclSolTracerConcentration_[
tracerIdx][globalDofIdx] = tracerModel.solTracerConcentration(
tracerIdx, globalDofIdx);
150 if (eclTracerConcentrationOutput_()){
151 const auto& tracerModel = this->simulator_.problem().tracerModel();
152 const auto& enableSolTracers = tracerModel.enableSolTracers();
155 const std::string tmp =
"freeTracerConcentration_" + tracerModel.name(
tracerIdx);
158 const std::string
tmp2 =
"solTracerConcentration_" + tracerModel.name(
tracerIdx);
166 static bool eclTracerConcentrationOutput_()
168 static bool val = Parameters::Get<Parameters::VtkWriteTracerConcentration>();
172 std::vector<ScalarBuffer> eclFreeTracerConcentration_;
173 std::vector<ScalarBuffer> eclSolTracerConcentration_;
The base class for writer modules.
Declares the properties required by the black oil model.
The base class for writer modules.
Definition baseoutputmodule.hh:67
void commitScalarBuffer_(BaseOutputWriter &baseWriter, const char *name, ScalarBuffer &buffer, BufferType bufferType=DofBuffer)
Add a buffer containing scalar quantities to the result file.
Definition baseoutputmodule.hh:244
void resizeScalarBuffer_(ScalarBuffer &buffer, BufferType bufferType=DofBuffer)
Allocate the space for a buffer storing a scalar quantity.
Definition baseoutputmodule.hh:156
The base class for all output writers.
Definition baseoutputwriter.hh:44
Simplifies writing multi-file VTK datasets.
Definition vtkmultiwriter.hh:66
VTK output module for the tracer model's parameters.
Definition VtkTracerModule.hpp:57
void commitBuffers(BaseOutputWriter &baseWriter) override
Add all buffers to the VTK output writer.
Definition VtkTracerModule.hpp:144
static void registerParameters()
Register all run-time parameters for the tracer VTK output module.
Definition VtkTracerModule.hpp:83
void processElement(const ElementContext &elemCtx) override
Modify the internal buffers according to the intensive quantities relevant for an element.
Definition VtkTracerModule.hpp:114
void allocBuffers() override
Allocate memory for the scalar fields we would like to write to the VTK file.
Definition VtkTracerModule.hpp:93
Declare the properties used by the infrastructure code of the finite volume discretizations.
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition blackoilboundaryratevector.hh:37
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:242
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition propertysystem.hh:235
This file provides the infrastructure to retrieve run-time parameters.
The Opm property system, traits with inheritance.
Definition VtkTracerModule.hpp:45
Simplifies writing multi-file VTK datasets.