Stochastic Tools System Design Description
This template follows INL template TEM-140, "IT System Design Description."
This document serves as an addendum to Framework System Design Description and captures information for Software Design Description (SDD) specific to the Stochastic Tools module.
Introduction
The MOOSE Stochastic Tools module is based on the MOOSE framework and thus inherits the unique features and base characteristics of the framework, as outlined in the Framework System Design Description. Specific details unique to the module are outlined in this document.
System Purpose
The Software Design Description provided here is description of each object in the system. The pluggable architecture of the underlying framework of the Stochastic Tools module makes MOOSE and MOOSE-based applications straightforward to develop as each piece of end-user (developer) code that goes into the system follows a well-defined interface for the underlying systems that those object plug into. These descriptions are provided through developer-supplied "markdown" files that are required for all new objects that are developed as part of the Stochastic Tools module. More information about the design documentation for MOOSE-based applications and like the Stochastic Tools module can be found in Documenting MOOSE.
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.
Dependencies and Limitations
The Stochastic Tools module inherits the software dependencies of the MOOSE framework, with no additional dependencies. The design of this module is motivated by the needs of its client applications.
Definitions and Acronyms
This section defines, or provides the definition of, all terms and acronyms required to properly understand this specification.
Definitions
Pull (Merge) Request: A proposed change to the software (e.g. usually a code change, but may also include documentation, requirements, design, and/or testing).
Baseline: A specification or product (e.g., project plan, maintenance and operations (M&O) plan, requirements, or design) that has been formally reviewed and agreed upon, that thereafter serves as the basis for use and further development, and that can be changed only by using an approved change control process (NQA-1, 2009).
Validation: Confirmation, through the provision of objective evidence (e.g., acceptance test), that the requirements for a specific intended use or application have been fulfilled (24765:2010(E), 2010).
Verification: (1) The process of: evaluating a system or component to determine whether the products of a given development phase satisfy the conditions imposed at the start of that phase. (2) Formal proof of program correctness (e.g., requirements, design, implementation reviews, system tests) (24765:2010(E), 2010).
Acronyms
Acronym | Description |
---|---|
API | Application Programming Interface |
DOE-NE | Department of Energy, Nuclear Energy |
FE | finite element |
HIT | Hierarchical Input Text |
HPC | High Performance Computing |
I/O | Input/Output |
INL | Idaho National Laboratory |
MOOSE | Multiphysics Object Oriented Simulation Environment |
MPI | Message Passing Interface |
SDD | Software Design Description |
Design Stakeholders and Concerns
Design Stakeholders
Stakeholders for MOOSE include several of the funding sources including Department of Energy, Nuclear Energy (DOE-NE) and the INL. However, Since MOOSE is an open-source project, several universities, companies, and foreign governments have an interest in the development and maintenance of the MOOSE project.
Stakeholder Design Concerns
Concerns from many of the stakeholders are similar. These concerns include correctness, stability, and performance. The mitigation plan for each of these can be addressed. For correctness, Stochastic Tools module development requires either regression or unit testing for all new code added to the repository. The project contains several comparisons against analytical solutions where possible and also other verification methods such as MMS. For stability, the Stochastic Tools module (located within the MOOSE repository) maintains multiple branches to incorporate several layers of testing both internally and for dependent applications. Finally, performance tests are also performed as part of the the normal testing suite to monitor code change impacts to performance.
System Design
The Stochastic Tools module inherits the wide range of pluggable systems from MOOSE. More information regarding MOOSE system design can be found in the framework System Design section. Most of these inherited systems are utilized to build physics models for which stochastic analysis is being performed. Other than these, the inherited core capabilities define the order and frequency of object execution. Furthermore, the MultiApps, Transfers, Controls, and Reporters systems in the framework are utilized to partition the stochastic simulations and manipulate distributed data. The Stochastic Tools implements several other pluggable systems, including: Distributions, Samplers, Trainers, and Surrogates. Distributions and Samplers define the parameter space of the stochastic analysis and Trainers and Surrogates build and utilize the data from the analysis to build reduced-order models. Dependent applications can inherit from these systems to define new methods. Documentation for each object, data structure, and process specific to the module are kept up-to-date alongside the MOOSE documentation. Expected failure modes and error conditions are accounted for via regression testing, and error conditions are noted in object documentation where applicable.
System Structure
The architecture of the Stochastic Tools module consists of a core and several pluggable systems. The core of MOOSE consists of a number of key objects responsible for setting up and managing the user-defined objects of a finite element simulation. This core set of objects has limited extendability and exists for every simulation configuration that the module is capable of running.
AuxKernels
AuxScalarKernels
AuxVariables
Controls
Covariance
Distributions
Functions
Likelihood
MultiApps
Outputs
ParameterStudy
Postprocessors
Reporters
Samplers
StochasticTools
Surrogates
Trainers
Transfers
UserObjects
VariableMappings
VectorPostprocessors
The MooseApp is the top-level object used to hold all of the other objects in a simulation. In a normal simulation, a single MooseApp object is created and "run()". This object uses its Factory objects to build user-defined objects which are stored in a series of Warehouse objects and executed. The Finite Element data is stored in the Systems and Assembly object while the domain information (the Mesh) is stored in the Mesh object. A series of threaded loops are used to run parallel calculations on the objects created and stored within the warehouses.
MOOSE's pluggable systems are documented on the MOOSE website, and those for the Stochastic Tools module are on this webpage, accessible through the high-level system links above. Each of these systems has a set of defined polymorphic interfaces and are designed to accomplish a specific task within the simulation. The design of these systems is solid and is managed through agile methods and ticket request system on the MOOSE GitHub repository.
Data Design and Control
At a high level, the system is designed to process Hierarchical Input Text (HIT) input files to construct several objects that will constitute an finite element (FE) simulation. Some of the objects in the simulation may in turn load other file-based resources to complete the simulation. Examples include meshes or data files. The system will then assemble systems of equations and solve them using the libraries of the Code Platform. The system can then output the solution in one or more supported output formats commonly used for visualization.
Human-Machine Interface Design
The Stochastic Tools module is a command-line driven program. All interaction with the Stochastic Tools module is ultimately done through the command line. This is typical for HPC applications that use the MPI interface for running on super computing clusters. Optional GUIs may be used to assist in creating input files and launching executables on the command line.
System Design Interface
All external system interaction is performed either through file Input/Output (I/O) or through local API calls. Neither the Stochastic Tools module, nor the MOOSE framework, nor the other MOOSE modules are designed to interact with any external system directly through remote procedure calls. Any code to code coupling performed using the framework are done directly through API calls either in a static binary or after loading shared libraries.
Security Structure
The Stochastic Tools module does not require any elevated privileges to operate and does not run any stateful services, daemons or other network programs. Distributed runs rely on the MPI library.
Requirements Cross-Reference
- stochastic_tools: ParameterStudy
- 10.1.1The system shall be able to setup a simple parameter study with the following sampling schemes
- Monte Carlo;
- latin hypercube;
- cartesian product;
- CSV;
- CSV when specifiying column indices;
- CSV when specifiying column names;
- input matrix;
Specification(s): sampling/monte_carlo, sampling/lhs, sampling/cartesian_product, sampling/csv, sampling/csv_indices, sampling/csv_names, sampling/input_matrix
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.1.2The system shall throw an error if the following sampler parameters are missing or unused when doing a simple parameter study
- 'num_samples' parameter for Monte Carlo sampling;
- 'distributions' parameter for Monte Carlo sampling;
- 'linear_space_items' parameter with Monte Carlo sampling;
- 'num_samples' parameter for latin hypercube sampling;
- 'distributions' parameter for latin hypercube sampling;
- 'linear_space_items' parameter for cartesian product sampling;
- 'samples_file' parameter for CSV sampling;
- both 'csv_column_indices' and 'csv_column_names' parameters are specified for CSV sampling;
- 'matrix' parameter for input matrix sampling;
Specification(s): sampling_errors/monte_carlo_num_samples, sampling_errors/monte_carlo_distributions, sampling_errors/monte_carlo_unused, sampling_errors/lhs_num_samples, sampling_errors/lhs_distributions, sampling_errors/cartesian_product, sampling_errors/csv, sampling_errors/csv_both, sampling_errors/input_matrix
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.1.3The system shall be able to setup a Monte Carlo parameter study with uniform, normal, Weibull, lognormal, and truncated normal distributions.
Specification(s): distributions
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.1.4The system shall throw an error when doing a simple parameter study if distribution parameters are
- missing;
- inconsitent size;
- unused;
Specification(s): distribution_errors/missing, distribution_errors/inconsistent, distribution_errors/unused
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.1.5The system shall be able to setup a simple parameter study with ability to
- compute statistics;
- not compute statistics;
- error if there are unused statistics parameters;
Specification(s): stats/true, stats/false, stats/unused
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): JSONDiffRunAppRunException
- 10.1.6The system shall be able to output the results of a simple parameter study with
- no output;
- CSV output;
- JSON output;
Specification(s): outputs/none, outputs/csv, outputs/json
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONAL
Type(s): JSONDiffRunAppCSVDiff
- 10.1.7The system shall be able to run a simple parameter study in the following modes
- one sub-app per sample;
- batches with one sub-app per processor while re-initializing;
- batches one sub-app per processor while restoring;
- batches one sub-app per processor while restoring and keeping solution;
- batches one sub-app per processor without restoring;
Specification(s): mode/normal, mode/batch_reset, mode/batch_restore, mode/batch_keep_solution, mode/batch_no_restore
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.1.8The system shall be able to build a simple parameter study with an optimized execution mode by determining that
- parameters are parsed;
- parameters are not controllable;
- parameters are controllable in a transient problem;
- parameters are controllable in a pseudo-transient problem;
- parameters are controllable in a steady-state problem;
- parameters are controllable in a eigenvalue problem;
Specification(s): auto_mode/parsed, auto_mode/not_controllable, auto_mode/transient, auto_mode/pseudo_transient, auto_mode/steady, auto_mode/eigen
Design: ParameterStudy
Issue(s): #22512
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: SurrogateModelAuxKernel
- 10.2.1The system shall be able to create a surrogate that can be read in by file and use in aux kernels.
Specification(s): create
Design: SurrogateModelAuxKernel
Issue(s): #23018
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.2.2The system shall be able to assign the values of an auxiliary variable with the evaluation of a surrogate model for
- standard field variables and
- array field variables.
Specification(s): evaluate/var, evaluate/array_var
Design: SurrogateModelAuxKernel
Issue(s): #23018
Collection(s): FUNCTIONAL
Type(s): RunApp
- 10.2.3The system shall throw an error when evaluating a surrogate for auxiliary variable assignment if
- a parameter is undefined,
- a scalar parameter is not found, or
- a coupled array variable does not match the number of components.
Specification(s): errors/parameter_unspecified, errors/scalar_missing, errors/wrong_array_size
Design: SurrogateModelAuxKernel
Issue(s): #23018
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: SurrogateModelScalarAux
- 10.2.4The system shall be able to evaluate a surrogate at given scalar variable values and insert the result into a scalar variable
Specification(s): scalar_surrogate_aux
Design: SurrogateModelScalarAux
Issue(s): #22980
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.2.5The system shall be able to evaluate a surrogate at given postprocessor values and insert the result into a scalar variable
Specification(s): scalar_surrogate_aux_pp_arg
Design: SurrogateModelScalarAux
Issue(s): #22980
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: LibtorchDRLControl
- 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: Uniform
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Weibull
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Normal
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.4.2The system shall provide a normal distribution with the ability to directly call methods with distribution inputs.
Specification(s): normal_direct
Design: Normal
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.4.3The system shall produce an error if a distribution is retrieved with the differing type than supplied.
Specification(s): normal_direct_type_error
Design: Normal
Issue(s): #12720
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: TruncatedNormal
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Gamma Distribution
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Beta Distribution
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: F-Distribution
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Student t-distribution
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: JohnsonSB
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Logistic
- 10.4.1The system shall provide distribution function including
- uniform,
- Weibull (3 parameter),
- Kernel Density 1D with a Gaussian kernel and data file as input,
- Kernel Density 1D with a Uniform kernel and data file as input,
- Kernel Density 1D with a Gaussian kernel and data vector as input,
- Kernel Density 1D with a Gaussian kernel and user defined bandwidth,
- Kernel Density 1D with a Gaussian kernel and standard deviation as bandwidth,
- normal,
- truncated normal,
- lognormal,
- gamma,
- beta,
- F,
- student t,
- Johnson Special Bounded (SB), and
- logistic distributions.
Specification(s): distributions/uniform, distributions/weibull, distributions/kernel1d_gaussian, distributions/kernel1d_uniform, distributions/kernel1d_datvec, distributions/kernel1d_userbw, distributions/kernel1d_sdbw, distributions/normal, distributions/truncated_normal, distributions/lognormal, distributions/gamma, distributions/beta, distributions/fdist, distributions/studentt, distributions/johnsonsb, distributions/logistic
Design: UniformWeibullNormalTruncatedNormalGamma DistributionBeta DistributionF-DistributionStudent t-distributionJohnsonSBLogistic
Issue(s): #12720
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: ScaledAbsDifferenceDRLRewardFunction
- 10.5.1The system shall be able to evaluate a linear DRL reward function with a given, time-dependent target.
Specification(s): libtorch_drl_reward_linear
Design: ScaledAbsDifferenceDRLRewardFunction
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: RandomIC
- 10.6.1The system shall generate parallel agnostic random initial conditions using a distribution function.
Specification(s): generate
Design: RandomIC
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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: Gaussian
- 10.7.1The system shall be be able to calculate the likelihood values when
- using a Gaussian type with log-likelihoods requested and model/experiment values are scalars;
- using a Gaussian type with likelihoods requested and model/experiment values are scalars;
- using a truncated Gaussian type with likelihoods requested and model/experiment values are scalars.
- using a Extreme Value type with likelihoods requested and model/experiment values are scalars.
Specification(s): calculate_likelihoods/loglikelihood_scalar, calculate_likelihoods/likelihood_scalar, calculate_likelihoods/truncatedgaussian, calculate_likelihoods/extremevalue
Design: GaussianTruncatedGaussianExtremeValue
Issue(s): #23837
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.7.2The system shall throw an error when
- the specified lower bound is greater than the upper bound;
Specification(s): likelihoods_errors/truncatedgaussian_bounds
Design: GaussianTruncatedGaussianExtremeValue
Issue(s): #23837
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: TruncatedGaussian
- 10.7.1The system shall be be able to calculate the likelihood values when
- using a Gaussian type with log-likelihoods requested and model/experiment values are scalars;
- using a Gaussian type with likelihoods requested and model/experiment values are scalars;
- using a truncated Gaussian type with likelihoods requested and model/experiment values are scalars.
- using a Extreme Value type with likelihoods requested and model/experiment values are scalars.
Specification(s): calculate_likelihoods/loglikelihood_scalar, calculate_likelihoods/likelihood_scalar, calculate_likelihoods/truncatedgaussian, calculate_likelihoods/extremevalue
Design: GaussianTruncatedGaussianExtremeValue
Issue(s): #23837
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.7.2The system shall throw an error when
- the specified lower bound is greater than the upper bound;
Specification(s): likelihoods_errors/truncatedgaussian_bounds
Design: GaussianTruncatedGaussianExtremeValue
Issue(s): #23837
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: ExtremeValue
- 10.7.1The system shall be be able to calculate the likelihood values when
- using a Gaussian type with log-likelihoods requested and model/experiment values are scalars;
- using a Gaussian type with likelihoods requested and model/experiment values are scalars;
- using a truncated Gaussian type with likelihoods requested and model/experiment values are scalars.
- using a Extreme Value type with likelihoods requested and model/experiment values are scalars.
Specification(s): calculate_likelihoods/loglikelihood_scalar, calculate_likelihoods/likelihood_scalar, calculate_likelihoods/truncatedgaussian, calculate_likelihoods/extremevalue
Design: GaussianTruncatedGaussianExtremeValue
Issue(s): #23837
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.7.2The system shall throw an error when
- the specified lower bound is greater than the upper bound;
Specification(s): likelihoods_errors/truncatedgaussian_bounds
Design: GaussianTruncatedGaussianExtremeValue
Issue(s): #23837
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: SamplerFullSolveMultiApp
- 10.8.1The system shall be able to set command line parameter(s) for sub-application that executes completely from a sample distribution for
- for a single parameter,
- for a single parameter for a batch of sub-applications,
- for multiple parameters, and
- for vector parameters for a batch of sub-applications,
- for multiple parameters for a batch of sub-applications.
- for multiple parameters using their global column indexes for a batch of sub-applications.
Specification(s): parent/single_normal, parent/single_batch, parent/multiple_normal, parent/vector, parent/multiple_batch, parent/multiple_batch_with_index
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.2The system shall report an error when the supplied sampler object operates in a mode that does not allow for command line arguments to be modified.
Specification(s): wrong_batch_mode
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.3The system shall report an error when the supplied sampler does not use the correct execution flags.
Specification(s): wrong_execute_on
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.4The system shall report an error when '[]' syntax is not used for all parameters.
Specification(s): vector_no_bracket
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.5The system shall report an error when provided global column index is out of bound.
Specification(s): vector_out_of_bound
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.6The system shall support pulling postprocessor data from a sub-application for each row of sampled data.
Specification(s): normal
Design: SamplerPostprocessorTransferSamplerFullSolveMultiApp
Issue(s): #8863
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.7The system shall support running sub-applications in batches.
Specification(s): batch
Design: SamplerPostprocessorTransferSamplerFullSolveMultiApp
Issue(s): #8863
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.8.8The stochastic tools module shall support pulling postprocessor data from a single sub-application running a batch of sampled data
- on a single processor,
- on multiple processors, and
- on multiple processors using in-memory backup.
Specification(s): batch_csv/n1, batch_csv/n2, batch_csv/n2_restore
Design: SamplerPostprocessorTransferSamplerFullSolveMultiApp
Issue(s): #8863
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.15The system shall be able to control whether a sub-app is run for a certain sample
- with a parsed function dependent on time and sampler values;
- error if running in normal mode.
Specification(s): conditional/function, conditional/error
Design: SamplerFullSolveMultiAppConditionalSampleReporter
Issue(s): #19350
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): JSONDiffRunException
- 10.8.16The system shall support the modification of the number of complete sub-application simulations performed with
- normal execution,
- batch execution with memory-based restoring, and
- batch execution with reset-based restoring.
Specification(s): dynamic/normal, dynamic/batch-restore, dynamic/batch-reset
Design: Samplers SystemSamplerFullSolveMultiApp
Issue(s): #16842
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.8.17The system shall report an error when the size of a sampler is altered an sub-applications are progressing with time with the main application.
Specification(s): error
Design: Samplers SystemSamplerFullSolveMultiApp
Issue(s): #16842
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.20The system shall be able to output results from nested sub-applications in stochastic simulations using
- normal multiapp mode;
- batch-reset multiapp mode;
- batch-restore multiapp mode;
Specification(s): file_output/normal, file_output/batch_reset, file_output/batch_restore
Design: SamplerFullSolveMultiApp
Issue(s): #21233
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.21The system shall have consistent partitioning between multiapps and sampler for full solves
- with less processors than rows in normal mode;
- with more processors than rows in normal mode;
- with specified minimum processors per app in normal mode;
- with less processors than rows in batch-reset mode;
- with more processors than rows in batch-reset mode;
- with specified minimum processors per app in batch-reset mode;
- with less processors than rows in batch-restore mode;
- with more processors than rows in batch-restore mode;
- with specified minimum processors per app in batch-restore mode;
- error when partitionings do not match;
Specification(s): full_solve/normal_less_procs, full_solve/normal_more_procs, full_solve/normal_min_procs, full_solve/reset_less_procs, full_solve/reset_more_procs, full_solve/reset_min_procs, full_solve/restore_less_procs, full_solve/restore_more_procs, full_solve/restore_min_procs, full_solve/error_min_procs
Design: SamplerFullSolveMultiApp
Issue(s): #15787
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 10.8.23The system shall provide the ability to create a full-solve type sub-application from sampled data from distributions.
Specification(s): full_solve
Design: SamplerFullSolveMultiApp
Issue(s): #9923
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.8.26The system shall support performing complete solves within a sub-application that include perturbed inputs that yield repeatable results
- using normal operation;
- using in memory backup operation;
- using reset operation.
Specification(s): repeat/normal, repeat/batch-restore, repeat/batch-reset
Design: SamplerFullSolveMultiApp
Issue(s): #16476
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.8.27The system shall support performing complete solves within a sub-application that include perturbed inputs that yield changing results
- using normal operation;
- using in memory backup operation;
- using reset operation.
Specification(s): new/normal, new/batch-restore, new/batch-reset
Design: SamplerFullSolveMultiApp
Issue(s): #16476
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.8.28The system shall be able to perform stochastic simulations of steady-state models while obeying unperturbed command line arguements with:
- command line control in normal mode;
- command line control in batch mode;
- parameter transfer in normal mode;
- parameter transfer in batch-reset mode;
- parameter transfer in batch-restore mode;
Specification(s): full_solve/cmdline_normal, full_solve/cmdline_batch, full_solve/transfer_normal, full_solve/transfer_batch_reset, full_solve/transfer_batch_restore
Design: SamplerFullSolveMultiApp
Issue(s): #19105
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.13The system shall support generating random samples of data
- that remain constant in size and
- that are dynamic in size.
Specification(s): no_change/constant, no_change/dynamic
Design: Samplers SystemSamplerFullSolveMultiApp
Issue(s): #16842
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: MultiAppSamplerControl
- 10.8.1The system shall be able to set command line parameter(s) for sub-application that executes completely from a sample distribution for
- for a single parameter,
- for a single parameter for a batch of sub-applications,
- for multiple parameters, and
- for vector parameters for a batch of sub-applications,
- for multiple parameters for a batch of sub-applications.
- for multiple parameters using their global column indexes for a batch of sub-applications.
Specification(s): parent/single_normal, parent/single_batch, parent/multiple_normal, parent/vector, parent/multiple_batch, parent/multiple_batch_with_index
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.2The system shall report an error when the supplied sampler object operates in a mode that does not allow for command line arguments to be modified.
Specification(s): wrong_batch_mode
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.3The system shall report an error when the supplied sampler does not use the correct execution flags.
Specification(s): wrong_execute_on
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.4The system shall report an error when '[]' syntax is not used for all parameters.
Specification(s): vector_no_bracket
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.5The system shall report an error when provided global column index is out of bound.
Specification(s): vector_out_of_bound
Design: SamplerFullSolveMultiAppMultiAppSamplerControl
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.12The system shall be able to set a sub-application command line parameters from a sample distribution
- for a single parameter and
- for a multiple parameters.
Specification(s): parent/single, parent/multiple
Design: MultiAppSamplerControl
Issue(s): #12576
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.13The system shall report an error when sub-apps are constructed too early thus unable to be changed by samplers.
Specification(s): wrong_multiapp_type
Design: MultiAppSamplerControl
Issue(s): #12576
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.14The system shall report an error when the number of samples differs from the number of command line parameters.
Specification(s): wrong_num_params
Design: MultiAppSamplerControl
Issue(s): #12576
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.18The system shall be able to apply command line parameter(s) to nested sub-applications in
- normal multiapp mode;
- batch multiapp mode;
Specification(s): cmd_line/normal, cmd_line/batch
Design: MultiAppSamplerControl
Issue(s): #21233
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: SamplerPostprocessorTransfer
- 10.8.6The system shall support pulling postprocessor data from a sub-application for each row of sampled data.
Specification(s): normal
Design: SamplerPostprocessorTransferSamplerFullSolveMultiApp
Issue(s): #8863
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.7The system shall support running sub-applications in batches.
Specification(s): batch
Design: SamplerPostprocessorTransferSamplerFullSolveMultiApp
Issue(s): #8863
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.8.8The stochastic tools module shall support pulling postprocessor data from a single sub-application running a batch of sampled data
- on a single processor,
- on multiple processors, and
- on multiple processors using in-memory backup.
Specification(s): batch_csv/n1, batch_csv/n2, batch_csv/n2_restore
Design: SamplerPostprocessorTransferSamplerFullSolveMultiApp
Issue(s): #8863
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 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
- abort run,
- transfer last computed postprocessor value,
- 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
- stochastic_tools: SamplerTransientMultiApp
- 10.8.9The system shall support running sub-applications with input parameters varying at each time step
- with individual sub-applications,
- with sub-applications batches using in-memory restore functionality.
Specification(s): transient/normal, transient/batch
Design: SamplerTransientMultiApp
Issue(s): #13320
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.10The SamplerTransientMultiApp object shall error if the 'batch-reset' mode is supplied.
Specification(s): mode_error
Design: SamplerTransientMultiApp
Issue(s): #13320
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.8.11The system shall support outputting results from sub-applications with input parameters varying at each time step using
- individual sub-applications;
- sub-application batches;
Specification(s): file_output/normal, file_output/batch
Design: SamplerTransientMultiApp
Issue(s): #13320
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.8.22The system shall have consistent partitioning between multiapps and sampler for transient solves
- with less processors than rows in normal mode;
- with more processors than rows in normal mode;
- with specified minimum processors per app in normal mode;
- with less processors than rows in batch-restore mode;
- with more processors than rows in batch-restore mode;
- with specified minimum processors per app in batch-restore mode;
- error when partitionings do not match;
Specification(s): transient/normal_less_procs, transient/normal_more_procs, transient/normal_min_procs, transient/restore_less_procs, transient/restore_more_procs, transient/restore_min_procs, transient/error_min_procs
Design: SamplerTransientMultiApp
Issue(s): #15787
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 10.8.24The system shall provide the ability to create a transient sub-application from the sample data generated from distributions.
Specification(s): transient
Design: SamplerTransientMultiApp
Issue(s): #9923
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.8.25The system shall provide the ability to set a transient sub-application command line parameters from a sample distribution.
Specification(s): transient_cmdline_control
Design: SamplerTransientMultiApp
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 10.8.29The system shall be able to perform stochastic simulations of transient models while obeying unperturbed command line arguements with:
- command line control;
- parameter transfer in normal mode;
- parameter transfer in batch mode;
Specification(s): transient/cmdline, transient/transfer_normal, transient/transfer_batch
Design: SamplerTransientMultiApp
Issue(s): #19105
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 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
- stochastic_tools: ConditionalSampleReporter
- 10.8.15The system shall be able to control whether a sub-app is run for a certain sample
- with a parsed function dependent on time and sampler values;
- error if running in normal mode.
Specification(s): conditional/function, conditional/error
Design: SamplerFullSolveMultiAppConditionalSampleReporter
Issue(s): #19350
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): JSONDiffRunException
- stochastic_tools: Samplers System
- 10.8.16The system shall support the modification of the number of complete sub-application simulations performed with
- normal execution,
- batch execution with memory-based restoring, and
- batch execution with reset-based restoring.
Specification(s): dynamic/normal, dynamic/batch-restore, dynamic/batch-reset
Design: Samplers SystemSamplerFullSolveMultiApp
Issue(s): #16842
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.8.17The system shall report an error when the size of a sampler is altered an sub-applications are progressing with time with the main application.
Specification(s): error
Design: Samplers SystemSamplerFullSolveMultiApp
Issue(s): #16842
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.10.13The system shall support generating random samples of data
- that remain constant in size and
- that are dynamic in size.
Specification(s): no_change/constant, no_change/dynamic
Design: Samplers SystemSamplerFullSolveMultiApp
Issue(s): #16842
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: SamplerParameterTransfer
- 10.8.19The system shall be able to transfer parameter(s) to nested sub-applications in
- normal multiapp mode;
- batch-reset multiapp mode;
- batch-restore multiapp mode;
Specification(s): parameter_transfer/normal, parameter_transfer/batch_reset, parameter_transfer/batch_restore
Design: SamplerParameterTransfer
Issue(s): #21233
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.12.1The system shall include the ability to modify parameters for sub-applications using values from a distribution
- on a single processor,
- on multiple processors,
- 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
- on a single processor,
- on multiple processors, and
- 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
- 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.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.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.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
- using a Monte Carlo and
- 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
- if the vector parameter does not exist;
- 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.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: AISActiveLearning (AISActiveLearning)
- 10.9.1The system shall be able to perform importance sampling with active learning while
- using the U learning function.
Specification(s): sampling/ais_al_uval
Design: AISActiveLearning (AISActiveLearning)
Issue(s): #23142
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: ActiveLearningMonteCarloSampler
- 10.9.2The system shall be able to perform Monte Carlo sampling with active learning with
- a single row in the sampler using the U learning function;
- multiple rows in the sampler using the U learning function and automatically increase the number of steps when re-training is needed;
- a single row in the sampler using the U learning function and automatically increase the number of steps when re-training is needed;
- a single row in the sampler using the COV learning function and automatically increase the number of steps when re-training is needed;
Specification(s): sampling/SingleProc_SingleRow_Ufunction, sampling/MultipleProc_MultipleRow_Ufunction, sampling/SingleProc_SingleRow_Ufunction_retraining, sampling/COV_squared_exp
Design: ActiveLearningMonteCarloSamplerActiveLearningGPDecisionActiveLearningGaussianProcess
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: ActiveLearningGPDecision
- 10.9.2The system shall be able to perform Monte Carlo sampling with active learning with
- a single row in the sampler using the U learning function;
- multiple rows in the sampler using the U learning function and automatically increase the number of steps when re-training is needed;
- a single row in the sampler using the U learning function and automatically increase the number of steps when re-training is needed;
- a single row in the sampler using the COV learning function and automatically increase the number of steps when re-training is needed;
Specification(s): sampling/SingleProc_SingleRow_Ufunction, sampling/MultipleProc_MultipleRow_Ufunction, sampling/SingleProc_SingleRow_Ufunction_retraining, sampling/COV_squared_exp
Design: ActiveLearningMonteCarloSamplerActiveLearningGPDecisionActiveLearningGaussianProcess
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: ActiveLearningGaussianProcess
- 10.9.2The system shall be able to perform Monte Carlo sampling with active learning with
- a single row in the sampler using the U learning function;
- multiple rows in the sampler using the U learning function and automatically increase the number of steps when re-training is needed;
- a single row in the sampler using the U learning function and automatically increase the number of steps when re-training is needed;
- a single row in the sampler using the COV learning function and automatically increase the number of steps when re-training is needed;
Specification(s): sampling/SingleProc_SingleRow_Ufunction, sampling/MultipleProc_MultipleRow_Ufunction, sampling/SingleProc_SingleRow_Ufunction_retraining, sampling/COV_squared_exp
Design: ActiveLearningMonteCarloSamplerActiveLearningGPDecisionActiveLearningGaussianProcess
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: BiFidelityActiveLearningGPDecision
- 10.9.3The system shall be able to perform Monte Carlo sampling with bi-fidelity active learning with
- a single row in the sampler using the U learning function;
- multiple rows in the sampler using the U learning function;
Specification(s): sampling_bf/SingleProc_SingleRow_Ufunction, sampling_bf/MultipleProc_MultipleRow_Ufunction
Design: BiFidelityActiveLearningGPDecision
Issue(s): #23315
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: StatisticsReporter
- 10.9.4The system shall support the calculation of statistics using
- vectors of data from the postprocessing system and include
- confidence level intervals for statistics calculations.
Specification(s): vpp/statistics, vpp/ci
Design: StatisticsReporter
Issue(s): #16584
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.5The system shall support the calculation of statistics using
- vector of data from the reporting system; including
- confidence level intervals for statistics calculations
- and error if the supplied type is not supported.
Specification(s): reporters/statistics, reporters/ci, reporters/error
Design: StatisticsReporter
Issue(s): #16584
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): JSONDiffRunException
- 10.9.6The system shall support computing bias corrected and accelerated confidence level intervals of statistics
- of a vector of data
- of a vector of vector data
- using data that is replicated and
- using data that is distributed.
Specification(s): bca/basic, bca/vector, bca/replicated, bca/distributed
Design: StatisticsReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.7The system shall report an error when computing confidence level intervals when
- the confidence level intervals are omitted;
- the confidence level intervals are less than or equal to zero;
- the confidence level intervals are greater than or equal to one;
- input is not provided.
Specification(s): errors/no_ci_levels, errors/ci_levels_zero, errors/ci_levels_one, errors/no_input
Design: StatisticsReporter
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.9.8The system shall support computing percentile confidence level intervals of statistics
- of a vector of data
- of a vector of vector data
- using data that is replicated or
- distributed across processors.
Specification(s): percentile/basic, percentile/vector, percentile/replicated, percentile/distributed
Design: StatisticsReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.19The system shall be capable of computing the statistics of a data vector that
- is replicated and
- distributed.
Specification(s): tests/replicated, tests/distributed
Design: StatisticsReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.20The system shall be capable of computing the statistics from vector reporter values.
Specification(s): reporter
Design: StatisticsReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: DirectPerturbationReporter
- 10.9.9The system shall support the ability to compute direct perturbation-based sensitivity values with central differencing
- on distributed data sets;
- on root processor;
Specification(s): central_difference/distributed, central_difference/root
Design: DirectPerturbationReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.10The system shall support the ability to compute direct perturbation-based sensitivity values with forward differencing
- on distributed data sets;
- on root processor;
Specification(s): forward_difference/distributed, forward_difference/root
Design: DirectPerturbationReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.11The system shall support the ability to compute direct perturbation-based relative sensitivity values.
Specification(s): relative_sensitivity
Design: DirectPerturbationReporter
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: MappingReporter
- 10.9.12The system should be able to map the solutions in a snapshot container into a latent space.
Specification(s): from_parallelstorage
Design: MappingReporter
Issue(s): #23619
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.13The system should be able to extract and map variables in nonlinear system into a latent (low-dimensional) space.
Specification(s): from_solutions
Design: MappingReporter
Issue(s): #23619
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: MorrisReporter
- 10.9.14The system shall support the ability to compute Morris sensitivity values with
- distributed data;
- replicated data;
Specification(s): morris/distributed, morris/replicated
Design: MorrisReporter
Issue(s): #21191
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.15The system shall support the ability to compute Morris sensitivity values for vector-type data that is
- distributed;
- on root processor;
Specification(s): morris_vec/distributed, morris_vec/root
Design: MorrisReporter
Issue(s): #21191
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: ParallelSolutionStorage
- 10.9.16The system should be able to print serialized snapshots in a distributed fashion in a json format.
Specification(s): print-p2
Design: ParallelSolutionStorage
Issue(s): #23619
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: SobolReporter
- 10.9.17The system shall support the ability to compute first, second, and total-effect Sobol sensitivity indices with a reporter.
Specification(s): sobol
Design: SobolReporter
Issue(s): #15558
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.18The system shall support the ability to compute Sobol sensitivity indices for vector-type data.
Specification(s): sobol_vec
Design: SobolReporter
Issue(s): #15558
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: StochasticMatrix
- 10.9.21The system shall be able to ouptut samples from a sampler with
- serialized output;
- distributed output;
- specified column names;
Specification(s): sample_only/serial, sample_only/parallel, sample_only/names
Design: StochasticMatrix
Issue(s): #22827
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.9.22The system shall be able to output samples from a sampler along side stochastic simulation results.
Specification(s): simulation
Design: StochasticMatrix
Issue(s): #22827
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.9.23The system shall throw an error when attempting to output samples from a sampler when
- inputting the wrong number of column names;
- using a different sampler than the transfer's;
Specification(s): errors/wrong_num_names, errors/wrong_sampler
Design: StochasticMatrix
Issue(s): #22827
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: StochasticReporter
- 10.9.24The system shall support the ability to use transferred reporter data to
- compute statistics.
Specification(s): sr/stats
Design: StochasticReporter
Issue(s): #16166
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: Adaptive Importance Sampling (AIS)
- 10.10.1The system shall include an Adaptive Importance Sampling method for sampling distribution data.
Specification(s): ais
Design: Adaptive Importance Sampling (AIS)
Issue(s): #17664
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.10.2The system shall throw an error when
- the selected sampler type is not of an adaptive type when performing adaptive decision;
Specification(s): ais_errors/ais_error1
Design: Adaptive Importance Sampling (AIS)
Issue(s): #17664
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: Parallel Subset Simulation (PSS)
- 10.10.3The system shall include an Parallel Subset Simulation method for sampling distribution data.
Specification(s): pss1
Design: Parallel Subset Simulation (PSS)
Issue(s): #19398
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.10.4The system shall throw an error when
- the selected sampler type is not of an adaptive type.
Specification(s): pss_errors/pss_error1
Design: Parallel Subset Simulation (PSS)
Issue(s): #19398
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: Cartesian1D
- 10.10.5The system shall include the ability to create a 1D Cartesian sampling scheme.
Specification(s): test
Design: Cartesian1D
Issue(s): #24566
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.6The system shall throw an error when performing 1D Cartesian sampling if
- the specified grid does not form a triplet,
- the number of nominal values specified does not match the number of sample columns,
- the number of grid points is not an integer, or
- the number of grid points is negative.
Specification(s): errors/no_triplet, errors/wrong_num_values, errors/non_int, errors/negative
Design: Cartesian1D
Issue(s): #24566
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: CartesianProductSampler
- 10.10.7The system shall include the ability to create a Cartesian product sampling scheme.
Specification(s): test
Design: CartesianProductSampler
Issue(s): #14457
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: CSVSampler
- 10.10.8The CSV Sampler shall read samples from a CSV file while the sample data is
- distributed across processors,
- replicated across processors, and
- distributed across processors with the output also distributed.
Specification(s): csv_sampler/sampling_test, csv_sampler/sampling_test_global, csv_sampler/sampling_test_distributed
Design: CSVSampler
Issue(s): #16462
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.9The CSV Sampler shall sample from a CSV file when column indices are provided.
Specification(s): csv_sampler_indices
Design: CSVSampler
Issue(s): #16462
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.10The CSV Sampler shall sample from a CSV file when column names are provided.
Specification(s): csv_sampler_names
Design: CSVSampler
Issue(s): #16462
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: DirectPerturbationSampler
- 10.10.11The system shall be able to generate samples for a direct perturbation method with a central difference scheme:
- with replicated output;
- with parallel output;
Specification(s): central_difference/serial, central_difference/parallel
Design: DirectPerturbationSampler
Issue(s): #28671
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.12The system shall be able to generate samples for a direct perturbation method with a forward difference scheme:
- with replicated output;
- with parallel output;
Specification(s): forward_difference/serial, forward_difference/parallel
Design: DirectPerturbationSampler
Issue(s): #28671
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Sampler
- 10.10.14The system shall support the creation of data sampled from distribution during the initial setup of a simulation.
Specification(s): initial
Design: Sampler
Issue(s): #8065
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: InputMatrix
- 10.10.15The system shall be able to sample an input-defined matrix.
Specification(s): sampling_test
Design: InputMatrix
Issue(s): #22512
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: LatinHypercube
- 10.10.16The system shall support the ability to sample data using the Latin Hypercube method that can operate
- using global matrix,
- a local matrix,
- or row-by-row.
Specification(s): modes/global, modes/local, modes/row
Design: LatinHypercube
Issue(s): #14830
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.17The system shall support the ability to sample data using the Latin Hypercube method with more processors than rows that can operate
- using global matrix,
- a local matrix,
- or row-by-row.
Specification(s): more_procs/global, more_procs/local, more_procs/row
Design: LatinHypercube
Issue(s): #14830
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.18The system shall include a utility that visually displays results of plotting Latin Hypercube test.
Specification(s): visualize
Design: LatinHypercube
Issue(s): #14830
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- stochastic_tools: PMCMCBase (PMCMCBase)
- 10.10.19The system shall be be able to perform MCMC sampling when
- using the base MCMC class;
- using the base MCMC class with bounds specified;
- using the independent Metropolis-Hastings class;
- using the differential evolution sampler class;
- using the stretch sampler class;
- using the differential evolution sampler class with variance inferred;
Specification(s): mcmc_sampling/pmcmc_base, mcmc_sampling/pmcmc_base_bounds, mcmc_sampling/imh_5prop, mcmc_sampling/des_5prop, mcmc_sampling/ss_5prop, mcmc_sampling/des_5prop_var
Design: PMCMCBase (PMCMCBase)
Issue(s): #23837
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- 10.10.20The system shall throw an error when
- only the lower bounds specified;
- the specified bounds are not of the same size;
- the priors, bounds, and initial values are not of the same size;
- the proposal stds, initial values, and priors are not of the same size;
- the number of scales provided do not match the number of tunable params;
Specification(s): mcmc_sampling_errors/pmcmc_base_bounds1, mcmc_sampling_errors/pmcmc_base_bounds2, mcmc_sampling_errors/pmcmc_base_sizes, mcmc_sampling_errors/imh_std_sizes, mcmc_sampling_errors/des_scale_sizes
Design: PMCMCBase (PMCMCBase)
Issue(s): #23837
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: MonteCarlo
- 10.10.21The system shall include a Monte Carlo method for sampling distribution data including
- a uniform distribution distributed across processors,
- a uniform distribution replicated across processors,
- a uniform distribution distributed across processors (output is also distributed),
- a Wiebull distribution distributed across processors, and
- a Weibull distribution replicated across processors.
Specification(s): monte_carlo/uniform, monte_carlo/uniform_global, monte_carlo/uniform_distributed, monte_carlo/weibull, monte_carlo/weibull_global
Design: MonteCarlo
Issue(s): #8065
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 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
- stochastic_tools: Morris
- 10.10.22The system shall include a Morris trajectory method for sampling distribution data:
- with replicated output;
- with parallel output;
- with more processors than trajectories;
Specification(s): morris/serial, morris/parallel, morris/parallel_more
Design: Morris
Issue(s): #21191
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: NestedMonteCarlo
- 10.10.23The system shall include a nested Monte Carlo sampling scheme where sets of distributions are sampled as nested loops of rows
- in serial;
- in parallel;
Specification(s): nested_monte_carlo/serial, nested_monte_carlo/parallel
Design: NestedMonteCarlo
Issue(s): #20130
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.24The system shall report an error when the number of nested Monte Carlo loops does not match the number of sets of distributions.
Specification(s): error
Design: NestedMonteCarlo
Issue(s): #20130
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: Sobol
- 10.10.25The system shall include a SOBOL method for sampling distribution data:
- with the re-sampling matrix and
- without the re-sampling matrix.
Specification(s): sobol/resample, sobol/no_resample
Design: Sobol
Issue(s): #8065
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.10.26The system shall report an error if the SOBOL sampling method is setup with input sampling matrices
- with differing number of rows;
- with differing number of columns; and
- if the matrices are the same.
Specification(s): errors/row_mismatch, errors/col_mismatch, errors/same_matrix
Design: Sobol
Issue(s): #8065
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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: VectorPostprocessorSampler
- 10.10.27The system shall be able to perform stochastic sampling based on global vector data.
Specification(s): VectorPostprocessors_sampler
Design: VectorPostprocessorSampler
Issue(s): #24651
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: Surrogates System
- 10.11.1The system shall demonstrate cross validation
- for a 1-dimensional polynomial regression surrogate with Real
- and std::vector<Real> response types.
- and throw an error if a SurrogateModel is not provided.
Specification(s): cross_validate/cv_real, cross_validate/cv_vector_real, cross_validate/surr-error
Design: Surrogates System
Issue(s): #21399
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): JSONDiffRunException
- 10.11.13The system shall support the creation of surrogate models that can be
- trained with replicated stochastic data and
- evaluated separately (with replicated data);
- trained with distributed stochastic data and
- evaluated separately (with distributed data);
- trained with distributed stochastic data;
- evaluated separately with a different number of processors;
- and be trained and evaluated in memory with a single input file.
Specification(s): surrogate/train, surrogate/evaluate, surrogate/train_distributed, surrogate/evaluate_distributed, surrogate/train_three_ranks, surrogate/evaluate_two_ranks, surrogate/evaluate_and_train
Design: Surrogates System
Issue(s): #14875
Collection(s): FUNCTIONAL
Type(s): JSONDiffCheckFiles
- stochastic_tools: GaussianProcessTrainer
- 10.11.2The system shall demonstrate a gaussian process surrogate by
- training a Gaussian process model and
- evaluating the trained Gaussian process model
Specification(s): store_load/GP_training, store_load/GP_testing
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.3The system shall be able to produce a Gaussian process surrogate with
- a squared exponential kernel;
- an exponential kernel;
- Matern half integer kernel;
Specification(s): kernels/GP_squared_exponential, kernels/GP_exponential, kernels/GP_Matern_half_int
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.4The system shall be be able to tune hyperparameters of a Gaussian process surrogate with
- a squared exponential kernel using Adam;
- an exponential kernel using Adam;
- a Matern half integer kernel using Adam;
- a Matern half integer kernel using Adam with mini-batch sampling;
Specification(s): tuning/GP_squared_exponential_tuned_adam, tuning/GP_exponential_tuned_adam, tuning/GP_Matern_half_int_tuned_adam, tuning/GP_Matern_half_int_tuned_adam_minibatch
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.5The system shall throw an error when
- the batch size is greater than the training data set size for Adam optimization.
Specification(s): errors/optimization_adam_batch_size
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.14The system shall be able to train a multi-output Gaussian process using Linear Model of Coregionalization
- without tuning the hyperparameters.
- with tuning the hyperparameters.
- and load the trained surrogate from a file.
Specification(s): lmc/untuned, lmc/tuned, lmc/load
Design: GaussianProcessTrainerLMCGaussianProcessSurrogate
Issue(s): #25438
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: GaussianProcess
- 10.11.2The system shall demonstrate a gaussian process surrogate by
- training a Gaussian process model and
- evaluating the trained Gaussian process model
Specification(s): store_load/GP_training, store_load/GP_testing
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.3The system shall be able to produce a Gaussian process surrogate with
- a squared exponential kernel;
- an exponential kernel;
- Matern half integer kernel;
Specification(s): kernels/GP_squared_exponential, kernels/GP_exponential, kernels/GP_Matern_half_int
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.4The system shall be be able to tune hyperparameters of a Gaussian process surrogate with
- a squared exponential kernel using Adam;
- an exponential kernel using Adam;
- a Matern half integer kernel using Adam;
- a Matern half integer kernel using Adam with mini-batch sampling;
Specification(s): tuning/GP_squared_exponential_tuned_adam, tuning/GP_exponential_tuned_adam, tuning/GP_Matern_half_int_tuned_adam, tuning/GP_Matern_half_int_tuned_adam_minibatch
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.5The system shall throw an error when
- the batch size is greater than the training data set size for Adam optimization.
Specification(s): errors/optimization_adam_batch_size
Design: GaussianProcessTrainerGaussianProcess
Issue(s): #15482
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- stochastic_tools: LibtorchANNTrainer
- 10.11.6The system shall be able to train and evaluate a libtorch-based neural network in the same input file.
Specification(s): train_and_evaluate
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.7The system shall be able to train a libtorch-based neural network.
Specification(s): train
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.11.8The system shall be able to evaluate a previously trained, libtorch-based neural network.
Specification(s): evaluate
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.9The system shall be able to retrain a pretrained and saved libtorch-based neural network.
Specification(s): retrain
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.10The system shall be able to train a libtorch-based neural network using a relative tolerance instead of fixed epoch number.
Specification(s): train-with-rel-tol
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.11.11The system shall be able to train a libtorch-based neural network with standardized input and output parameters.
Specification(s): train-standardized
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.11.12The system shall be able to evaluate a previously trained, libtorch-based neural network with standardized input and output parameters.
Specification(s): evaluate-standardized
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: LibtorchANNSurrogate
- 10.11.6The system shall be able to train and evaluate a libtorch-based neural network in the same input file.
Specification(s): train_and_evaluate
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.7The system shall be able to train a libtorch-based neural network.
Specification(s): train
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.11.8The system shall be able to evaluate a previously trained, libtorch-based neural network.
Specification(s): evaluate
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.9The system shall be able to retrain a pretrained and saved libtorch-based neural network.
Specification(s): retrain
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.11.10The system shall be able to train a libtorch-based neural network using a relative tolerance instead of fixed epoch number.
Specification(s): train-with-rel-tol
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.11.11The system shall be able to train a libtorch-based neural network with standardized input and output parameters.
Specification(s): train-standardized
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- 10.11.12The system shall be able to evaluate a previously trained, libtorch-based neural network with standardized input and output parameters.
Specification(s): evaluate-standardized
Design: LibtorchANNTrainerLibtorchANNSurrogate
Issue(s): #19571
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: LMC
- 10.11.14The system shall be able to train a multi-output Gaussian process using Linear Model of Coregionalization
- without tuning the hyperparameters.
- with tuning the hyperparameters.
- and load the trained surrogate from a file.
Specification(s): lmc/untuned, lmc/tuned, lmc/load
Design: GaussianProcessTrainerLMCGaussianProcessSurrogate
Issue(s): #25438
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: GaussianProcessSurrogate
- 10.11.14The system shall be able to train a multi-output Gaussian process using Linear Model of Coregionalization
- without tuning the hyperparameters.
- with tuning the hyperparameters.
- and load the trained surrogate from a file.
Specification(s): lmc/untuned, lmc/tuned, lmc/load
Design: GaussianProcessTrainerLMCGaussianProcessSurrogate
Issue(s): #25438
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: NearestPointTrainer
- 10.11.15The system shall create a surrogate that evaluates the closes point from training data by
- training then
- evaluating,
- training and loading, and
- using explictly specified predictors.
Specification(s): nearest_point/train, nearest_point/load, nearest_point/train_and_load, nearest_point/predictors
Design: NearestPointTrainerNearestPointSurrogate
Issue(s): #14933
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.16The system shall be able to create nearest point surrogates with vector-type response.
Specification(s): vector
Design: NearestPointTrainerNearestPointSurrogate
Issue(s): #14933
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: NearestPointSurrogate
- 10.11.15The system shall create a surrogate that evaluates the closes point from training data by
- training then
- evaluating,
- training and loading, and
- using explictly specified predictors.
Specification(s): nearest_point/train, nearest_point/load, nearest_point/train_and_load, nearest_point/predictors
Design: NearestPointTrainerNearestPointSurrogate
Issue(s): #14933
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.16The system shall be able to create nearest point surrogates with vector-type response.
Specification(s): vector
Design: NearestPointTrainerNearestPointSurrogate
Issue(s): #14933
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: PODReducedBasisTrainer
- 10.11.17The system shall demonstrate a POD-RB surrogate (with Dirichlet BC) by
- training using known 4D data
- and then evaluating new samples separately for new data.
Specification(s): pod_boundary/train, pod_boundary/load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.20PODReducedBasisTrainer shall throw an error when
- the variable names cannot be found on sub-applications,
- the number of energy limits and variable names do not match,
- the number of tag names and tag types do not match,
- the Dirichlet tag types do not exist,
- and the residual generation is called before having the basis vectors.
Specification(s): trainer/var_names, trainer/en_limits, trainer/tag_types, trainer/dir_tag_names, trainer/wrong_res_transfer
Design: PODReducedBasisTrainerPODResidualTransferPODSamplerSolutionTransfer
Issue(s): #15538
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.22The system shall demonstrate a POD-RB surrogate (without Dirichlet BC) by
- training using known 3D data,
- saving the eigenvalues,
- then evaluating new samples separately for new data,
- and doing both together in one input file.
Specification(s): pod_internal/train, pod_internal/save_ev, pod_internal/load, pod_internal/train_and_load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- stochastic_tools: PODReducedBasisSurrogate
- 10.11.17The system shall demonstrate a POD-RB surrogate (with Dirichlet BC) by
- training using known 4D data
- and then evaluating new samples separately for new data.
Specification(s): pod_boundary/train, pod_boundary/load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.21PODReducedBasisSurrogate shall throw an error when
- the number of inputs in 'change_rank' and 'new_ranks' is not the same.
Specification(s): surrogate/var_name
Design: PODReducedBasisSurrogate
Issue(s): #15538
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.22The system shall demonstrate a POD-RB surrogate (without Dirichlet BC) by
- training using known 3D data,
- saving the eigenvalues,
- then evaluating new samples separately for new data,
- and doing both together in one input file.
Specification(s): pod_internal/train, pod_internal/save_ev, pod_internal/load, pod_internal/train_and_load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- stochastic_tools: PODFullSolveMultiApp
- 10.11.17The system shall demonstrate a POD-RB surrogate (with Dirichlet BC) by
- training using known 4D data
- and then evaluating new samples separately for new data.
Specification(s): pod_boundary/train, pod_boundary/load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.18PODFullSolveMultiapp shall throw an error when
- the trainer object cannot be found.
- the trainer is run with more than one processors per subapp.
- the number of samples is lower than the number of processors.
Specification(s): multiapp/trainer_name, multiapp/max_procs_per_app, multiapp/more_procs_than_samples
Design: PODFullSolveMultiApp
Issue(s): #15538
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.22The system shall demonstrate a POD-RB surrogate (without Dirichlet BC) by
- training using known 3D data,
- saving the eigenvalues,
- then evaluating new samples separately for new data,
- and doing both together in one input file.
Specification(s): pod_internal/train, pod_internal/save_ev, pod_internal/load, pod_internal/train_and_load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- stochastic_tools: PODSamplerSolutionTransfer
- 10.11.17The system shall demonstrate a POD-RB surrogate (with Dirichlet BC) by
- training using known 4D data
- and then evaluating new samples separately for new data.
Specification(s): pod_boundary/train, pod_boundary/load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.19PODSamplerSolutionTransfer shall throw an error when
- the trainer object cannot be found.
Specification(s): solution_transfer/trainer_name
Design: PODSamplerSolutionTransfer
Issue(s): #15538
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.20PODReducedBasisTrainer shall throw an error when
- the variable names cannot be found on sub-applications,
- the number of energy limits and variable names do not match,
- the number of tag names and tag types do not match,
- the Dirichlet tag types do not exist,
- and the residual generation is called before having the basis vectors.
Specification(s): trainer/var_names, trainer/en_limits, trainer/tag_types, trainer/dir_tag_names, trainer/wrong_res_transfer
Design: PODReducedBasisTrainerPODResidualTransferPODSamplerSolutionTransfer
Issue(s): #15538
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.22The system shall demonstrate a POD-RB surrogate (without Dirichlet BC) by
- training using known 3D data,
- saving the eigenvalues,
- then evaluating new samples separately for new data,
- and doing both together in one input file.
Specification(s): pod_internal/train, pod_internal/save_ev, pod_internal/load, pod_internal/train_and_load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- stochastic_tools: PODResidualTransfer
- 10.11.17The system shall demonstrate a POD-RB surrogate (with Dirichlet BC) by
- training using known 4D data
- and then evaluating new samples separately for new data.
Specification(s): pod_boundary/train, pod_boundary/load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.20PODReducedBasisTrainer shall throw an error when
- the variable names cannot be found on sub-applications,
- the number of energy limits and variable names do not match,
- the number of tag names and tag types do not match,
- the Dirichlet tag types do not exist,
- and the residual generation is called before having the basis vectors.
Specification(s): trainer/var_names, trainer/en_limits, trainer/tag_types, trainer/dir_tag_names, trainer/wrong_res_transfer
Design: PODReducedBasisTrainerPODResidualTransferPODSamplerSolutionTransfer
Issue(s): #15538
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.22The system shall demonstrate a POD-RB surrogate (without Dirichlet BC) by
- training using known 3D data,
- saving the eigenvalues,
- then evaluating new samples separately for new data,
- and doing both together in one input file.
Specification(s): pod_internal/train, pod_internal/save_ev, pod_internal/load, pod_internal/train_and_load
Design: PODReducedBasisTrainerPODReducedBasisSurrogatePODFullSolveMultiAppPODSamplerSolutionTransferPODResidualTransfer
Issue(s): #15538
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- stochastic_tools: PolynomialChaos
- 10.11.23The system shall compute polynomial chaos coefficents using
- MonteCarlo sampler with Uniform distribution,
- MonteCarlo sampler with Uniform distribution using least-squares regression,
- MonteCarlo sampler with Uniform distribution using Ridge regression,
- Quadrature sampler with Uniform distribution, and
- Quadrature sampler with Normal distribution.
Specification(s): coefficients/monte_carlo_integration, coefficients/monte_carlo_ols, coefficients/monte_carlo_ridge, coefficients/gauss_legendre_integration, coefficients/gauss_hermite
Design: PolynomialChaos
Issue(s): #14710
Collection(s): FUNCTIONAL
Type(s): JSONDiffCSVDiff
- stochastic_tools: PolynomialChaosReporter
- 10.11.24The system shall compute relevant statistics with polynomial chaos expansion including
- statistical moments with Legendre polynomials,
- statistical moments with Hermite polynomials,
- sampler and user defined local sensitivities with Legendre polynomials,
- sampler and user defined local sensitivities with Hermite polynomials, and
- Sobol sensitivity indices.
Specification(s): statistics/legendre_moment_calculation, statistics/hermite_moment_calculation, statistics/legendre_local_sensitivity, statistics/hermite_local_sensitivity, statistics/sobol
Design: PolynomialChaosReporter
Issue(s): #14836
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: QuadratureSampler
- 10.11.25The system shall include the ability to use sparse grid methods to evaluate polynomial chaos expansion coefficients including
- Smolyak and
- Clenshaw-Curtis methods.
Specification(s): sparse/smolyak_sobol, sparse/clenshaw_curtis_sobol
Design: QuadratureSampler
Issue(s): #14833
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: PolynomialRegressionTrainer
- 10.11.26The system shall throw an error when
- the number of samples does not match the number of results.
Specification(s): errors/wrong_sampler
Design: PolynomialRegressionTrainer
Issue(s): #15361
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 10.11.27The system shall demonstrate a polnomial regression surrogate by
- training using known 3D data
- and then evaluating new samples separately for the same data
- and then doing both on another 1D case.
Specification(s): poly_reg/train, poly_reg/load, poly_reg/train_and_load
Design: PolynomialRegressionTrainerPolynomialRegressionSurrogate
Issue(s): #15361
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.28The system shall be able to create polynomial regression surrogate with vector-type response.
Specification(s): vector
Design: PolynomialRegressionTrainerPolynomialRegressionSurrogate
Issue(s): #15361
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: PolynomialRegressionSurrogate
- 10.11.27The system shall demonstrate a polnomial regression surrogate by
- training using known 3D data
- and then evaluating new samples separately for the same data
- and then doing both on another 1D case.
Specification(s): poly_reg/train, poly_reg/load, poly_reg/train_and_load
Design: PolynomialRegressionTrainerPolynomialRegressionSurrogate
Issue(s): #15361
Collection(s): FUNCTIONAL
Type(s): CheckFilesCSVDiff
- 10.11.28The system shall be able to create polynomial regression surrogate with vector-type response.
Specification(s): vector
Design: PolynomialRegressionTrainerPolynomialRegressionSurrogate
Issue(s): #15361
Collection(s): FUNCTIONAL
Type(s): JSONDiff
- stochastic_tools: LibtorchNeuralNetControlTransfer
- 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
- stochastic_tools: StochasticResults
- 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.15.9The system shall support the collection of stochastic data from multiple sub-applications.
Specification(s): multiple
Design: StochasticResults
Issue(s): #14414
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.15.17The system shall support the collection of stochastic data that is
- replicated on all processors and
- distributed across many.
Specification(s): parallel_type/replicated, parallel_type/distributed
Design: StochasticResults
Issue(s): #14410
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.15.18The system shall support the labeling of collection of stochastic data
- with custom prefix and
- without a prefix.
Specification(s): prefix/custom, prefix/none
Design: StochasticResults
Issue(s): #14410
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.15.19The system shall support the collection of stochastic data that
- can be appended into a single data set or
- or contain a single file per timestep.
Specification(s): data/complete, data/time
Design: StochasticResults
Issue(s): #14412
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: SamplerReporterTransfer
- 10.12.14The system shall support the ability to transfer reporter data from each sub-application for a set of stochastic data
- in normal mode,
- in batch mode,
- with distributed output,
- with more processors than samples,
- 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
- stochastic_tools: SerializedSolutionTransfer
- 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
- batch-restore mode,
- batch-reset mode, and
- 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
- batch-restore mode,
- batch-reset mode, and
- 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
- stochastic_tools: InverseMapping
- 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
- coordinates determined by a surrogate model.
- 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
- 10.13.3The system shall be bale to reconstruct linearly parameterized functions exactly with a few spatial modes using
- 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
- stochastic_tools: PODMapping
- 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
- stochastic_tools: SamplerData
- 10.15.10The system shall be able to ouptut samples from a sampler using the sampling method
- get global matrix;
- get local matrix;
- get next local row;
Specification(s): get_sample_types/get_global_samples, get_sample_types/get_local_samples, get_sample_types/get_next_local_row
Design: SamplerData
Issue(s): #9402
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.15.11The system shall be able to ouptut distributed samples from a sampler using the sampling method
- get local matrix;
- get next local row;
Specification(s): parallel/get_local_samples, parallel/get_next_local_row
Design: SamplerData
Issue(s): #13906
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.15.12The system shall be able to ouptut samples from a sampler with
- one column;
- multiple columns;
- large number of columns;
Specification(s): cols/one, cols/multi, cols/lots
Design: SamplerData
Issue(s): #20576
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- stochastic_tools: SobolStatistics
- 10.15.13The system shall support the ability to compute first, second, and total-effect Sobol sensitivity indices.
Specification(s): sobol
Design: SobolStatistics
Issue(s): #14784
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 10.15.14The system shall support the ability to compute confidence intervals on Sobol sensitivity indices.
Specification(s): sobol_bootstrap
Design: SobolStatistics
Issue(s): #14784
Collection(s): FUNCTIONAL
Type(s): CSVDiff