|
My Project
|
Wrapping struct holding types used for element-level data extraction. More...
#include <OutputExtractor.hpp>
Classes | |
| struct | Context |
| Context passed to extractor functions. More... | |
| struct | Entry |
| Descriptor for extractors. More... | |
| struct | HysteresisParams |
| Struct holding hysteresis parameters. More... | |
| struct | PhaseEntry |
| A phase buffer extractor descriptor. More... | |
| struct | ScalarEntry |
| A scalar extractor descriptor. More... | |
Public Types | |
| using | IntensiveQuantities = GetPropType< TypeTag, Properties::IntensiveQuantities > |
| using | Scalar = GetPropType< TypeTag, Properties::Scalar > |
| using | FluidState = typename IntensiveQuantities::FluidState |
| using | FluidSystem = GetPropType< TypeTag, Properties::FluidSystem > |
| using | AssignFunc = std::function< void(const Context &)> |
| Callback for extractors handling their own assignements. | |
| using | ScalarFunc = std::function< Scalar(const Context &)> |
| Callback for extractors assigned to a scalar buffer Return value to store in buffer. | |
| using | PhaseFunc = std::function< Scalar(const unsigned, const Context &)> |
| Callback for extractors assigned to a phase buffer Returns value to store in buffer for requested phase. | |
| using | ScalarBuffer = std::vector< Scalar > |
| A scalar buffer. | |
| using | PhaseArray = std::array< ScalarBuffer, numPhases > |
| An array of buffers, one for each phase. | |
Static Public Member Functions | |
| template<std::size_t size> | |
| static std::vector< Entry > | removeInactive (std::array< Entry, size > &input) |
| Obtain vector of active extractors from an array of extractors. | |
| static void | process (const Context &ectx, const std::vector< Entry > &extractors) |
| Process the given extractor entries. | |
Static Public Attributes | |
| static constexpr int | numPhases = FluidSystem::numPhases |
Wrapping struct holding types used for element-level data extraction.
|
inlinestatic |
Process the given extractor entries.
| ectx | Context for extractors |
| extractors | List of extractors to process |