27#ifndef OPM_VTK_BLACK_OIL_ENERGY_MODULE_HPP
28#define OPM_VTK_BLACK_OIL_ENERGY_MODULE_HPP
30#include <dune/common/fvector.hh>
32#include <opm/material/densead/Math.hpp>
52template <
class TypeTag>
53class VtkBlackOilEnergyModule :
public BaseOutputModule<TypeTag>
55 using ParentType = BaseOutputModule<TypeTag>;
70 using PhaseBuffer =
typename ParentType::PhaseBuffer;
71 using ScalarBuffer =
typename ParentType::ScalarBuffer;
74 explicit VtkBlackOilEnergyModule(
const Simulator& simulator)
75 : ParentType(simulator)
99 if (params_.rockInternalEnergyOutput_) {
102 if (params_.totalThermalConductivityOutput_) {
105 if (params_.fluidInternalEnergiesOutput_) {
108 if (params_.fluidEnthalpiesOutput_) {
123 for (
unsigned dofIdx = 0; dofIdx < elemCtx.numPrimaryDof(0); ++dofIdx) {
124 const auto& intQuants = elemCtx.intensiveQuantities(dofIdx, 0);
125 const unsigned globalDofIdx = elemCtx.globalSpaceIndex(dofIdx, 0);
127 if (params_.rockInternalEnergyOutput_) {
128 rockInternalEnergy_[globalDofIdx] =
129 scalarValue(intQuants.rockInternalEnergy());
132 if (params_.totalThermalConductivityOutput_) {
133 totalThermalConductivity_[globalDofIdx] =
134 scalarValue(intQuants.totalThermalConductivity());
137 for (
int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) {
138 if (FluidSystem::phaseIsActive(phaseIdx)) {
139 if (params_.fluidInternalEnergiesOutput_) {
140 fluidInternalEnergies_[phaseIdx][globalDofIdx] =
141 scalarValue(intQuants.fluidState().internalEnergy(phaseIdx));
144 if (params_.fluidEnthalpiesOutput_) {
145 fluidEnthalpies_[phaseIdx][globalDofIdx] =
146 scalarValue(intQuants.fluidState().enthalpy(phaseIdx));
158 if (!
dynamic_cast<VtkMultiWriter*
>(&baseWriter)) {
162 if (params_.rockInternalEnergyOutput_) {
164 rockInternalEnergy_, BufferType::Dof);
167 if (params_.totalThermalConductivityOutput_) {
169 totalThermalConductivity_, BufferType::Dof);
172 if (params_.fluidInternalEnergiesOutput_) {
174 fluidInternalEnergies_, BufferType::Dof);
177 if (params_.fluidEnthalpiesOutput_) {
179 fluidEnthalpies_, BufferType::Dof);
186 ScalarBuffer rockInternalEnergy_{};
187 ScalarBuffer totalThermalConductivity_{};
188 PhaseBuffer fluidInternalEnergies_{};
189 PhaseBuffer fluidEnthalpies_{};
The base class for writer modules.
Contains the classes required to extend the black-oil model by energy.
Declares the properties required by the black oil model.
void resizeScalarBuffer_(ScalarBuffer &buffer, BufferType bufferType)
Allocate the space for a buffer storing a scalar quantity.
Definition baseoutputmodule.hh:157
BufferType
Definition baseoutputmodule.hh:143
void commitPhaseBuffer_(BaseOutputWriter &baseWriter, const char *pattern, PhaseBuffer &buffer, BufferType bufferType)
Add a phase-specific buffer to the result file.
Definition baseoutputmodule.hh:337
void commitScalarBuffer_(BaseOutputWriter &baseWriter, const char *name, ScalarBuffer &buffer, BufferType bufferType)
Add a buffer containing scalar quantities to the result file.
Definition baseoutputmodule.hh:238
void resizePhaseBuffer_(PhaseBuffer &buffer, BufferType bufferType)
Allocate the space for a buffer storing a phase-specific quantity.
Definition baseoutputmodule.hh:198
The base class for all output writers.
Definition baseoutputwriter.hh:46
void processElement(const ElementContext &elemCtx) override
Modify the internal buffers according to the intensive quantities relevant for an element.
Definition vtkblackoilenergymodule.hpp:117
void allocBuffers() override
Allocate memory for the scalar fields we would like to write to the VTK file.
Definition vtkblackoilenergymodule.hpp:93
void commitBuffers(BaseOutputWriter &baseWriter) override
Add all buffers to the VTK output writer.
Definition vtkblackoilenergymodule.hpp:156
static void registerParameters()
Register all run-time parameters for the multi-phase VTK output module.
Definition vtkblackoilenergymodule.hpp:84
Simplifies writing multi-file VTK datasets.
Definition vtkmultiwriter.hh:65
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 blackoilbioeffectsmodules.hh:45
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:233
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:240
This file provides the infrastructure to retrieve run-time parameters.
auto Get(bool errorIfNotRegistered=true)
Retrieve a runtime parameter.
Definition parametersystem.hpp:187
The Opm property system, traits with inheritance.
Struct holding the parameters for VtkBlackoilEnergyOutputModule.
Definition vtkblackoilenergyparams.hpp:46
static void registerParameters()
Registers the parameters in parameter system.
Definition vtkblackoilenergyparams.cpp:31
VTK output module for the black oil model's energy related quantities.
Simplifies writing multi-file VTK datasets.