Reporter System
The Reporter system may be considered a generalization of the Postprocessor and VectorPostprocessor systems. Each Reporter object may declare any number of values with any types. By contrast, post-processors each declare a single, scalar, Real
value, and while vector post-processors declare any number of values, they must all be of type std::vector<Real>
. Reporters can declare both scalar and vector data of any type, including complex data and arbitrary classes/structs. The only requirement on the data type is that the types must have associated dataLoad
and dataStore
specializations (see DataIO).
The reporter system uses a producer/consumer relationship: reporter objects "produce" data values, which then may be "consumed" by other objects.
Producing Reporter Data
As noted above, Reporter objects declare any number of values of any type. Note that these values are automatically registered as restartable. For complex types, data serialization routines might be needed; see DataIO for more information.
In the Reporter header file, Reporter values are declared as non-const reference members of the desired types, for example:
(contrib/moose/test/include/reporters/TestReporter.h)These references are initialized using the declareValue
and declareValueByName
methods. Note that it is possible to indicate how the value is to be computed, with respect to parallelism, by setting the calculation mode; see Reporter Context and Modes for more information. The declareValueByName
method uses the supplied string directly as the value name, while the declareValue
method gets the value name from the supplied ReporterValueName
parameter declared in validParams
. For example, in validParams
,
Then the Reporter data can be declared using declareValue
:
Note that in this example, an initial value is supplied for the data.
The calculation of the value(s) occurs by overriding the execute
method and updating the values:
Consuming Reporter Data
Any object that inherits from the ReporterInterface
may consume a value produced by a Reporter. Values are retrieved in a similar fashion as declared, but use a constant reference. For example, values to be consumed should create a reference in the class definition:
In the initialization list, the getReporterValue
or getReporterValueByName
method is used to initialize the reference:
Similarly to declareValue
and declareValueByName
, getReporterValue
uses the provided string for the value name, whereas getReporterValueByName
gets the value name from the parameter named by the provided string. In the example above, the following appears in validParams
:
The get methods accept a ReporterName
object, which is simply the combination of the name of the producing Reporter object and the name of the reporter value. In the input file, the ReporterName is provided as follows, where "a" is the name of the Reporter object in the [Reporters]
block of the input file that is producing data with the name "int", which is the name given to the data within the declareValue
/declareValueByName
method of that object:
Outputting Reporter Data
Reporter values may be output in two formats: comma-separated values (CSV) and JavaScript Object Notation (JSON). CSV output is limited to Reporter values with a type of Real
or std::vector<Real>
. JSON output will work for any type that has a to_json
function; see JSON for more details.
Reporter Context and Modes
Reporter values use a context system for performing parallel operations automatically. The default context allows Reporter values to be produced and consumed in various modes. Depending on the mode produced/consumed, parallel operations will be performed automatically. The following modes exist for the default context:
REPORTER_MODE_ROOT: Values exist only on the root processor.
REPORTER_MODE_REPLICATED: Values exist and are identical on all processors.
REPORTER_MODE_DISTRIBUTED: Values exist and are different across processors.
Values can be produced or consumed in any of the prescribed modes. When consumed, the mode of production is checked against the mode of consumption. Table 1 details the actions taken by the various possible modes of production and consumption for a Reporter value.
Table 1: Default operations for the default context that occur for Reporter values depending on the modes of production and consumption. The prefix REPORTER_MODE_
is omitted for clarity.
Producer Mode | Consumer Mode | Operation |
---|---|---|
ROOT | ROOT | Do nothing |
REPLICATED | ROOT | Do nothing |
REPLICATED | REPLICATED | Do nothing |
DISTRIBUTED | DISTRIBUTED | Do nothing |
ROOT | REPLICATED | MPI Broadcast |
ROOT | DISTRIBUTED | Error |
REPLICATED | DISTRIBUTED | Error |
DISTRIBUTED | ROOT | Error |
DISTRIBUTED | REPLICATED | Error |
The declareValue
and declareValueByName
methods allow for non-default context to be defined. For example, the following line declares a Reporter value to use the gather context object. A list of available contexts follows the code snippet.
ReporterBroadcastContext
Automatically performs an MPI broadcast of a specified value on the root processor to all processors.
ReporterScatterContext
Automatically performs an MPI scatter of a vector of data on the root processor to all processors.
ReporterGatherContext
Automatically performs an MPI gather to a vector of data on the root processor from all processors.
Reporter Debug Output
The ReporterDebugOutput output can be added to output to screen all of the Reporter values that were declared and requested, along with their types, producers, contexts, consumers, and consumer modes. This debug output can also be enabled with the Debug/show_reporters
parameter.
Available Objects
- Moose App
- AccumulateReporterReporter which accumulates the value of a inputted reporter value over time into a vector reporter value of the same type.
- ConstantReporterReporter with constant values to be accessed by other objects, can be modified using transfers.
- ElementVariableStatisticsElement reporter to get statistics for a coupled variable. This can be transfered to other apps.
- ExtraIDIntegralReporterThis ExtraIDIntegralReporter source code is to integrate variables based on parsed extra IDs based on reporter system.
- IterationInfoReport the time and iteration information for the simulation.
- MeshInfoReport mesh information, such as the number of elements, nodes, and degrees of freedom.
- MeshMetaDataReporterReports the mesh meta data.
- NodalVariableStatisticsNodal reporter to get statistics for a coupled variable. This can be transfered to other apps.
- PerfGraphReporterReports the full performance graph from the PerfGraph.
- RestartableDataReporterReports restartable data and restartable meta data.
- SolutionInvalidityReporterReports the Summary Table of Solution Invalid Counts.
- Stochastic Tools App
- ActiveLearningGPDecisionEvaluates a GP surrogate model, determines its prediction quality, launches full model if GP prediction is inadequate, and retrains GP.
- AdaptiveImportanceStatsReporter to compute statistics corresponding to the AdaptiveImportanceSampler.
- AdaptiveMonteCarloDecisionGeneric reporter which decides whether or not to accept a proposed sample in Adaptive Monte Carlo type of algorithms.
- AffineInvariantDifferentialDecisionPerform decision making for Affine Invariant differential MCMC.
- AffineInvariantStretchDecisionPerform decision making for Affine Invariant stretch MCMC.
- BiFidelityActiveLearningGPDecisionPerform active learning decision making in bi-fidelity modeling.
- ConditionalSampleReporterEvaluates parsed function to determine if sample needs to be evaluated, otherwise data is set to a default value.
- CrossValidationScoresTool for extracting cross-validation scores and storing them in a reporter for output.
- DirectPerturbationReporterCompute local sensitivities using the direct perturbation method.
- EvaluateSurrogateTool for sampling surrogate models.
- IndependentMHDecisionPerform decision making for independent Metropolis-Hastings MCMC.
- MappingReporterA reporter which can map full solution fields to a latent space for given variables.
- MorrisReporterCompute global sensitivities using the Morris method.
- PMCMCDecisionGeneric reporter which decides whether or not to accept a proposed sample in parallel Markov chain Monte Carlo type of algorithms.
- ParallelSolutionStorageParallel container to store serialized solution fields from simulations on sub-applications.
- PolynomialChaosReporterTool for extracting data from PolynomialChaos surrogates and computing statistics.
- SingularTripletReporterTool for accessing and outputting the singular triplets of a singular value decomposition in PODMapping.
- SobolReporterCompute SOBOL statistics values of a given VectorPostprocessor or Reporter objects and vectors.
- SolutionContainerClass responsible for collecting distributed solution vectors into a container. We append a new distributed solution vector (containing all variables) at every execution.
- StatisticsReporterCompute statistical values of a given VectorPostprocessor objects and vectors.
- StochasticMatrixTool for extracting Sampler object data and storing data from stochastic simulations.
- StochasticReporterStorage container for stochastic simulation results coming from Reporters.
Available Actions
- Moose App
- AddReporterActionAdd a Reporter object to the simulation.