Framework Failure Analysis Report

Introduction

MOOSE and MOOSE-based applications are designed to operate as a library of functionality. While each library may be tailored for solving a certain set of equations, the ability to create arbitrary simulations exists. This flexibility exists by design within the framework, modules, and applications. With respect to performing failure analysis, the flexibility is detrimental since there lacks a well-defined problem to assess. To minimize the possibility of failure for a simulation, various automated methods exist for developers. This document discusses these features and includes a list of requirements associated with software failure analysis.

References

No citations exist within this document.

Failure Analysis

MOOSE has three primary methods for handling simulation failures that range from input errors to simulation convergence problems. These potential failures and the associated handling of the failure are ubiquitous across MOOSE and MOOSE-based applications. The next three sections detail the handling of these common sources of failures.

  1. Input file syntax failure,

  2. Input parameter errors, and

  3. Convergence failure.

To complement the automatic handling of these three failure mechanisms the MOOSE testing system includes a mechanism for creating tests to verify that errors are captured and reported correctly. This testing method is detailed in the Failure Testing section.

Input File Failure

The input file parsing (see Parser) system automatically handles syntax mistakes and reports them as errors. For example, consider the following input file that contains a missing closing bracket.

[Mesh]
  file = file.e
[]

[Executioner]
  type = Steady
(contrib/moose/test/tests/parser/hit_error/hit_error.i)

If this input file is executed with the application, it will automatically report the error and associated line number where it occurred as follows.

hit_error.i:5: missing closing '[]' for section

Input Parameter Errors

The input parameter system (see InputParameters) is the second step in input file parsing. The system details the available inputs for an object. The system allows for parameters to be marked as required, provide a default, or check for correct range to name a few. For example, consider the validParams function below that defines a required parameter "D" that must be supplied in an input file.

InputParameters
CoeffParamDiffusion::validParams()
{
  InputParameters params = Diffusion::validParams();
  params.addRequiredParam<Real>("D", "The diffusivity coefficient.");
  return params;
}
(contrib/moose/test/src/kernels/CoeffParamDiffusion.C)

If an input file does not include this parameter, as shown below then it will provide an error with details regarding the missing parameter.

[Kernels]
  [diffusion]
    type = CoeffParamDiffusion
    variable = u
  []
[]
(contrib/moose/test/tests/utils/param_error/param_error.i)
param_error.i:10: missing required parameter 'Kernels/diffusion/D'
	Doc String: "The diffusivity coefficient."

Convergence Failure

MOOSE includes automatic methods to handle convergence failures during the numeric solve. If those attempts fail, it will exit with an error indicating of the failed solve and the reason. By default if a transient simulation fails to solve a time step, the timestep will automatically be cut and the solve re-attempted. This cutback will continue until the solve converges or if the minimum allowed timestep is reached.

For example, the following input when executed will demonstrate the behavior. This input file includes a custom TimeStepper block, but by default a similar behavior exists.

[Executioner]
  type = Transient
  num_steps = 10
  solve_type = PJFNK
  petsc_options_iname = '-pc_type -pc_hypre_type'
  petsc_options_value = 'hypre boomeramg'

  [./TimeStepper]
    type = ConstantDT
    dt = 0.1
    cutback_factor_at_failure = 0.8
  [../]
[]
(contrib/moose/test/tests/time_steppers/cutback_factor_at_failure/constant_dt_cutback.i)

When executed this input file at time step 3 fails to converge, the timestep ("dt") is cut by the supplied factor and the solve is re-attempted. In both the converged and non-converged iterations the reason for the resulting solve is displayed.

Time Step 3, time = 0.3, dt = 0.1
 0 Nonlinear |R| = 7.103698e-02
      0 Linear |R| = 7.103698e-02
      1 Linear |R| = 1.154171e-03
      2 Linear |R| = 4.325671e-06
      3 Linear |R| = 2.434939e-08
  Linear solve converged due to CONVERGED_RTOL iterations 3
 1 Nonlinear |R| = 2.429061e-08
      0 Linear |R| = 2.429061e-08
      1 Linear |R| = 2.035627e-10
      2 Linear |R| = 9.270880e-13
      3 Linear |R| = 6.368586e-15
  Linear solve converged due to CONVERGED_RTOL iterations 3
 2 Nonlinear |R| = 6.368769e-15
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2
 Solve Did NOT Converge!
Aborting as solve did not converge

Time Step 3, time = 0.28, dt = 0.08
 0 Nonlinear |R| = 7.103698e-02
      0 Linear |R| = 7.103698e-02
      1 Linear |R| = 8.875771e-04
      2 Linear |R| = 3.163939e-06
      3 Linear |R| = 1.554863e-08
  Linear solve converged due to CONVERGED_RTOL iterations 3
 1 Nonlinear |R| = 1.565086e-08
      0 Linear |R| = 1.565086e-08
      1 Linear |R| = 1.120313e-10
      2 Linear |R| = 4.275206e-13
      3 Linear |R| = 2.854434e-15
  Linear solve converged due to CONVERGED_RTOL iterations 3
 2 Nonlinear |R| = 2.874867e-15
Nonlinear solve converged due to CONVERGED_FNORM_RELATIVE iterations 2
 Solve Converged!

Failure Testing

In general, failures are tested using a test type of RunException (see Framework Software Test Plan). An example of such as test is provided below, which is a test that exists for the previous input parser example in Input Parameter Errors. By default all RunException tests are listed below in the list in of requirements (Failure Analysis Requirements) that comprise failure analysis.

[Tests]
  issues = '#16410'
  design = utils/InputParameters.md
  [error]
    type = RunException
    input = param_error.i
    expect_err = "param_error.i:10: missing required parameter 'Kernels/diffusion/D'"

    requirement = "The system shall automatically report input errors when a required parameter is not specified."
  []
[]
(contrib/moose/test/tests/utils/param_error/tests)

Failure Analysis Requirements

  • framework: Actions
  • 2.2.2The system shall report an error if the supplied order of scalar auxiliary variable is of an unknown order.

    Specification(s): invalid_order_high

    Design: AuxVariables System

    Issue(s): #960#2294#4668

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Adaptivity
  • 2.3.2The system shall emit a warning if the block restriction of the marker is larger than that of its indicator.

    Specification(s): mismatch

    Design: Adaptivity System

    Issue(s): #14531

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Bounds
  • 2.8.5The system shall
    1. emit a warning if a variational inequalities (VI) solver is not found when the bounds system is used.
    2. error if an unsupported variable type is provided to the constant bounds kernel
    3. error if the type of the dummy auxiliary variable does not match the bounded variable.

    Specification(s): exceptions/solver, exceptions/bounded_variable_type, exceptions/mismatch_dummy

    Design: ConstantBounds

    Issue(s): #14946

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunAppRunException

  • framework: Controls
  • 2.10.8The Control system shall error if an attempt to alter a non-controllable parameter is performed.

    Specification(s): non_controllable_error

    Design: Controls System

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.10The Control system shall error if an unknown parameter is supplied for control.

    Specification(s): no_param_found

    Design: Controls System

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.11The Control system shall error if a thread id greater than the number of threads available is supplied when retrieving a Control object.

    Specification(s): tid_warehouse_error

    Design: Controls System

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.12The Control system shall error if an attempt is made to disable the Executioner.

    Specification(s): disable_executioner

    Design: Controls System

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.13The Control system shall error if an invalid control name is supplied to the Control dependency resolution procedure.

    Specification(s): non_existing_dependency

    Design: Controls System

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.17The system shall forbid specifying parameters when reading a neural network from a torchscript file.

    Specification(s): invalid-torchscript-error

    Design: LibtorchNeuralNetControl

    Issue(s): #19571

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.27The MOOSE control system shall be capable of restricting parameters to be controlled for specific execution flags.

    Specification(s): error

    Design: Controls System

    Issue(s): #12576

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.46The TimePeriod object shall error when used with a steady state problem.

    Specification(s): steady_error

    Design: TimePeriod

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.47The TimePeriod object shall error when the start and end time parameters are not the same length.

    Specification(s): start_end_size_mismatch

    Design: TimePeriod

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.48The TimePeriod object shall error when start and end time parameters differ in length than the supplied object list.

    Specification(s): time_disable_size_mismatch

    Design: TimePeriod

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.49The TimePeriod object shall error when a list of objects to control is omitted.

    Specification(s): enable_disable_not_set

    Design: TimePeriod

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.50The TimePeriod object shall error when start time is greater than the end time.

    Specification(s): start_greater_than_end_error

    Design: TimePeriod

    Issue(s): #5676

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.64The system shall report a reasonable error when interacting with the REST API when
    1. setting a controllable parameter that does not exist
    2. getting a postprocessor that does not exist
    3. setting a controllable parameter whose type is not supported
    4. setting a controllable parameter with an incompatible JSON type
    5. setting a controllable parameter with a type that does not match

    Specification(s): errors/set_controllable_no_exist, errors/postprocessor_no_exist, errors/set_controllable_unregistered_type, errors/set_controllable_bad_convert_json, errors/set_controllable_vector_non_array

    Design: Controls SystemWebServerControl

    Issue(s): #23359#27909

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.10.65The system that supports controlling parameters via a REST API should report a reasonable error when
    1. a parameter was not provided that specifies where the server should listen
    2. both a port and a file were specified to listen on

    Specification(s): param_errors/no_port_and_socket, param_errors/port_and_socket

    Design: Controls SystemWebServerControl

    Issue(s): #23359#27909

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Dampers
  • 2.12.1The system shall include the ability to reduce the change in nonlinear residual based on a maximum value on elements.

    Specification(s): bounding_value_max

    Design: BoundingValueElementDamper

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.2The system shall include the ability to reduce the change in nonlinear residual based on a minimum value on elements.

    Specification(s): bounding_value_min

    Design: BoundingValueElementDamper

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.3The system shall include the ability to reduce the change in nonlinear residual based on a maximum value on nodes.

    Specification(s): bounding_value_max

    Design: BoundingValueNodalDamper

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.4The system shall include the ability to reduce the change in nonlinear residual based on a minimum value on nodes.

    Specification(s): bounding_value_min

    Design: BoundingValueNodalDamper

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.6The Damper system shall use the minimum of NodalDamper and ElementDamper, when the later computes the minimum.

    Specification(s): interacting_node_elem1

    Design: BoundingValueElementDamper

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.7The Damper system shall use the minimum of NodalDamper and ElementDamper, when the former computes the minimum.

    Specification(s): interacting_node_elem2

    Design: BoundingValueElementDamper

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.10The system shall give an informative error if user code requests a variable from the warehouse with a bad key.

    Specification(s): bad_key

    Design: MaxIncrement

    Issue(s): 5509fd360a4ca128a642b1c6603fa3f5205c05d8

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.12.13The Damper system shall error if the damping value is below a minimum.

    Specification(s): min_general_damping

    Design: Dampers System

    Issue(s): #7856

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Dgkernels
  • 2.13.18The system shall report an error if the triad of dg kernels, adaptivity, and stateful properties are used together.

    Specification(s): error_stateful_dg_adaptivity

    Design: DGKernels System

    Issue(s): #10977

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Executioners
  • 2.15.24The system shall provide informative warnings when
    1. fixed_point_rel_tol is set by the user and disable_fixed_point_residual_norm_check is set to true.
    2. fixed_point_abs_tol is set by the user and disable_fixed_point_residual_norm_check is set to true.
    3. fixed_point_force_norms is set by the user and disable_fixed_point_residual_norm_check is set to true.

    Specification(s): warnings/rel_tol, warnings/abs_tol, warnings/force_norms

    Design: TaggingInterface

    Issue(s): #26285

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Executors
  • 2.16.2The system shall report an error if the Executor system contains an infinite cycle

    Specification(s): cycle

    Design: Executor

    Issue(s): #5229#18180

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.16.3The system shall only have one root node in the Executor tree

    Specification(s): multi_root

    Design: Executor

    Issue(s): #5229#18180

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Functions
  • 2.18.11The Material system shall error out if the number of functions supplied does not match the size of the vector function material properties.

    Specification(s): vector_error

    Design: GenericFunctionVectorMaterial

    Issue(s): #18372

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.13The system shall include the ability to create functions from image files that errors if
    1. an unsupported file type is provided;
    2. if an invalid component value is supplied;
    3. if an invalid filename is provided; and
    4. the system is not configured with the correct dependencies.

    Specification(s): errors/file_suffix, errors/component, errors/invalid_file, errors/no_vtk

    Design: ImageFunctionImageMesh

    Issue(s): #5927

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.32The LinearCombinationFunction shall report an error if the parameters listing the functions differs in size than the list of coefficients.

    Specification(s): except1

    Design: LinearCombinationFunction

    Issue(s): #4828

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.43The ParsedFunction object shall fail with a human readable error if a vals entry is supplied that is neither a valid postprocessor, scalar variable, function, or real number.

    Specification(s): vals_error

    Design: ParsedFunction

    Issue(s): #14169

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.44The system should error if a field variable is passed into a parsed function object, as this capability is currently not supported.

    Specification(s): nl_vars

    Design: ParsedFunction

    Issue(s): #15523

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.49The system shall report an error if
    1. parameters meant for loading data from file are passed for a function loading data differently,
    2. or if parameters meant for loading data from JSON are passed for a function loading data differently.

    Specification(s): errors/param_meant_for_file, errors/param_meant_for_json

    Design: PiecewiseConstant

    Issue(s): #2272#25058

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.51The system shall report an error if
    1. if the CSV reader object and the function expect the CSV data to be ordered differently
    2. if the desired column number in the CSV file is higher than the number of columns in the file
    3. if the data saught exceeds the row number in the CSV file
    4. if the number of blocks specified to a CSV reader reading block-data is 0
    5. if the number of nearest-neighbor regions specified to a CSV reader reading nearest-neighbor-region-data is 0

    Specification(s): errors/read_type, errors/num_columns, errors/num_rows, errors/zero_blocks, errors/zero_voronoi

    Design: PiecewiseConstantFromCSV

    Issue(s): #19109

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.52The system shall issue a warning if
    1. if the desired column number in the CSV file is known to be a column holding point coordinates
    2. if the data file contains more points/rows than the reader needs

    Specification(s): warnings/num_columns, warnings/too_much_data_in_file

    Design: PiecewiseConstantFromCSV

    Issue(s): #19109

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.57The PiecewiseMultilinear object will error if the supplied file fails to open.

    Specification(s): except1

    Design: PiecewiseMultilinear

    Issue(s): #2476

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.58The PiecewiseMultiInterpolation object shall error if the supplied data is not monotonically increasing.

    Specification(s): except2

    Design: PiecewiseMultilinear

    Issue(s): #2476

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.59The PiecewiseMultiInterpolation object shall error if the number of requested functions differ than the number available from the file.

    Specification(s): except3

    Design: PiecewiseMultilinear

    Issue(s): #2476

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.60The PiecewiseMultiInterpolation errors if the axes supplied are not independent.

    Specification(s): except4

    Design: PiecewiseMultilinear

    Issue(s): #2476

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.61The PiecewiseMultilinear shall error if the axis lines are not located in the supplied data.

    Specification(s): except5

    Design: PiecewiseMultilinear

    Issue(s): #2476

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.18.79The SolutionFunction object shall error if a variable that does not exist is requested.

    Specification(s): nonexistent_var_err

    Design: SolutionFunction

    Issue(s): fc620eb2a4580a2320e03e6e89ad092dd2f4123b

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Fvbcs
  • 2.21.5The system shall report an error if a finite volume flux boundary condition, in this case a finite volume Neumann boundary condition, is used inside the domain.

    Specification(s): fvbcs_internal

    Design: FVNeumannBC

    Issue(s): #16882

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.21.6The system shall report an error if a finite volume flux boundary condition is used on a mesh element face that is not connected to an element with the corresponding finite volume variable.

    Specification(s): fvbcs_disconnected_from_variable

    Design: FVNeumannBC

    Issue(s): #16882

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Fviks
  • 2.23.5The system shall report an error if a user specified variable on the 1st side of an interface does not actually exist on the 1st side.

    Specification(s): run_except1

    Design: FVInterfaceKernels System

    Issue(s): #17087

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.23.6The system shall report an error if a user specified variable on the 2nd side of an interface does not actually exist on the 2nd side.

    Specification(s): run_except2

    Design: FVInterfaceKernels System

    Issue(s): #17087

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.23.7The system shall report an error if a user does not specify a variable on the 2nd side of an interface, leading the system to assume that the variable on the 1st side of the interface should be used on the 2nd side, and the variable on the 1st side does not exist on the 2nd side.

    Specification(s): run_except3

    Design: FVInterfaceKernels System

    Issue(s): #17087

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Geomsearch
  • 2.25.56The system shall report an error in the penetration locator system if penetration is not detected.

    Specification(s): never_warning

    Design: GapValueAuxMesh System

    Issue(s): #3901

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.25.52

  • framework: Globalparams
  • 2.26.2The system shall report an error if a private / suppressed parameter is set in the input file.

    Specification(s): test_suppress_ignore

    Design: Parser

    Issue(s): #437#8761

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Ics
  • 2.28.2The system shall report an error if the wrong number of components are provided in a constant initial condition for array variables.

    Specification(s): size_error

    Design: ArrayConstantIC

    Issue(s): #6881

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.4The system shall report an error if the wrong number of components are provided in a functionalized initial condition for array variables.

    Specification(s): size_error

    Design: ArrayFunctionIC

    Issue(s): #6881

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.8The system shall report an error when multiple initial conditions are applied to the same boundary.

    Specification(s): ics_on_same_boundary

    Design: ICs System

    Issue(s): #6580

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.9The system shall report an error when multiple initial conditions are applied to the same subdomain.

    Specification(s): ics_on_same_block

    Design: ICs System

    Issue(s): #6580

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.10The system shall report an error when a global initial conditions overlap on the same variable.

    Specification(s): ics_on_same_block_both_global

    Design: ICs System

    Issue(s): #6580

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.11The system shall report an error when a global and subdomain restricted initial conditions overlap on the same variable.

    Specification(s): ics_on_same_block_first_global

    Design: ICs System

    Issue(s): #6580

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.32The system shall report an error if
    1. the postprocessor does not have execute_on initial
    2. the postprocessor for normalization is zero

    Specification(s): errors/missing_initial, errors/zero_integral

    Design: IntegralPreservingFunctionIC

    Issue(s): #19476

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.40The system shall report an error if
    1. a solution is to be loaded at a block that does not exist in the source file.

    Specification(s): errors/missing_block

    Design: SolutionICSolutionUserObject

    Issue(s): #24581

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.45The system shall report an error if the 'function' and 'function_x' parameters are both set within the VectorFunctionIC object.

    Specification(s): comp_x_error

    Design: VectorConstantIC

    Issue(s): #13309

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.46The system shall report an error if the 'function' and 'function_y' parameters are both set within the VectorFunctionIC object.

    Specification(s): comp_y_error

    Design: VectorConstantIC

    Issue(s): #13309

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.28.47The system shall report an error if the 'function' and 'function_z' parameters are both set within the VectorFunctionIC object.

    Specification(s): comp_z_error

    Design: VectorConstantIC

    Issue(s): #13309

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Interfacekernels
  • 2.30.35The system shall report an error if the triad of interface kernels, adaptivity, and stateful properties are used together.

    Specification(s): error_stateful_ik_adaptivity

    Design: InterfaceKernels System

    Issue(s): #10977

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Kernels
  • 2.32.19The system shall allow the user to override the automated generation of a full coupling matrix when doing global AD indexing, which for this test results in a new nonzero allocation because there is off-diagonal coupling.

    Specification(s): trust_user_and_then_error

    Design: Coupleable

    Issue(s): #16396

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.36The system shall report an error if a user assigns a scalar and requests evaluation of scalar residuals, but does not override the quadrature point residual evaluation routine in their derived class.

    Specification(s): override

    Design: ADScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.66The system shall report an error when a parsed function expression contains quote characters.

    Specification(s): parsed_func_error_check

    Design: BodyForce

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.32.63

  • 2.32.92The system shall issue an error for unsupported mesh adaptation with hybrid finite element method (HFEM) calculations.

    Specification(s): robin_adpatation

    Design: DGKernels System

    Issue(s): #17447

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.122The system shall report an error if a derived object uses scalars and computes scalar residuals but does not override the quadrature point residual calculation routine.

    Specification(s): override

    Design: ScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.127We shall not be able to solve a problem where the physics Jacobians are very large compared to the jacobian from a Dirichlet BC (unity)

    Specification(s): cant-solve-poorly-scaled

    Design: FEProblemSolve

    Issue(s): #12601

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.130We shall not be able to solve a problem where the physics has large changes over time if we only scale once

    Specification(s): cant-solve-large-transient-changes

    Design: FEProblemSolve

    Issue(s): #12601

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.134The system shall report an error if the volumetric residual calculation is not assigned an associated vector within the numerical solving routine.

    Specification(s): test

    Design: Kernels System

    Issue(s): #9669

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.135Time kernel requires a transient executioner

    Specification(s): bad_transient

    Design: TaggingInterface

    Issue(s): #9669

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.136The kernel can be only assigned to the existing vector tags in the system

    Specification(s): bad_vector_tag

    Design: TaggingInterface

    Issue(s): #9669

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.137The kernel can be only assigned to the existing matrix tags in the system

    Specification(s): bad_matrix_tag

    Design: TaggingInterface

    Issue(s): #9669

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.156The system shall report an error if the 'function' and 'function_x' parameters are both set when defining a vector function Dirichlet boundary condition.

    Specification(s): comp_error

    Design: VectorBodyForce

    Issue(s): #13309

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.32.157The system shall report an error if the 'function' and 'function_x' parameters are both set within the ADVectorFunctionDirichletBC object.

    Specification(s): ad_comp_error

    Design: ADVectorFunctionDirichletBC

    Issue(s): #13309

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Markers
  • 2.35.14It shall not be possible to specify Markers to run on the displaced mesh.

    Specification(s): displaced_error

    Design: Markers System

    Issue(s): #11430

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.35.18The marker shall create an error if the coordinate vectors are not all the same size

    Specification(s): wrong_size_error

    Design: Markers SystemReporterPointMarker

    Issue(s): #18886

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Misc
  • 2.42.10The system shall report an error when a material property is not defined on a boundary.

    Specification(s): bc_check

    Design: Problem system overview

    Issue(s): #9835#5309#9482

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.11The system shall report an error when a material property requested by a UserObject is not defined on a boundary.

    Specification(s): side_uo_check

    Design: Problem system overview

    Issue(s): #9835#5309#9482

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.12The system shall report an error when a material property requested by a DGKernel is not defined on a boundary.

    Specification(s): dgkernel_check_boundary

    Design: Problem system overview

    Issue(s): #9835#5309#9482

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.13The system shall report an error when a material property requested by a DGKernel is not defined on a subdomain.

    Specification(s): dgkernel_check_block

    Design: Problem system overview

    Issue(s): #9835#5309#9482

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.15The system shall produce an error when an object's discretization area is explicitly set to a value greater than the area of the underlying variable used by the object.

    Specification(s): variable_interface_error_block_set

    Design: Problem system overview

    Issue(s): #9889

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.16The system shall produce an error when an object's discretization area is greater than the area of the underlying variable used by the object.

    Specification(s): variable_interface_error_block_any

    Design: Problem system overview

    Issue(s): #9889

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.17The system shall produce an error when an object's discretization area is explicitly set to a different area than the area of a coupled variable used by the object.

    Specification(s): coupleable_error_block_set

    Design: Problem system overview

    Issue(s): #9889

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.18The system shall produce an error when an object's discretization area is different than an explicitly set variable on only defined on a different portion of the mesh.

    Specification(s): coupleable_error_block_set2

    Design: Problem system overview

    Issue(s): #9889

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.19The system shall produce an error when an object's discretization area is covers the whole mesh but a coupled variable only exists on a portion of the mesh.

    Specification(s): coupleable_error_block_any

    Design: Problem system overview

    Issue(s): #9889

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.20The system shall report an error if a boundary restricted object depends on a variable that is not defined on any portion of the boundary. These boundary restricted objects include
    1. nodal auxiliary kernels
    2. nodal user objects
    3. nodal boundary conditions
    4. integrated boundary conditions
    5. side user objects
    6. elemental auxiliary kernels

    Specification(s): error/nodal_aux, error/nodal_uo, error/nodal_bc, error/integrated_bc, error/side_uo, error/elemental_aux

    Design: AuxKernels SystemUserObject System

    Issue(s): #9734

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.21The system shall report an error if a variable is coupled into a boundary restricted object, along whose boundary the variable is only partially defined.

    Specification(s): partial_coverage

    Design: AuxKernels SystemUserObject System

    Issue(s): #9734

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.22The system shall report an error if an object restricted on an internal boundarydepends on a variable that is not defined on any portion of the boundary.

    Specification(s): error

    Design: AuxKernels SystemUserObject System

    Issue(s): #9734

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.23The system shall report an error when the system solver is unable to find a converged solution.

    Specification(s): steady_no_converge

    Design: Executioner System

    Issue(s): #5144#5153

    Collection(s): FAILURE_ANALYSIS

    Type(s): RunApp

  • 2.42.24The system shall report an error message when a range-checked parameter is out of range.

    Specification(s): range_check_param

    Design: Problem system overview

    Issue(s): #2777

    Collection(s): FAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.25The system shall report an error when a null pointer-checked parameter is retrieved from the InputParameters object.

    Specification(s): checked_pointer_param_test

    Design: Problem system overview

    Issue(s): #10356

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.26The system shall report an error when multiple AuxVariables are added to the system with conflicting types.

    Specification(s): add_aux_variable_multiple_test

    Design: Problem system overview

    Issue(s): #1222

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.27The system shall report an error when multiple Scalar AuxVariables are added to the system with conflicting types.

    Specification(s): add_aux_scalar_variable_multiple_test

    Design: Problem system overview

    Issue(s): #9313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.28The system shall report an error when multiple AuxVariables are added to the system with conflicting block-restriction.

    Specification(s): add_aux_variable_multiple_subdomain_test

    Design: Problem system overview

    Issue(s): #28568

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.29The system shall report an error when an attempt is made to instantiate a non-existent BoundaryCondition object.

    Specification(s): bad_bc_test

    Design: Problem system overview

    Issue(s): #10486

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.30The system shall report an error when a non-existent nonlinear variable name is used by a MooseObject.

    Specification(s): bad_bc_var_test

    Design: Problem system overview

    Issue(s): #11227

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.31The system shall report an error message when an invalid enumeration is supplied in any MooseEnum type.

    Specification(s): bad_enum_test

    Design: Problem system overview

    Issue(s): #489

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.32The system shall report an error message when an invalid Executioner is specified.

    Specification(s): bad_executioner_test

    Design: Problem system overview

    Issue(s): #12106

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.33The system shall report an error message when an invalid Kernel is specified.

    Specification(s): bad_kernel_test

    Design: Problem system overview

    Issue(s): #12106

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.34The system shall report an error message when a Kernel object attempts to access a non-existent variable.

    Specification(s): bad_kernel_var_test

    Design: Problem system overview

    Issue(s): #11227

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.35The system shall report an error when an invalid Material is specified.

    Specification(s): bad_material_test

    Design: Problem system overview

    Issue(s): #12106

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.36The system shall report an error when a previously undeclared variable is used in a parsed function expression.

    Specification(s): bad_parsed_function_vars_test

    Design: Problem system overview

    Issue(s): #4683

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.37The system shall report an error when a first order element is used with a second order discretization.

    Specification(s): bad_second_order_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.38The system shall report an error message when a deprecated input file block is used.

    Specification(s): deprecated_block_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.41The system shall report an error when conflicting domain restrictions are applied to a single object.

    Specification(s): double_restrict_uo_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.42The system shall report an error when the number of ids and corresponding block names are mismatched.

    Specification(s): dynamic_check_name_block_mismatch_test

    Design: Problem system overview

    Issue(s): #8596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.43The system shall report an error when a duplicate name is provided for a set of unique block ids.

    Specification(s): dynamic_check_name_block_test

    Design: Problem system overview

    Issue(s): #8596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.44The system shall report an error when the number of ids and corresponding boundary names are mismatched.

    Specification(s): dynamic_check_name_boundary_mismatch_test

    Design: Problem system overview

    Issue(s): #8596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.45The system shall report an error when a duplicate name is provided for a set of unique boundary ids.

    Specification(s): dynamic_check_name_boundary_test

    Design: Problem system overview

    Issue(s): #8596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.46The system shall report an error when the linear interpolation utility is supplied with bad domain values.

    Specification(s): linear_interp_material_check

    Design: Problem system overview

    Issue(s): #5886

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.47The system shall report an error when the Piecewise utility encounters an unexpected column data format.

    Specification(s): function_file_test1

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.48The system shall report an error when the Piecewise utility encounters an unexpected row data format.

    Specification(s): function_file_test2

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.49The system shall report an error when the Piecewise utility encounters inconsistent domain and range data.

    Specification(s): function_file_test3

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.50The system shall report an error when an invalid enumeration is supplied in the Piecewise utility.

    Specification(s): function_file_test4

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.51The system shall report an error when the Piecewise data is over-specified with the data file option.

    Specification(s): function_file_test5

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.52The system shall report an error when the Piecewise data is over-specified with row/column data.

    Specification(s): function_file_test6

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.53The system shall report an error when either the domain or range is missing when using the domain/range option in the Piecewise utility.

    Specification(s): function_file_test7

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.54The system shall report and error if the supplied domain/range pairs are not even in the Piecewise utility.

    Specification(s): function_file_test8

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.55The system shall report an error if no function is supplied in the Piecewise utility.

    Specification(s): function_file_test9

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.56The system shall report an error if the xy_data is supplied but the function is missing in the Piecewise utility.

    Specification(s): function_file_test10

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.57The system shall report an error when the number of columns appears incorrect in the Piecewise utility.

    Specification(s): function_file_test11

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.58The system shall report an error when an out of range y-column index is supplied in the Piecewise utility.

    Specification(s): function_file_test12

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.59The system shall report an error when an out of range x-column index is supplied in the Piecewise utility.

    Specification(s): function_file_test13

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.60The system shall report an error if too many rows are supplied when the data is expected to contain row information.

    Specification(s): function_file_test14

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.61The system shall report an error when an out of range x-row index is supplied in the Piecewise utility.

    Specification(s): function_file_test15

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.62The system shall report an error when an out of range y-row index is supplied in the Piecewise utility.

    Specification(s): function_file_test16

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.63The system shall report an error when the x and y index in file are equal in the Piecewise utility.

    Specification(s): function_file_test17

    Design: Problem system overview

    Issue(s): #2421

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.64The system shall report an error if one or more domain blocks do not have any active Kernels objects assigned.

    Specification(s): incomplete_kernel_block_coverage_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.65The system shall report an error if one or more variables do not have any active Kernel objects assigned.

    Specification(s): incomplete_kernel_variable_coverage_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.66The system shall report an error if one or more domain blocks do not have any active FVKernels objects assigned.

    Specification(s): incomplete_fvkernel_block_coverage_test

    Design: Problem system overview

    Issue(s): #1405#15196

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.67The system shall report an error if one or more variables do not have any active FVKernel objects assigned.

    Specification(s): incomplete_fvkernel_variable_coverage_test

    Design: Problem system overview

    Issue(s): #1405#15196

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.68The system shall report an error when an elemental variable (no C0C_0 continuity) is coupled to a variable with C0C_0 continuity.

    Specification(s): invalid_elemental_to_nodal_couple_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.69The system shall report an error when an active input block section is specified but missing.

    Specification(s): missing_active_section_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.70The system shall report an error when a material property is requested but not supplied on a mesh block.

    Specification(s): missing_coupled_mat_prop_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.71The system shall report an error when a coupled variable is supplied that was not added as a valid parameter.

    Specification(s): coupled_grad_without_declare

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.72The system shall report an error when the data file is non-existent or not-readable in the Piecewise utility.

    Specification(s): missing_function_file_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.73The system shall report an error when the coupled function does not exist or can not be parsed by a piecewise utility.

    Specification(s): missing_function_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.74The system shall report an error when one or more material properties are missing from any mesh block.

    Specification(s): missing_material_prop_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.75The system shall report an error when a material property is supplied on some blocks but missing on other blocks where it is requested.

    Specification(s): missing_material_prop_test2

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.76The system shall report an error when only "old" properties are supplied but current properties are requested.

    Specification(s): bad_stateful_material_only_old

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.77The system shall report an error when only "older" properties are supplied but current properties are requested.

    Specification(s): bad_stateful_material_only_older

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.78The system shall report an error when the mesh file cannot be found.

    Specification(s): missing_mesh_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.79The system shall report an error when a required parameter is not supplied in an Action.

    Specification(s): missing_req_par_action_obj_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.80The system shall report an error when a specific mesh required parameter is not supplied.

    Specification(s): missing_req_par_mesh_block_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.81The system shall report an error when the special "type" parameter is not supplied for a MooseObject.

    Specification(s): missing_req_par_moose_obj_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.82The system shall report an error when a required parameter is not supplied in a MooseObject.

    Specification(s): missing_required_param_in_kernel_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.83The system shall report an error when the variable parameter is missing from a residual object

    Specification(s): missing_var_parameter_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.84The system shall report an error when a required coupling parameter is missing.

    Specification(s): missing_required_coupled_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.85The system shall report an error when more than one preconditioner block is supplied.

    Specification(s): multi_precond_test

    Design: Problem system overview

    Issue(s): #1904

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.87The system shall abort the solve and report a floating point error when a NaN is produced during user computation with the Transient executioner.

    Specification(s): nan_no_trap_fpe_test_trans

    Design: Problem system overview

    Issue(s): #374#3614

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.88The system shall report an error when a nodal AuxKernel attempts to access a material property.

    Specification(s): nodal_material_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.89The system shall report an error when the same named parameter appears multiple times in the same input file.

    Specification(s): override_name_variable_test

    Design: Problem system overview

    Issue(s): #9617

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.90The system shall report an error when the coordinate transformation conflicts with the underlying element types.

    Specification(s): rz_3d_error_check_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.91The system shall report an error when solver and auxiliary variables are declared with the same name.

    Specification(s): same_name_variable_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.92The system shall report an error when an AuxKernel is applied outside of the domain where a restricted variable exists.

    Specification(s): subdomain_restricted_auxkernel_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.93The system shall report an error when a Kernel is applied outside of the domain where a restricted variable exists.

    Specification(s): subdomain_restricted_kernel_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.94The system shall report an error when an unused parameter is provided through the input file or an Action.

    Specification(s): unused_param_test

    Design: Problem system overview

    Issue(s): #709#759#4101

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.95The system shall report an error when an unused parameter is supplied on the command line.

    Specification(s): unused_param_test_cli

    Design: Problem system overview

    Issue(s): #709#759#4101

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.98The system shall report an error when a UserObject and a Postprocessor are added with the same names.

    Specification(s): uo_pps_name_collision_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.99The system shall report and error when a UserObject and a VectorPostprocessor are added with the same names.

    Specification(s): uo_vector_pps_name_collision_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.100The system shall report an error when an input file block associated with a pluggable system is asked to build an object from a different system.

    Specification(s): wrong_object_test

    Design: Problem system overview

    Issue(s): #1405

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.101The system shall report an error when an input file block associated with a pluggable system is misspelled.

    Specification(s): wrong_action_spelling

    Design: Problem system overview

    Issue(s): #20062

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.103The system shall report an error when a required variable is missing from the ICs input file block.

    Specification(s): ics_missing_variable

    Design: Problem system overview

    Issue(s): #534

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.104The system shall report an error when a boundary restriction is applied to a non-nodal variable discretization.

    Specification(s): ic_bnd_for_non_nodal

    Design: Problem system overview

    Issue(s): #534

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.105The system shall report an error when coupling to old temporal solution vectors in a Steady (no time) Executioner.

    Specification(s): old_integrity_check

    Design: Problem system overview

    Issue(s): #380

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.106The system shall report an error when coupling to a time derivative solution vector in a Steady (no time) Executioner.

    Specification(s): dot_integrity_check

    Design: Problem system overview

    Issue(s): #10810

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.107The system shall report an error when an older scalar solution variable is accessed in a Steady (no time) Executioner.

    Specification(s): scalar_old_integrity_check

    Design: Problem system overview

    Issue(s): #10810

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.108The system shall report an error when an older time derivative scalar solution variable is accessed in a Steady (no time) Executioner.

    Specification(s): scalar_dot_integrity_check

    Design: Problem system overview

    Issue(s): #10810

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.109The system shall report an error when a coupled variable is not defined in the same region as the variable performing the coupling.

    Specification(s): node_value_off_block

    Design: Problem system overview

    Issue(s): #2849

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.111The system shall report an error when performing nodal constraints when there is a mismatch in the number of constrained nodes.

    Specification(s): check_syntax_error

    Design: Problem system overview

    Issue(s): #4437

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.112The system shall report an error when requested to check the syntax in an input file but no input file is supplied.

    Specification(s): check_syntax_no_input

    Design: Problem system overview

    Issue(s): #4437

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.113The system shall report an error when multiple time schemes are specified in the same input file.

    Specification(s): multiple_time_int_check

    Design: Problem system overview

    Issue(s): #5463

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.114The system shall report an error when there is a mismatch between the parameter for an object and the type of object are mismatched.

    Specification(s): calling_wrong_feproblem_method

    Design: Problem system overview

    Issue(s): #6383

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.115The system shall report an error when the variables representing displacement are of a lower order than the mesh.

    Specification(s): wrong_displacement_order

    Design: Problem system overview

    Issue(s): #6561

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.117The system shall report an error when floating point input parameter types fail to parse as floating point numbers.

    Specification(s): bad_number

    Design: Problem system overview

    Issue(s): #10310

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.118The system shall report an error when a scalar variable is used where a spatial variable is expected.

    Specification(s): coupling_field_into_scalar

    Design: Problem system overview

    Issue(s): #10398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.119The system shall report an error when a field variable is used where a scalar variable is expected.

    Specification(s): coupling_scalar_into_field

    Design: Problem system overview

    Issue(s): #10398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.120The system shall report an error when an invalid coupled spatial variable is requested.

    Specification(s): coupling_nonexistent_field

    Design: Problem system overview

    Issue(s): #10398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.121The system shall report an error when an invalid coupled scalar variable is requested.

    Specification(s): coupling_nonexistent_scalar

    Design: Problem system overview

    Issue(s): #10398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.122The system shall report an error when an attempt is made to couple a variable with itself.

    Specification(s): coupling_itself

    Design: Problem system overview

    Issue(s): #10398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.123The system shall report an error when an attempt is made to couple a variable with itself in coupled force term using automated differentiation.

    Specification(s): coupling_itself_ad

    Design: Problem system overview

    Issue(s): #18214

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.124The system shall report an error when an input file cannot be opened and read.

    Specification(s): missing_input

    Design: Problem system overview

    Issue(s): #10909

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.125The system shall report an error when a Kernel attempts to use an auxiliary variable.

    Specification(s): kernel_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.126The system shall report an error when a boundary condition object attempts to use an auxiliary variable.

    Specification(s): bc_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.127The system shall report an error when an AuxKernel specifies a non-existent variable.

    Specification(s): aux_kernel_with_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.128The system shall report an error when a scalar Kernel specifies a non-existent variable.

    Specification(s): scalar_kernel_with_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.129The system shall report an error when a nodal Kernel attempts to use an auxiliary variable.

    Specification(s): nodal_kernel_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.130The system shall report an error when a constraint attempts to use an auxiliary variable.

    Specification(s): constraint_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.131The system shall report an error when a scalar auxiliary Kernel attempts to use a solution variable.

    Specification(s): scalar_aux_kernel_with_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.132The system shall report an error when a DiracKernel attempts to use an auxiliary variable.

    Specification(s): dirac_kernel_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.133The system shall report an error when a discontinuous Galerkin Kernel attempts to use an auxiliary variable.

    Specification(s): dg_kernel_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.134The system shall report an error when an interface Kernel attempts to use an auxiliary variable.

    Specification(s): interface_kernel_with_aux_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.135The system shall report an error when a Kernel attempts to retrieve an empty string variable.

    Specification(s): kernel_with_empty_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.136The system shall report an error when a vector Kernel attempts to use a scalar solution variable.

    Specification(s): vector_kernel_with_standard_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.137The system shall report an error when a Kernel attempts to use a vector solution variable.

    Specification(s): kernel_with_vector_var

    Design: Problem system overview

    Issue(s): #11039

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.138The system shall report an error if users try to get nodal values of non-nodal variables.

    Specification(s): coupled_nodal_for_non_nodal_variable

    Design: Coupleable

    Issue(s): #11623

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.139The system shall report an error if users try to get old nodal values of non-nodal variables.

    Specification(s): coupled_nodal_for_non_nodal_variable_old

    Design: Coupleable

    Issue(s): #11623

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.140The system shall report an error if users try to get older nodal values of non-nodal variables.

    Specification(s): coupled_nodal_for_non_nodal_variable_older

    Design: Coupleable

    Issue(s): #11623

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.141The system shall report an error if an object tries to get the name of a coupled constant.

    Specification(s): coupled_constant_yet_needs_name

    Design: Coupleable

    Issue(s): #22597

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.142The system shall have an integrity check that ensures an Executioner object exists in the system.

    Specification(s): missing_executioner

    Design: Executioner System

    Issue(s): #11586

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.143The system shall report an error when nodal boundary condition is applied on a non-nodal variable.

    Specification(s): nodal_bc_on_elemental_var

    Design: NonlinearSystem

    Issue(s): #14019

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.144The system shall report an error when a git-lfs file pointer is encountered for the mesh file.

    Specification(s): check_git_lfs_pointer

    Design: MooseUtils Namespace

    Issue(s): #17407

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.145The system shall report an error when a git-lfs file pointer is encountered for the mesh for a mesh generator.

    Specification(s): check_git_lfs_pointer_fmg

    Design: MooseUtils Namespace

    Issue(s): #17407

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.146The system shall report a helpful error when the dump parameter does not match any valid parameters

    Specification(s): dump_error_with_unrecogized_param

    Design: Problem system overview

    Issue(s): #26714

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.149The system shall throw an exception if a data file cannot be found in any of the designated directories.

    Specification(s): error

    Design: MooseObject

    Issue(s): #20839

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.153The system shall produce an error when the –no-deprecated-flag is passed and deprecated code is executed.

    Specification(s): expired_error

    Design: MooseApp

    Issue(s): #10745

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.168The system shall support throwing an error during a residual calculation, which will terminate the solve.

    Specification(s): parallel_error_residual_transient_non_zero_rank

    Design: MooseException

    Issue(s): #3777#9181

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.169The system shall support throwing an error during a Jacobian calculation, which will terminate the solve.

    Specification(s): parallel_error_jacobian_transient_non_zero_rank

    Design: MooseException

    Issue(s): #3777#9181

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.176The system shall verify equality among the current, old, and older solution vectors prior to running the simulation.

    Specification(s): equal_solutions

    Design: ICs System

    Issue(s): #1396

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.182A 3D simulation shall throw an exception if there is a zero element Jacobian, when use_displaced_mesh = true

    Specification(s): jacobian_zero

    Design: Assembly

    Issue(s): #9740

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.42.181

  • 2.42.183A 3D simulation shall throw an exception if there is a negative element Jacobian, when use_displaced_mesh = true

    Specification(s): jacobian_negative

    Design: Assembly

    Issue(s): #9740

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.42.181

  • 2.42.186A 2D simulation shall throw an exception if there is a zero element Jacobian, when use_displaced_mesh = true

    Specification(s): jacobian_zero_2D

    Design: Assembly

    Issue(s): #9740#10229

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.42.185

  • 2.42.196The system shall report an error if the user provides inconsistent parameter values to the mesh and problem for the parameters related to
    1. subdomain blocks
    2. coordinate system types

    Specification(s): bad_params/block, bad_params/coord_type

    Design: Mesh System

    Issue(s): #21975

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.206The system shall print an understandable message when a user-specified path/file does not exist.

    Specification(s): except01

    Design: Parser

    Issue(s): #15718

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.210The system shall report an error if the residual calculation contribution is assigned to the incorrect variable for
    1. on-diagonal and
    2. off-diagonal terms.

    Specification(s): error/test_soln_var_err, error/test_diag_sol_var_err

    Design: Kernels System

    Issue(s): 4cb5e2a9f87973dba738584db39f7db935b65ce5

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.227The system shall not accept a converged solution if the solution has been tagged as invalid.

    Specification(s): solution_invalid

    Design: SolutionInvalidity

    Issue(s): #22814

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.42.229The system shall be able to count warnings through the solution invalidity interface and report them,
    1. unless the user specifies to silence them,
    2. and otherwise both in the console window and a json file.

    Specification(s): solution_invalid_warning/no_console_output, solution_invalid_warning/console_output

    Design: SolutionInvalidity

    Issue(s): #22814

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunExceptionRunApp

  • framework: Mortar
  • 2.43.80The system shall report an error if a nonlinear variable is applied for sigma instead of an auxiliary variable.

    Specification(s): auxiliary

    Design: PenaltyPeriodicSegmentalConstraint

    Issue(s): #22174

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Multiapps
  • 2.44.2The system shall return an error
    1. when the input application type is not registered in main app
    2. when the input application type is not registered in sub app
    3. when a command line option is used to set the application type for a child application.

    Specification(s): errors/wrong_main_application_type, errors/wrong_sub_application_type, errors/application_type_set_for_subapp

    Design: Application SystemCreateApplicationBlockAction

    Issue(s): #26474

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.7The system shall detect input file problems with sub app input files.

    Specification(s): input_file

    Design: MultiApp System

    Issue(s): #4101#4113

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.8The system shall CLI argument problems related to sub app input files.

    Specification(s): unused_subapp_param

    Design: MultiApp System

    Issue(s): #4101#4113

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.9The system show error when the number of input files is great than one and doesn't match the number of provided sub app positions.

    Specification(s): positions

    Design: MultiApp System

    Issue(s): #1845#3556#5784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.10The system show error when the number of input files is great than one and doesn't match the number of provided sub app positions when using CLI overrides.

    Specification(s): not_enough_positions

    Design: MultiApp System

    Issue(s): #1845#3556#5784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.11The system shall report an error when the number of sub app input files doesn't match the number of provided positions files.

    Specification(s): not_enough_position_files

    Design: MultiApp System

    Issue(s): #1845#3556#5784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.12The system shall report an error when both positions are provided in the input file along with a separate file of positions.

    Specification(s): both_positions

    Design: MultiApp System

    Issue(s): #1845#3556#5784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.13The system shall report an error when the multiapp positions file is malformed.

    Specification(s): bad_positions

    Design: MultiApp System

    Issue(s): #1845#3556#5784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.14The system shall report an error when the Multiapp parameter sub_cycling and catch_up are both set to true.

    Specification(s): sub_cycling_and_catch_up

    Design: MultiApp System

    Issue(s): #6127

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.19The system shall not support commandLine arguments from a file and an input at the same time

    Specification(s): input_and_from_file

    Design: MultiApp System

    Issue(s): #18596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.20The system shall make sure the number of commandLine argument files either be only one or match the number of input files

    Specification(s): input_and_file

    Design: MultiApp System

    Issue(s): #18596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.21The system shall provide at least one commandLine argument file when use parameter 'cli_args_files'

    Specification(s): no_cliarg_file

    Design: MultiApp System

    Issue(s): #18596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.22The system shall not use an empty commandLine argument file

    Specification(s): empty_cliarg_file

    Design: MultiApp System

    Issue(s): #18596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.23The system shall the total number of commandLine argument strings be only one or match the total number of sub apps

    Specification(s): inconsistent_cliargs_from_file

    Design: MultiApp System

    Issue(s): #18596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.24The system shall the total number of commandLine argument strings from a file be only one or match the total number of positions

    Specification(s): positions_and_cliargs

    Design: MultiApp System

    Issue(s): #18596

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.32The MultiApp system shall error when the number of command line arguments supplied in the input file differs from the number if sub apps.

    Specification(s): wrong_size

    Design: MultiApp System

    Issue(s): #12576

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.36When sub-application solve does not converge, the system shall be able to either
    1. abort run,
    2. throw error if error_on_dtmin is not set, or
    3. continue run.

    Specification(s): solve_not_converge/abort, solve_not_converge/error, solve_not_converge/continue

    Design: FullSolveMultiApp

    Issue(s): #1940

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunExceptionExodiff

  • 2.44.39The system shall report an error if the execution of a sub-application fails during the initial execution.

    Specification(s): initial_multiapp_failure

    Design: MultiApp System

    Issue(s): #7213

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.70The system should be able to check if users provide valid parameter to restart app using the latest solution

    Specification(s): parameter_error

    Design: TransientMultiApp

    Issue(s): #14056

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.44.69

  • 2.44.85The system shall report an error if provided relaxation factor that is less than or equal to 0 or greater than or equal to 2.

    Specification(s): bad_relax_factor

    Design: Executioner System

    Issue(s): #9115

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.88The system shall report an error if the reset times specified for a multiapp are not sorted, as this likely indicates a user error in their input

    Specification(s): not_sorted_times

    Design: MultiApp System

    Issue(s): #1970

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.93The system shall report an error if
    1. both outputting in position and displacing applications are requested at the same time, as displaced apps are already output in position
    2. a translation is requested on a spherical or cylindrical coordinate mesh, as this is not expected to be a valid transformation
    3. displacing applications and moving applications at a certain time are both requested as this combination of features is not implemented

    Specification(s): errors/output_and_run_in_position, errors/invalid_frame_for_translation, errors/move_apps_not_supported

    Design: MultiApp System

    Issue(s): #19121

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.44.108The system shall issue a warning if the parent app and the child app time become de-synchronized, except when using sub-cycling or resetting mechanisms which naturally handle or create desynchronization

    Specification(s): warning

    Design: TransientMultiApp

    Issue(s): #22338

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Parser
  • 2.47.2The system shall produce an error when the active parameter refers to a non-exiseant block.

    Specification(s): active_section_missing

    Design: Parser

    Issue(s): #9411#9571

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.3The system shall produce an error when the inactive parameter refers to a non-existent block.

    Specification(s): inactive_section_missing

    Design: Parser

    Issue(s): #9411#9571

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.4The system shall produce an error when both the active and inactive parameters are present in the same block.

    Specification(s): inactive_active_combo

    Design: Parser

    Issue(s): #9411#9571

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.5The system shall honor the active or inactive parameters at the top (root) level.

    Specification(s): top_level

    Design: Parser

    Issue(s): #9411#9571

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.10The system shall produce an error when a SubApp command line override index is not valid.

    Specification(s): cli_override_error_check

    Design: CommandLine

    Issue(s): #2137

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.47.9

  • 2.47.13The system shall report an error if the supplied input file is not formatted correctly.

    Specification(s): error

    Design: InputParameters

    Issue(s): #16410

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.16The system shall report an error if a user supplies an odd number of entries, implying an unbalanced key-value set, to a map parameter.

    Specification(s): odd_entries

    Design: Parser

    Issue(s): #14894

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.17The system shall report an error if a user supplies syntax in a map parameter that cannot be cast to the requested mapped type.

    Specification(s): bad_value

    Design: Parser

    Issue(s): #14894

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.18The system shall support for multiple input files, which are merged into one input specification for a simulation
    1. where no parameters overlap
    2. where input files may override parameters in previous inputs
    3. while locating input errors in the correct file
    4. and inform the user of parameters from earlier files being overidden by later files

    Specification(s): merging/two_inputs, merging/three_inputs_override, merging/three_inputs_error, merging/three_inputs_override_message

    Design: Parser

    Issue(s): #17989#18221

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): ExodiffRunExceptionRunApp

  • 2.47.19The system shall raise an error if no input files were specified after the -i option

    Specification(s): no_file

    Design: Parser

    Issue(s): #17989#18221

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.20The system shall support parameter duplication check for multiple input files, which are later merged into one.

    Specification(s): dup_check

    Design: Parser

    Issue(s): #25994

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.28The system shall throw an exception if the given input cannot be parsed into a vector of size-3 vectors.

    Specification(s): parse_vector_value_error

    Design: Parser

    Issue(s): #24337

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.30The system shall return a usage message when the vector of MultiMooseEnums includes an empty entry.

    Specification(s): vmme_empty

    Design: InputParameters

    Issue(s): #28487

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.31The system shall return an error message when an invalid entry is supplied in a vector of MultiMooseEnums.

    Specification(s): vmme_invalid

    Design: InputParameters

    Issue(s): #28487

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.32The system shall support vector size checking on input parameter vectors:
    1. for ints,
    2. for Reals.

    Specification(s): vector_len_checks/realvectorlength, vector_len_checks/intvectorlength

    Design: InputParameters

    Issue(s): #3988

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.33The system shall support vector element checking:
    1. against constant expressions,
    2. against other unsigned int vector elements,
    3. against other long vector elements,
    4. against other int vector elements, and
    5. against other Real vector elements.

    Specification(s): vector_elem_checks/all_element_check, vector_elem_checks/elementcompare_unsigned_int, vector_elem_checks/elementcompare_long, vector_elem_checks/elementcompare_int, vector_elem_checks/elementcompare_real

    Design: InputParameters

    Issue(s): #3988

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.34The system shall support vector bounds checking on input parameter vectors.

    Specification(s): outofbounds

    Design: InputParameters

    Issue(s): #3988

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.47.35The system shall support checking for non-empty input parameter vectors.

    Specification(s): checkempty

    Design: InputParameters

    Issue(s): #3988

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Partitioners
  • 2.48.2The block-weighted partitioner shall report a reasonable error when
    1. the input blocks do not match the size of the input weights
    2. an input block is not found in the mesh

    Specification(s): errors/size_mismatch, errors/missing_block

    Design: BlockWeightedPartitioner

    Issue(s): #13675

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.48.20The system shall report an error if an out of range rank is given to SingleRankPartitioner

    Specification(s): test_error

    Design: SingleRankPartitioner

    Issue(s): #18729

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Physics
  • 2.51.1The system shall error if the physics is specified as a transient, when the executioner is designed for steady solves.

    Specification(s): fv

    Design: Physics system

    Issue(s): #25642

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Positions
  • 2.52.3The system shall report an error if
    1. the positions objects to use for creating multiapps are not initialized, or
    2. the size of the current positions does not match the number of initial positions.

    Specification(s): error/not_init, error/size_changed

    Design: Positions

    Issue(s): #23587

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Preconditioners
  • 2.54.8The system shall report an error if a user has forgotten a variable in their field splits.

    Specification(s): missing_var_in_split

    Design: FSP

    Issue(s): #1851#22359

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.54.10The system shall error if there is an inconsistent covering of degrees of freedom in a nested field split.

    Specification(s): nested_error

    Design: FSP

    Issue(s): #1851#22359

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Problems
  • 2.56.3The system shall report an error when Problem block type is not specified.

    Specification(s): with_problem_block_with_wrong_type

    Design: Problem system overview

    Issue(s): #12002

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.12Eigenvalue system should not allow users to use inhomogeneous nodal boundary conditions

    Specification(s): wrong_dirichlet_value_eigen

    Design: Eigenvalue

    Issue(s): #7398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.13Eigenvalue system should use homogeneous boundary conditions only

    Specification(s): wrong_NodalBC_type_eigen

    Design: Eigenvalue

    Issue(s): #7398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.14Eigenvalue system requires SLEPc installed

    Specification(s): no_slepc

    Design: Eigenvalue

    Issue(s): #7398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.30The system shall error if a user requests a standard eigenvalue solve when there are objects marked to contribute to the Bx vector or B matrix.

    Specification(s): error_eigen_non_generalized

    Design: Eigenvalue

    Issue(s): #7398

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.43The system shall support compatibility of solve type and constant-matrices flag

    Specification(s): check_solve_type

    Design: Eigenvalue

    Issue(s): #18493#21056

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.56.42

  • 2.56.70The system shall require all grouped variables to be included in the convergence check.

    Specification(s): converge_on_group_error

    Design: ReferenceResidualProblem

    Issue(s): #9151

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.79The system shall treat convergence with a zero reference residual value as requiring zero residual value for convergence.

    Specification(s): zero_tolerance_ref

    Design: ReferenceResidualProblem

    Issue(s): #9151

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.56.81When using ReferenceResidualProblem the system shall throw an error
    1. if the reference tag is not a residual vector tag.
    2. if the reference tag does not exist.
    3. if the reference vector is not provided when using local normalization.
    4. if the reference vector is provided is not a residual vector tag.

    Specification(s): error/wrong_vector_tag_type, error/no_tag, error/no_reference_vector, error/not_residual_tag

    Design: ReferenceResidualProblem

    Issue(s): #9151

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Quadrature
  • 2.57.4The system shall ensure that for per-block specified quadrature orders exactly one order is given per specified block.

    Specification(s): per-block-order-error

    Design: Quadrature System

    Issue(s): #24820

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Reporters
  • 2.59.3The system shall report an error if an invalid name is provided when retrieving aggregate value.

    Specification(s): error

    Design: Reporter System

    Issue(s): #11323

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.59.4The system shall report a reasonable error when declaring a Reporter value and
    1. the parameter that contains the name was not found,
    2. the parameter that contains the name is not of the correct type,
    3. a Reporter with the same name has already been declared, and
    4. a Reporter with the same name but a different type has been requested.

    Specification(s): errors/missing_param, errors/bad_param, errors/already_declared, errors/requested_different_type

    Design: Reporter System

    Issue(s): #11323

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.59.7The system shall throw an error when producing constant reporter values if
    1. no values are specified,
    2. no names are specified,
    3. or the number of values and names are not equal.

    Specification(s): errors/no_values, errors/no_names, errors/mismatch

    Design: ConstantReporter

    Issue(s): #16055#20467

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.59.22The system shall support reporting a reasonable error when trying to output restartable data in human-readable form for a data type that does not have an output specialization

    Specification(s): unimplemented_error

    Design: RestartableDataReporter

    Issue(s): #26304

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Restart
  • 2.60.2The system shall report a reasonable error when using advanced stateful restart when
    1. a stateful property for a single material object is removed
    2. a stateful property for a single material object is added
    3. a previously checkpointed stateful property is declared in a new material
    4. the type of a restored stateful property has changed
    5. the requested state of a restored stateful property has changed

    Specification(s): errors/remove_prop, errors/add_prop, errors/object_rename, errors/different_type, errors/different_state

    Design: Materials System

    Issue(s): #25840

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.60.12.60.13

  • 2.60.6The system shall report an error when
    1. a simulation is started with multiple processors but
    2. restarted with a different number processors.

    Specification(s): parallel_error/error1, parallel_error/error2

    Design: DataIORestartable

    Issue(s): #2306

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): ExodiffRunException

    Prerequisite(s): 2.60.4

  • 2.60.7The system shall report an error when
    1. a simulation is started with multiple threads but
    2. restarted with a different number threads.

    Specification(s): thread_error/with_threads, thread_error/threads_error

    Design: DataIORestartable

    Issue(s): #2306

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): ExodiffRunException

    Prerequisite(s): 2.60.6

  • 2.60.10The system shall produce an error when an attempt is made to serialize a type without a serialization (dataStore) routine when that data is declared as restartable.

    Specification(s): pointer_store_error

    Design: DataIORestartable

    Issue(s): #1169

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.60.12The system shall produce an error when an attempt is made to deserialize a type without a deserialization (dataLoad) routine when that data is declared as restartable during a restart or recover operation.

    Specification(s): pointer_load_error2

    Design: DataIORestartable

    Issue(s): #1169

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.60.11

  • 2.60.23The system shall issue a useful error message stating the valid options when a user requests an invalid time step number or keyword.

    Specification(s): restart_use_end_error_check

    Design: RestartableDataIO

    Issue(s): #5748

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

    Prerequisite(s): 2.60.22

  • 2.60.24The system shall issue a useful error message stating that initial conditions should not be used when restarting.

    Specification(s): restart_error_with_ics

    Design: RestartableDataIO

    Issue(s): #21423

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Restrictable
  • 2.61.2The system shall report an error if an object is restricted to a set of subdomains that differs from a dependant object.

    Specification(s): block_undefined_var_block

    Design: BlockRestrictable Interface

    Issue(s): #2096

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.3The system shall include an interface that provides a method for returning all associated subdomains:
    1. as a list of names or
    2. as a list of ids.

    Specification(s): ids/blocks, ids/hasBlocks

    Design: BlockRestrictable Interface

    Issue(s): #2096

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.4The system shall include an interface that provides methods for indicating if the supplied subdomain identifier(s) exists on the object:
    1. if a single subdomain is supplied ant the object is not restricted;
    2. if a single subdoman is supplied and the object is restricted to a set of subdomains; and
    3. if multiple boundaries are supplied and the object is restricted to a set of subdomains.

    Specification(s): has/hasBlocks_ANY_BLOCK_ID, has/blockIDs, has/isBlockSubset

    Design: BlockRestrictable Interface

    Issue(s): #2096

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.5The system shall include an interface that provides a method for indicating if the supplied material property exists on the same subdomains as the object:
    1. the method shall return true if the property subdomains match with the object subdomains and
    2. the method shall return false if the property subdomains dot not match with the object subdomains.

    Specification(s): mat/hasBlockMaterialProperty_true, mat/hasBlockMaterialProperty_false

    Design: BlockRestrictable Interface

    Issue(s): #2096

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.6The system shall include an interface that provides a method for returning all associated boundaries:
    1. as a list of names or
    2. as a list of ids.

    Specification(s): ids/boundary, ids/boundaryIDs

    Design: BoundaryRestrictable Interface

    Issue(s): #2149

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.7The system shall include an interface that provides methods for indicating if the supplied boundary identifier(s) exists on the object:
    1. if a single boundary is supplied and the object is restricted to a set of boundaries and
    2. if multiple boundaries are supplied.

    Specification(s): has/hasBoundary, has/isBoundarySubset

    Design: BoundaryRestrictable Interface

    Issue(s): #2149

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.8The system shall include an interface that provides a method for indicating if the supplied material property exists on the same boundaries as the object:
    1. the method shall return true if the property boundaries match with the object boundaries and
    2. the method shall return false if the property boundaries dot not match with the object boundaries.

    Specification(s): mat/hasBoundaryMaterialProperty_true, mat/hasBoundaryMaterialProperty_false

    Design: BoundaryRestrictable Interface

    Issue(s): #2149

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.9The system shall report an error if an object restricted to subdomains is created without valid data
    1. regarding the problem being solved or
    2. information regarding the finite element mesh.

    Specification(s): errors/fe_problem_null, errors/mesh_null

    Design: BlockRestrictable Interface

    Issue(s): #2411

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.61.11The system shall issue an error when a referenced subdomain does not exist in the mesh.

    Specification(s): block

    Design: MooseMesh

    Issue(s): #2757

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Scaling
  • 2.64.3The system shall not allow ignoring of particular variable automatic scaling factors if they are grouped with other variables for scaling

    Specification(s): fail_with_group

    Design: NonlinearSystem

    Issue(s): #19573

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Tag
  • 2.66.2The system shall throw an error when the variable orders and families for the tagged and the auxiliary output variables do not match.

    Specification(s): tag_vector_error

    Design: TaggingInterface

    Issue(s): #9669

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.66.8An error will be thrown when the different number of array components are used in the aux and coupled varibles.

    Specification(s): array_value_size_error

    Design: TagVectorArrayVariableValueAux

    Issue(s): #21839

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.66.9An error will be thrown when the different FE family are used in the aux and coupled varibles.

    Specification(s): array_value_fe_type_error

    Design: TagVectorArrayVariableValueAux

    Issue(s): #21839

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Times
  • 2.69.2The system shall report an error when
    1. times are gathered with a fixed time interval with no start and end times provided, while using a steady executioner.

    Specification(s): error_reporting/time_interval_steady_no_times

    Design: Times

    Issue(s): #24696#25352

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • framework: Variables
  • 2.74.3The system shall report a reasonable error when defining a variable with multiple components not as an array variable.

    Specification(s): array_false_error

    Design: ArrayMooseVariable

    Issue(s): #19564

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.74.16The system shall report an error if a user requests a constant monomial finite element variable type with either a non-monomial family or non-constant order.

    Specification(s): bad_order

    Design: Variables System

    Issue(s): #9836

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.74.27The system shall report an error when users couple constant values and variables together

    Specification(s): two_coupled_default_fail_mixed_input

    Design: Coupleable

    Issue(s): #11920

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 2.74.28The system shall report an error when requested default vector value is out of range and
    1. accessed by name or
    2. accessed by index.

    Specification(s): catch_out_of_bound_default_access/coupledValue, catch_out_of_bound_default_access/coupled

    Design: Coupleable

    Issue(s): #11920

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException