Stochastic Tools Requirements Traceability Matrix

This template follows Idaho National Laboratory (INL) template TEM-214, "IT System Requirements Traceability Matrix."

commentnote

This document serves as an addendum to Framework Requirements Traceability Matrix and captures information for Requirement Traceability Matrix (RTM) specific to the Stochastic Tools module.

Introduction

Minimum System Requirements

In general, the following is required for MOOSE-based development:

A Portable Operating System Interface (POSIX) compliant Unix-like operating system. This includes any modern Linux-based operating system (e.g., Ubuntu, Fedora, Rocky, etc.), or a Macintosh machine running either of the last two MacOS releases.

HardwareInformation
CPU Architecturex86_64, ARM (Apple Silicon)
Memory8 GB (16 GBs for debug compilation)
Disk Space30GB

LibrariesVersion / Information
GCC8.5.0 - 12.2.1
LLVM/Clang10.0.1 - 16.0.6
Intel (ICC/ICX)Not supported at this time
Python3.7 - 3.11
Python Packagespackaging pyaml jinja2

System Purpose

The purpose of the MOOSE Stochastic Tools module includes, but is not limited to:

  • Providing a MOOSE-like interface for performing stochastic analysis on MOOSE-based models.

  • Sampling model parameters, running applications, and gathering data of interest that is both efficient (memory and runtime) and scalable.

  • Performing uncertainty quantification and sensitivity analysis with distributed data.

  • Training meta-models to develop fast-evaluation surrogates of the high-fidelity multiphysics model.

  • Providing a pluggable interface for these surrogates.

As such, the purpose of this module is not to provide physical model capabilities, which is typically the responsibility of other MOOSE modules and dependent applications, but to provide data creation and processing capabilities in stochastic analysis.

System Scope

The MOOSE Stochastic Tools module builds on the existing framework MultiApps system and provides several additional systems to address its purpose. To address the efficient evaluation of multiphysics models, the MultiApps system is extended to include a "batch" mode of execution. This mode provides a memory efficient way of building MooseApp instances and reusing them for different perturbations of input parameters. This is useful for stochastic simulations with many, many samples to be run without holding them in memory or re-initializing potentially costly data allocation. The additional systems that the Stochastic Tools module provides include: Distributions, Samplers, Trainers, and Surrogates. Distributions are functions defining the uncertainty of input parameters and provides an interface for computing probability density, cumulative probability, and quantiles. Samplers define the sampling scheme of the stochastic analysis, whether it be random or deterministic. Trainers are objects that build meta-models meant to be used as surrogates or reduced-order models of the multiphysics model. The resulting reduced model is able to be saved in a meta-data file and reloaded for future use. Surrogates take the data created from a Trainer and provide functionality to evaluate the model. The module also provides capabilities for computing quantities related to basic uncertainty quantification and sensitivity analysis using the framework's Reporters system.

Assumptions and Dependencies

The Stochastic Tools module is developed using MOOSE and can itself be based on various MOOSE modules, as such the RTM for the Stochastic Tools module is dependent upon the files listed at the beginning of this document.

Pre-test Instructions/Environment/Setup

Ideally all testing should be performed on a clean test machine following one of the supported configurations setup by the test system engineer. Testing may be performed on local workstations and cluster systems containing supported operating systems.

The repository should be clean prior to building and testing. When using "git" this can be done by doing a force clean in the main repository and each one of the submodules:

git clean -xfd
git submodule foreach 'git clean -xfd'

All tests must pass in accordance with the type of test being performed. This list can be found in the Software Test Plan.

Changelog Issue Revisions

Errors in changelog references can sometimes occur as a result of typos or conversion errors. If any need to be noted by the development team, they will be noted here.

The changelog for all code residing in the MOOSE repository is located in the MOOSE RTM.

System Requirements Traceability

Functional Requirements

  • stochastic_tools: Controls
  • 10.3.1The system shall be able to read a neural network from a parameter file and use it to control a transient process.

    Specification(s): read-parameters

    Design: LibtorchDRLControl

    Issue(s): #19571

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.3.2The system shall be able to run with a DRL controller without having a neural net initialized in it.

    Specification(s): without-nn

    Design: LibtorchDRLControl

    Issue(s): #19571

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • stochastic_tools: Ics
  • 10.6.1The system shall generate parallel agnostic random initial conditions using a distribution function.

    Specification(s): generate

    Design: RandomIC

    Issue(s): #5567#11901#9710

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.6.2The system shall generate an error the random initial condition is used with both a distribution and min or max value defined.

    Specification(s): test_err_distribution_and_min_max

    Design: RandomIC

    Issue(s): #5567#11901#9710

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 10.6.1

  • stochastic_tools: Transfers
  • 10.12.1The system shall include the ability to modify parameters for sub-applications using values from a distribution
    1. on a single processor,
    2. on multiple processors,
    3. and on more processors than samples.

    Specification(s): normal/n1, normal/n2, normal/n3

    Design: SamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.12.2The system shall include the ability to modify parameters for sub-applications executed in batches using values from a distribution
    1. on a single processor,
    2. on multiple processors, and
    3. on multiple processors using in-memory sub-application restore.

    Specification(s): batch/n1, batch/n2, batch/n2_restore

    Design: SamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

    Prerequisite(s): 10.12.1

  • 10.12.3The system shall include the ability to transfer stochastic results for two sub apps.

    Specification(s): batch_two_subapps

    Design: SamplerParameterTransfer

    Issue(s): #17079

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.12.4The 'StochasticToolsTransfer object shall error if the 'execute_on' parameter is defined when the corresponding MultiApp object is running in batch mode.

    Specification(s): StochasticToolsTransfer_execute_on_error

    Design: SamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.5The 'StochasticToolsTransfer' object shall error if the 'execute_on' parameter does not match the corresponding MultiApp object is running in normal mode.

    Specification(s): StochasticToolsTransfer_execute_on_check

    Design: SamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.6The system shall report a reasonable error if parameters for a trasnfer between multiapps are provided to stochastics transfer, which do not support this currently

    Specification(s): direction_error

    Design: SamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.7The system shall be able to transfer an artificial neural network between a trainer object and a control object residing on different apps.

    Specification(s): torch-parameters

    Design: LibtorchNeuralNetControlTransfer

    Issue(s): #19571

    Collection(s): FUNCTIONAL

    Type(s): JSONDiff

  • 10.12.8The system shall support the creation of a sub-application for each row of the stochastic data.

    Specification(s): monte_carlo

    Design: MonteCarloSamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.12.9The system shall produce an error if neither a 'SamplerTransientMultiApp' nor SamplerFullSolveMultiApp is provided in SamplerPostprocessorTransfer.

    Specification(s): wrong_multi_app

    Design: StochasticResults

    Issue(s): #9419

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.10The system shall produce an error if the 'result' object in 'SamplerPostprocessorTransfer' is not a 'StochasticResults object'.

    Specification(s): require_stochastic_results

    Design: StochasticResults

    Issue(s): #9419

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.11The system shall support the ability to transfer a single value from each sub-application for a set of stochastic data.

    Specification(s): sobol_from_multiapp

    Design: SamplerPostprocessorTransfer

    Issue(s): #8065

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.12.12The system shall report an error if the supplied name is invalid when attempting to transfer a single value from a sub-application.

    Specification(s): invalid_sub_pp_name

    Design: SamplerPostprocessorTransfer

    Issue(s): #8065

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.13When sub-application solve does not converge, the system shall either
    1. abort run,
    2. transfer last computed postprocessor value,
    3. or transfer NaN.

    Specification(s): solve_not_converge/abort, solve_not_converge/last_computed, solve_not_converge/nan

    Design: SamplerPostprocessorTransfer

    Issue(s): #8065

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunExceptionCheckFilesCSVDiff

  • 10.12.14The system shall support the ability to transfer reporter data from each sub-application for a set of stochastic data
    1. in normal mode,
    2. in batch mode,
    3. with distributed output,
    4. with more processors than samples,
    5. and error if transferring unsupported type.

    Specification(s): transfer/normal, transfer/batch, transfer/distributed, transfer/more_cpus, transfer/invalid_type

    Design: SamplerReporterTransfer

    Issue(s): #16166

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): JSONDiffRunException

  • 10.12.15The system shall produce an error if neither a 'SamplerTransientMultiApp' nor SamplerFullSolveMultiApp is provided in SamplerParameterTransfer.

    Specification(s): multiapp_type

    Design: SamplerParameterTransfer

    Issue(s): #11363

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.16The system shall produce an error if the sampler sub-application does not contain a Control object with the name 'stochastic'.

    Specification(s): control_missing

    Design: SamplerTransientMultiApp

    Issue(s): #11363

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.17The system shall produce an error if supplied vector of real values is not sized correctly within the SamplerParameterTransfer object.

    Specification(s): num_parameters_wrong

    Design: SamplerParameterTransfer

    Issue(s): #11363

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.18The system shall produce an error if a vector of values is supplied to a scalar parameter.

    Specification(s): not_vector

    Design: SamplerParameterTransfer

    Issue(s): #11363

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.19The system shall produce an error if sampling method differs between the sub-application and the associated sub-application data transfer.

    Specification(s): sampler_mismatch

    Design: SamplerParameterTransfer

    Issue(s): #11363

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.20The system shall be capable of transferring scalar data to sub-applications for each row of the stochastic data
    1. using a Monte Carlo and
    2. Sobol sampling scheme.

    Specification(s): transfer/monte_carlo, transfer/sobol

    Design: SamplerParameterTransfer

    Issue(s): #8065

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.12.21The system shall be capable of transferring vector data to sub-applications for each row of the stochastic data.

    Specification(s): monte_carlo

    Design: SamplerParameterTransfer

    Issue(s): #8065

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 10.12.22The system shall report an error if the transferred vector to a sub-application
    1. if the vector parameter does not exist;
    2. if the sub-application does not consume all of the supplied data;

    Specification(s): errors/invalid_name, errors/extra_data

    Design: SamplerParameterTransfer

    Issue(s): #8065

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 10.12.23The system shall be able to serialize solution samples on the root process of each subapplication and transfer results to a parallel storage in
    1. batch-restore mode,
    2. batch-reset mode, and
    3. normal mode.

    Specification(s): transfer_on_roots/batch_restore, transfer_on_roots/batch_reset, transfer_on_roots/normal

    Design: SerializedSolutionTransfer

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): JSONDiff

  • 10.12.24The system shall be able to distribute the solution samples among the processors of each subapplication, serialize and transfer them to a parallel storage on the corresponding ranks in
    1. batch-restore mode,
    2. batch-reset mode, and
    3. normal mode.

    Specification(s): transfer_fully_distributed/batch_restore, transfer_fully_distributed/batch_reset, transfer_fully_distributed/normal

    Design: SerializedSolutionTransfer

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): JSONDiff

  • 10.12.25The system shall support the creation of a sub-application for each row sampled data generated from a Sobol scheme.

    Specification(s): sobol

    Design: SobolSamplerParameterTransfer

    Issue(s): #8863

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • stochastic_tools: Userobjects
  • 10.13.1The system shall be able to create a surrogate model for the solution coordinates in the latent space.

    Specification(s): create_surrogate

    Design: InverseMapping

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): CheckFiles

  • 10.13.2The system should be able to reconstruct a full solution field for a given variable based on
    1. coordinates determined by a surrogate model.
    2. manually specified coordinates.

    Specification(s): inverse_map/with_surrogate, inverse_map/with_manual_input

    Design: InverseMapping

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Prerequisite(s): 10.13.1

  • 10.13.3The system shall be bale to reconstruct linearly parameterized functions exactly with a few spatial modes using
    1. polynomial regression surrogates for the expansion coefficients.

    Specification(s): inverse_map_verification/with_polyreg_csv

    Design: InverseMapping

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

    Prerequisite(s): 10.13.1

  • stochastic_tools: Variablemappings
  • 10.14.1The system should be able to build a variable mapping by computing the SVD of a snapshot matrix in serial.

    Specification(s): svd_1_proc_per_app

    Design: PODMapping

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): JSONDiff

  • 10.14.2The system should be able to build a variable mapping by computing the SVD of a snapshot matrix in parallel.

    Specification(s): svd_2_proc_per_app

    Design: PODMapping

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): JSONDiff

  • 10.14.3The system should be able to build a variable mapping by computing the SVD of a snapshot matrix in parallel with having data on only root processors.

    Specification(s): svd_2_proc_per_app_root

    Design: PODMapping

    Issue(s): #23619

    Collection(s): FUNCTIONAL

    Type(s): JSONDiff

Usability Requirements

No requirements of this type exist for this application, beyond those of its dependencies.

Performance Requirements

No requirements of this type exist for this application, beyond those of its dependencies.

System Interface Requirements

No requirements of this type exist for this application, beyond those of its dependencies.

References

No citations exist within this document.