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> 52 template <
class TypeTag>
64 static constexpr
auto vtkFormat = getPropValue<TypeTag, Properties::VtkOutputFormat>();
67 enum { numPhases = getPropValue<TypeTag, Properties::NumPhases>() };
70 using PhaseBuffer =
typename ParentType::PhaseBuffer;
71 using ScalarBuffer =
typename ParentType::ScalarBuffer;
95 if (!Parameters::Get<Parameters::EnableVtkOutput>()) {
99 if (params_.rockInternalEnergyOutput_) {
102 if (params_.totalThermalConductivityOutput_) {
105 if (params_.fluidInternalEnergiesOutput_) {
108 if (params_.fluidEnthalpiesOutput_) {
119 if (!Parameters::Get<Parameters::EnableVtkOutput>()) {
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_{};
194 #endif // OPM_VTK_BLACKOIL_ENERGY_MODULE_HPP void allocBuffers() override
Allocate memory for the scalar fields we would like to write to the VTK file.
Definition: vtkblackoilenergymodule.hpp:93
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
VTK output module for the black oil model's energy related quantities.
Definition: vtkblackoilenergymodule.hpp:53
void resizePhaseBuffer_(PhaseBuffer &buffer, BufferType bufferType)
Allocate the space for a buffer storing a phase-specific quantity.
Definition: baseoutputmodule.hh:198
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
This file provides the infrastructure to retrieve run-time parameters.
The base class for writer modules.
Definition: baseoutputmodule.hh:67
The base class for writer modules.
VTK output module for the black oil model's energy related quantities.
BufferType
Definition: baseoutputmodule.hh:143
void processElement(const ElementContext &elemCtx) override
Modify the internal buffers according to the intensive quantities relevant for an element...
Definition: vtkblackoilenergymodule.hpp:117
Simplifies writing multi-file VTK datasets.
Definition: vtkmultiwriter.hh:64
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition: blackoilbioeffectsmodules.hh:45
The base class for all output writers.
Definition: baseoutputwriter.hh:45
static void registerParameters()
Register all run-time parameters for the multi-phase VTK output module.
Definition: vtkblackoilenergymodule.hpp:84
Declares the properties required by the black oil model.
Declare the properties used by the infrastructure code of the finite volume discretizations.
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 commitBuffers(BaseOutputWriter &baseWriter) override
Add all buffers to the VTK output writer.
Definition: vtkblackoilenergymodule.hpp:156
void resizeScalarBuffer_(ScalarBuffer &buffer, BufferType bufferType)
Allocate the space for a buffer storing a scalar quantity.
Definition: baseoutputmodule.hh:157
The Opm property system, traits with inheritance.
Simplifies writing multi-file VTK datasets.
Struct holding the parameters for VtkBlackoilEnergyOutputModule.
Definition: vtkblackoilenergyparams.hpp:45
void read()
Reads the parameter values from the parameter system.
Definition: vtkblackoilenergyparams.cpp:45
Contains the classes required to extend the black-oil model by energy.
static void registerParameters()
Registers the parameters in parameter system.
Definition: vtkblackoilenergyparams.cpp:31