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 will defined problem to asses. 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
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.
Input file syntax failure,
Input parameter errors, and
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) automatically handles syntax mistakes are reports errors. For example, consider the following input file that contains a missing closing bracket.
[Mesh]
file = file.e
[]
[Executioner]
type = Steady
(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;
}
(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
[]
[]
(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
[../]
[]
(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."
[]
[]
(test/tests/utils/param_error/tests)Failure Analysis Requirements
- framework: Actions
- 1.1.1The system shall error if the supplied order of scalar auxiliary variable is of an unknown order.
Specification(s): invalid_order_high
Design: AuxVariables System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Auxkernels
- 1.3.9The system shall report a reasonable error when copying standard variables into the components of an array variable when
- the variables have inconsistent sizes or
- when the variables have inconsistent types.
Specification(s): error/size, error/type
Design: BuildArrayVariableAux
Issue(s): #16402
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.3.16MOOSE shall error if a boundary restricted elemental auxiliary kernel is evaluated on an element with multiple boundary sides
Specification(s): boundary_restricted_error_test
Design: AuxKernels System
Issue(s): #5061
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.3.57The system shall be capable of initializing an auxiliary variable from an existing solution
- from data generated by a simulation
- and loaded using location,
- using a direct degree-of-freedom copy for identical meshes,
- with scaling the supplied data,
- and that errors if data for the supplied variable is not found.
Specification(s): aux/build, aux/test, aux/direct, aux/solution_aux_scale, aux/output_error
Design: SolutionAuxSolutionUserObject
Issue(s): #1891
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionExodiff
- 1.3.68The SolutionAux object shall produce an error if the 'from_variable' parameter is not set and the supplied UserObject has multiple variables.
Specification(s): multiple_input_error
Design: SolutionAuxSolutionUserObject
Issue(s): #1891
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.3.74Error an AuxKernel object attemps to couple to the time derivative of an auxiliary variable.
Specification(s): coupled_aux_time_derivative
Design: AuxKernels SystemKernels SystemAuxVariable
Issue(s): #442
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Bcs
- 1.4.25The system shall be able to determine if a non-scalable algorithm is being used for ghosting boundaries.
Specification(s): check
Design: AddPeriodicBCActionDistributedRectilinearMeshGenerator
Issue(s): #15501
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.4.48The PeriodicDistanceAux object shall produce an error when a point is provided that is outside the mesh domain.
Specification(s): auto_wrap_2d_test_error_check
Design: Periodic System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.4.46
- framework: Controls
- 1.6.7The 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
- 1.6.9The 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
- 1.6.10The 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
- 1.6.11The 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
- 1.6.12The 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
- 1.6.22The 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
- 1.6.41The 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
- 1.6.42The 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
- 1.6.43The 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
- 1.6.44The 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
- 1.6.45The 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
- framework: Dampers
- 1.8.1MOOSE 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
- 1.8.2MOOSE 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
- 1.8.3MOOSE 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
- 1.8.4MOOSE 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
- 1.8.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
- 1.8.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
- 1.8.12The 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: DGKernel Objects
- 1.9.15The system shall 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: Dirackernels
- 1.10.3The system shall behave accordingly if the added point is not found, when point_not_found_behavior is set to
- ERROR or
- WARNING.
Specification(s): point_not_found/error, point_not_found/warning
Design: DiracKernels System
Issue(s): #17561
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionRunApp
- 1.10.8DiracKernel objects shall report an error if a material property from a previous time step is requested:
- one step back, and
- two steps back.
Specification(s): check_errors/old, check_errors/older
Design: DiracKernels System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.10.12The DiracKernel system shall report an error if a location does not correspond with the supplied element id.
Specification(s): point_caching_error
Design: DiracKernels System
Issue(s): #2364
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Functions
- 1.13.10The system shall include the ability to create functions from image files that errors if
- an unsupported file type is provided;
- if an invalid component value is supplied;
- if an invalid filename is provided; and
- 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
- 1.13.29The 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
- 1.13.40The 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
- 1.13.42The 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
- 1.13.43The 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
- 1.13.44The 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
- 1.13.45The PiecewiseMultiInterpolation errors if the axes supplied are not independent.
Specification(s): except4
Design: PiecewiseMultilinear
Issue(s): #2476
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.13.46The 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
- 1.13.64The 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
- 1.14.2The system shall error out 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
- 1.14.3The system shall error out 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
- 1.15.1The system shall 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
- 1.15.2The system shall 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
- 1.15.3The system shall 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: Fvkernels
- 1.16.2The system shall return a warning in non-optimized modes if a user supplies a material property with the same name from different block-restricted materials on neighboring subdomains when there are different sets of finite volume flux kernels on those same neighboring subdomains. This is because we have to support ghosting of material properties for block restricted finite volume flux kernels.
Specification(s): overlapping-mats
Design: Finite Volume Design Decisions in MOOSE
Issue(s): #15894
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.16.7The system shall error if a user attempts to couple both finite volume and finite element variables into the same material.
Specification(s): mat-error
Design: Finite Volume Design Decisions in MOOSE
Issue(s): #15894
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.16.10The system shall error in non-optimized modes if material dependencies for finite volume computations are not satisfied.
Specification(s): deps-not-satisfied
Design: Finite Volume Design Decisions in MOOSE
Issue(s): #15894
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.16.11The system shall suggest that the user add a finite volume variable if a finite volume object cannot retrieve one
Specification(s): var_except
Design: Finite Volume Design Decisions in MOOSE
Issue(s): #14549
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Geomsearch
- 1.17.55The MOOSE penetration locator system shall error if penetration is not detected.
Specification(s): never_warning
Design: GapValueAuxMesh System
Issue(s): #3901
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.17.51
- framework: Ics
- 1.19.5The 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
- 1.19.6The 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
- 1.19.7The 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
- 1.19.8The 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
- 1.19.37The system shall 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
- 1.19.38The system shall 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
- 1.19.39The system shall 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: InterfaceKernel Objects
- 1.21.30The system shall 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: Interfaces
- 1.22.2The system shall report a reasonable error when requesting a Postprocessor from a parameter when
- the parameter is not found,
- the parameter does not represent a Postprocessor,
- the parameter is a single Postprocessor value and a greater index than zero is requested,
- and the parameter is a single Postprocessor value and a greater index than zero is requested.
Specification(s): param_errors/missing_parameter, param_errors/bad_parameter_type, param_errors/out_of_range_single, param_errors/out_of_range_vector
Design: PostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.3The system shall report a reasonable error when requesting a Postprocessor name from a parameter in which the postprocessor is a default value and not a name.
Specification(s): name_for_default_error
Design: PostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.4The system shall report a reasonable error when it is too early to request if a postprocesor exists
- by parameter name and
- by Postprocessor name.
Specification(s): has_errors/param, has_errors/name
Design: PostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.5The system shall report a reasonable error when requesting a Postprocessor value
- by parameter and the Postprocessor does not exist and
- by Postprocessor name and the Postprocessor does not exist.
Specification(s): missing_errors/by_param, missing_errors/by_name
Design: PostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.16The system shall report a reasonable error when requesting a Reporter value from a parameter when
- the parameter is not found and
- the parameter does not represent a Reporter
Specification(s): param_errors/missing_parameter, param_errors/bad_parameter_type
Design: ReporterInterface
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.17The system shall report a reasonable error when requesting a Reporter value when a Reporter with the same name exists with a different type.
Specification(s): other_type_requested_error
Design: ReporterInterface
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.18The system shall report a reasonable error when requesting a Reporter value
- by parameter and the Reporter value does not exist and
- by Reporter name and the Reporter value does not exist.
Specification(s): missing_errors/param, missing_errors/name
Design: ReporterInterface
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.19The system shall report a reasonable error when it is too early to request if a Reporter value exists
- by parameter name and
- by Reporter name.
Specification(s): has_errors/param, has_errors/name
Design: ReporterInterface
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.20The system shall report a reasonable error when requesting a UserObject when
- getting the name from a parameter and the parameter is not found,
- getting the name from a parameter and the parameter does not represent a name,
- getting the name from a parameter and the user object is not found,
- getting the UserObject by name and the user object is not found,
- getting the name from a paremeter and the provided object is not of the correct type, and
- getting the UserObject by name and the provided object is not of the correct type.
Specification(s): errors/missing_parameter, errors/bad_parameter_type, errors/not_found_by_param, errors/not_found_by_name, errors/bad_cast, errors/bad_cast_by_name
Design: UserObjectInterface
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.21The system shall report a reasonable error when requesting a VectorPostprocessor value from a parameter when
- the parameter is not found and
- the parameter does not represent a VectorPostprocessor.
Specification(s): param_errors/missing_parameter, param_errors/bad_parameter_type
Design: VectorPostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.22The system shall report a reasonable error when it is too early to request if a VectorPostprocessor exists
- by vector name and parameter name,
- by vector name and VectorPostprocessor name,
- by parameter name, and
- and by VectorPostprocessor name.
Specification(s): has_errors/value_param, has_errors/value_name, has_errors/param, has_errors/name
Design: VectorPostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.22.23The system shall report a reasonable error when requesting a VectorPostprocessor value
- by parameter and the VectorPostprocessor does not exist,
- by parameter and the VectorPostprocessor exists but the requested vector does not,
- by VectorPostprocessor name and the VectorPostprocessor does not exist, and
- by VectorPostprocessor name and the VectorPostprocessor exists but the requested vector does not.
Specification(s): missing_errors/by_param, missing_errors/by_param_vector, missing_errors/by_name, missing_errors/by_name_vector
Design: VectorPostprocessorInterface
Issue(s): #17512
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Kernels
- 1.23.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
- 1.23.23The system will error and tell the user if they use derivative storage that is too small
Specification(s): ad_max_dofs_per_elem_error
Design: DualReal
Issue(s): #5658
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.23.59The system shall report an error when a parsed function expression contains quote characters.
Specification(s): parsed_func_error_check
Design: Kernels System
Issue(s): #1405
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.23.69The 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
- 1.23.71The system shall issue an error for not fully supported distributed mesh with hybrid finite element method (HFEM) calculations.
Specification(s): robin_distributed_mesh
Design: DGKernels System
Issue(s): #17447
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.23.100We 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.md
Issue(s): #12601
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.23.103We 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.md
Issue(s): #12601
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.23.106The system shall 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
- 1.23.107Time kernel requires a transient executioner
Specification(s): bad_transient
Design: TaggingInterface
Issue(s): #9669
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.23.108The 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
- 1.23.109The 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
- 1.23.127The system shall 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
- 1.23.128The system shall 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
- 1.24.13It 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
- framework: Materials
- 1.25.11ADPiecewiseLinearInterpolationMaterial shall throw an error if x, y, and xy_data are all specified
Specification(s): test_err1
Design: ADPiecewiseLinearInterpolationMaterial
Issue(s): #8265
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.25.9
- 1.25.12ADPiecewiseLinearInterpolationMaterial shall throw an error if x and xy_data are both specified
Specification(s): test_err2
Design: ADPiecewiseLinearInterpolationMaterial
Issue(s): #8265
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.25.11
- 1.25.13ADPiecewiseLinearInterpolationMaterial shall throw an error if x and y vectors are different lengths
Specification(s): test_err3
Design: ADPiecewiseLinearInterpolationMaterial
Issue(s): #8265
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.25.12
- 1.25.14ADPiecewiseLinearInterpolationMaterial shall throw an error if xy_data vector is not a multiple of two
Specification(s): test_err4
Design: ADPiecewiseLinearInterpolationMaterial
Issue(s): #8265
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.25.13
- 1.25.19The system shall issue an error when multiple materials properties with the same name are declared on the same block.
Specification(s): error
Design: Materials System
Issue(s): #6533
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.24The system shall issue an error when required derivative materials that are retrieved are never declared.
Specification(s): warn
Design: DerivativeMaterialInterface
Issue(s): #4299#6360#5055#6901#5039#14975#15207
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.25The system shall handle a bad evaluation by
- passing a silent nan.
- throwing a warning and passing a silent nan.
- throwing an error.
- throwing an exception.
Specification(s): bad_evaluation/nan, bad_evaluation/warning, bad_evaluation/error, bad_evaluation/exception
Design: DerivativeMaterialInterface
Issue(s): #4299#6360#5055#6901#5039#14975#15207
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionRunApp
- 1.25.32The system shall issue an error when required dual number derivative materials that are retrieved are never declared.
Specification(s): ad_warn
Design: DerivativeMaterialInterface
Issue(s): #4299#6360#5055#6901#5039#14975#15207
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.36The system shall issue a warning when a "discrete" material object is retrieved for use in a controlling material but it is set to auto-execute.
Specification(s): newton_warning
Design: Materials System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.37The system shall verify that a material being retrieved is defined everywhere that the retrieving material is defined:
- on compatible blocks, and
- on compatible boundaries.
Specification(s): coverage_check/block_incompatible, coverage_check/boundary_incompatible
Design: Materials System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.38The system shall issue a warning when a "discrete" material's "reset" method is not defined.
Specification(s): reset_warning
Design: Materials System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.41The system shall report the retrieval of material properties by names:
- on boundaries,
- on blocks,
- on the all mesh boundaries, and
- on the all mesh blocks.
Specification(s): get_prop_names/boundary, get_prop_names/block, get_prop_names/any_boundary, get_prop_names/any_block
Design: Materials System
Issue(s): #4420
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.43The system shall report an error if a material property is needed on the entire domain but is only supplied on a subset of the subdomains.
Specification(s): property_on_one_block
Design: Materials System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.44The system shall report that a material property is available when it is defined on a subdomain.
Specification(s): hasMaterialProperty
Design: Materials System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.46The system shall report and error when a boundary restricted material is not defined on the same boundary as a boundary restricted object using that property in a calculation.
Specification(s): property_not_on_boundary
Design: Materials System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.54The system shall error if material property calculations result in a cyclic dependency.
Specification(s): mat_cyclic_dep_error_test
Design: Materials System
Issue(s): 6683d503d6441165249f8d49c65b76722430019a
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.55The system shall error is a material property is requested on a subdomain on which it is not defined.
Specification(s): mat_block_boundary_check
Design: Materials System
Issue(s): 6683d503d6441165249f8d49c65b76722430019a
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.57The system shall error if material properties are not computed on all subdomains.
Specification(s): check_test
Design: Materials System
Issue(s): 6683d503d6441165249f8d49c65b76722430019a
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.64The system shall error if the supplied output options for material data output are not consistent with the list of available outputs.
Specification(s): invalid_outputs
Design: Materials SystemOutput System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.68The system shall support the calculation of a material property with a linear interpolation and error if
- x, y, and xy_data are all specified;
- x and xy_data are both specified;
- the x and y vectors are different lengths; and
- the xy_data vector length is not a multiple of two.
Specification(s): errors/err1, errors/err2, errors/err3, errors/err4
Design: PiecewiseLinearInterpolationMaterial
Issue(s): #13224
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.25.82The system shall report and error when invalid indices are requested when attempting to output material properties through auxiliary field variables.
Specification(s): except1
Design: Materials System
Issue(s): #4489
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.25.81.25.561.25.611.25.621.25.691.25.711.25.81
- framework: Mesh
- 1.26.42The system shall include the ability to generate an annular mesh that errors when
- the min radius is larger than the max radius;
- the min angle is greater than or equal to the max angle;
- the angle separation is larger than 360 degrees;
- the number of elements in the angular direction is too small due to the number of elements; and
- the number of elements in the angular direction is too small due to the maximum angle.
- shall throw an error if the quadrilateral and triangular subdomain ids are the same.
Specification(s): annular_errors/annular_except1, annular_errors/annular_except2, annular_errors/annular_except3, annular_errors/annular_except4, annular_errors/annular_except5, annular_errors/annular_except6
Design: AnnularMeshGenerator
Issue(s): #8432
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.26.67The system shall issue an error if no Mesh block is provided.
Specification(s): no_mesh_block_err
Design: Mesh System
Issue(s): #2408
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.26.68The system shall issue a diagnostic when a referenced node set does not exist in the mesh
Specification(s): test
Design: MooseMesh
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.26.74The system shall issue a diagnostic when a referenced side set does not exist in the mesh.
Specification(s): missing_side_set
Design: MooseMesh
Issue(s): #13509
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.26.79The mesh splitter will throw an error when an attempt is made to split a "DistributedMesh".
Specification(s): split_with_distributed_error
Design: Mesh Splitting
Issue(s): #11434
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.26.85The system shall error if at least one mesh file is not supplied when creating a mesh from multiple meshes stitched together.
Specification(s): files_error
Design: StitchedMesh
Issue(s): #8308
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Mesh Modifiers
- 1.27.2The system shall support assigning boundary identifiers based on
- a nodal id,
- a spatial coordinate, and
- if the supplied location is outside of the domain.
Specification(s): extra/test, extra/test_coord, extra/test_bad_coord
Design: Mesh System
Issue(s): #13814
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionExodiff
- 1.27.5The system shall support assigning boundary identifiers based the bounding box of a subdomain and error if
- if no elements are located in the given bounding box;
- if no sides are located in the given bounding box;
- if no nodes are located in the given bounding box; and
- if the incorrect boundary inputs are supplied.
Specification(s): error/error_no_elements_in_bounding_box, error/error_no_side_sets_found, error/error_no_nodes_found, error/error_boundary_number
Design: Mesh System
Issue(s): #13814
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.27.6The system shall support assigning boundary identifiers based the bounding box of a subdomain
- if existing boundaries overlap and
- error if no nodes are located in the given bounding box.
Specification(s): overlap/test_overlapping, overlap/test_overlapping_sidesets_error
Design: Mesh System
Issue(s): #13814
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionExodiff
- 1.27.11The system shall error when adding nodeset identifiers given a bounding box and
- the supplied location is invalid and
- when multiple ids are provided for assignment.
Specification(s): error/test_bad_coord, error/test_bad_boundaryid
Design: Mesh System
Issue(s): #13814
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.27.24The system shall error when renaming subdomains if
- the number of new subdomain identifiers is greater than the number of old subdomain identifiers;
- the supplied the block identifier name missing;
- the supplied the block identifier number missing;
- the number of old subdomain identifiers is greater than the number of ned subdomain identifiers;
- the supplied the new block identifier name missing; and
- the supplied the new block identifier number missing.
Specification(s): error/except1, error/except2, error/except3, error/except4, error/except5, error/except6
Design: Mesh System
Issue(s): #13814
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Meshgenerators
- 1.28.10The system shall produce an error when attempting to add a new mesh node set based on a bounding box
- where the bounding box fails to span any mesh nodes, and
- where multiple boundary IDs are supplied for a single bounding box.
Specification(s): errors/bad_coord, errors/test_bad_boundaryid
Design: BoundingBoxNodeSetGenerator
Issue(s): #11640
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.17The system shall error when trying to combine multiple meshes,
- but only one input is supplied with no positions, or
- but only one input is supplied with no positions file, or
- the number of meshes and the number of positions is mismatched, or
- the number of meshes and the number of positions in the file is mismatched.
Specification(s): errors/missing_pos, errors/missing_pos_file, errors/mismatch_pos, errors/mismatch_pos_from_file
Design: CombinerGenerator
Issue(s): #13412
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.25MOOSE shall be able to check if or not users ask for too many layers of ghosting elements
Specification(s): check_nlayers
Design: DistributedRectilinearMeshGenerator
Issue(s): #11485
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.31MOOSE shall error out if the number of cores for partition is larger than the total number of cores.
Specification(s): 3d_scomm_10_out
Design: DistributedRectilinearMeshGenerator
Issue(s): #15464
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.55The system shall generate an error when the objects used to generate a mesh results in an ambiguous end point
- due to a single graph with multiple end points, or
- due to multiple independent trees.
Specification(s): ambigious/single_graph, ambigious/independent_graphs
Design: Mesh System
Issue(s): #14058
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.60MOOSE shall generate a warning if Mesh Generators are used with a mesh type that does not accept them
Specification(s): type_test
Design: GeneratedMeshGenerator
Issue(s): #13959
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.69The system shall issue an error when mesh meta-data properties are requested but never declared.
Specification(s): meta_data_error_check
Design: MeshMetaDataInterface
Issue(s): #13841
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.70The system shall error if a invalid identifier is supplied when attempting to retrieve a restart meta data object.
Specification(s): get_meta_data_error_check
Design: MeshMetaDataInterface
Issue(s): #13841
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.82The system shall throw a reasonable error:
- when old boundaries are provided that do not exist within the mesh
- and when the provided old and new boundaries are not the same length.
Specification(s): errors/missing, errors/inconsistent_size
Design: RenameBoundaryGenerator
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.88The system shall issue an error when attempting to create side sets from a bounding box:
- when no elements are located within the specified bounding box,
- when the bounding box is larger than the domain so that no new side set is created, and
- when the bounding box fails to span over any nodes.
Specification(s): errors/no_elements_in_bounding_box, errors/no_side_sets_found, errors/no_nodes_found
Design: SideSetsFromBoundingBoxGenerator
Issue(s): #11640
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.28.95The system shall be able to generate meshes by stacking up existing meshes in
- two and
- three dimensions and
- error if the dimensions of the meshes to be stacked are not consistent.
Specification(s): stack/2d, stack/3d, stack/error_dims
Design: StackGenerator
Issue(s): #11640
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionExodiff
- framework: Misc
- 1.30.6The system shall report an error when a material property is not defined on a boundary.
Specification(s): bc_check
Design: Problem system overview
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.7The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.8The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.9The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.11The 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
- 1.30.12The 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
- 1.30.13The 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
- 1.30.14The 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
- 1.30.15The 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
- 1.30.16The system shall report an error when the system solver is unable to find a converged solution.
Specification(s): steady_no_converge
Design: Executioner System
Collection(s): FAILURE_ANALYSIS
Type(s): RunApp
- 1.30.17The 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
- 1.30.18The 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
- 1.30.19The 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
- 1.30.20The 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
- 1.30.21The 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
- 1.30.22The 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
- 1.30.23The 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
- 1.30.24The 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
- 1.30.25The 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
- 1.30.26The 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
- 1.30.27The 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
- 1.30.28The 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
- 1.30.29The 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
- 1.30.30The 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
- 1.30.33The 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
- 1.30.34The 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
- 1.30.35The 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
- 1.30.36The 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
- 1.30.37The 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
- 1.30.38The 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
- 1.30.39The 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
- 1.30.40The 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
- 1.30.41The 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
- 1.30.42The 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
- 1.30.43The 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
- 1.30.44The 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
- 1.30.45The 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
- 1.30.46The 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
- 1.30.47The 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
- 1.30.48The 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
- 1.30.49The 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
- 1.30.50The 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
- 1.30.51The 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
- 1.30.52The 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
- 1.30.53The 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
- 1.30.54The 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
- 1.30.55The 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
- 1.30.56The 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
- 1.30.57The 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
- 1.30.58The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.59The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.60The system shall report an error when an elemental variable (no continuity) is coupled to a variable with continuity.
Specification(s): invalid_elemental_to_nodal_couple_test
Design: Problem system overview
Issue(s): #1405
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.61The 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
- 1.30.62The 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
- 1.30.63The 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
- 1.30.64The 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
- 1.30.65The system shall report an error when the coupled function does not exist or can not be parsedfor the Piecewise utility.
Specification(s): missing_function_test
Design: Problem system overview
Issue(s): #1405
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.66The 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
- 1.30.67The 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
- 1.30.68The 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
- 1.30.69The 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
- 1.30.70The 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
- 1.30.71The 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
- 1.30.72The 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
- 1.30.73The 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
- 1.30.74The system shall report an error when a required parameter is not supplied in a MooseObject.
Specification(s): missing_var_in_kernel_test
Design: Problem system overview
Issue(s): #1405
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.75The 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
- 1.30.76The 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
- 1.30.78The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.79The 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
- 1.30.80The 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
- 1.30.81The 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
- 1.30.82The system shall report an error when nonlinear 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
- 1.30.83The 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
- 1.30.84The 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
- 1.30.87The 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
- 1.30.88The 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
- 1.30.89The system shall report an error when an input file block associated with on 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
- 1.30.91The 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
- 1.30.92The 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
- 1.30.93The 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
- 1.30.94The 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
- 1.30.95The 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
- 1.30.96The 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
- 1.30.97The 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
- 1.30.99The 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
- 1.30.100The 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
- 1.30.101The 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
- 1.30.102The 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
- 1.30.103The 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
- 1.30.105The 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
- 1.30.106The 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
- 1.30.107The 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
- 1.30.108The 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
- 1.30.109The 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
- 1.30.110The 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
- 1.30.111The 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
- 1.30.112The 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
- 1.30.113The 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
- 1.30.114The 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
- 1.30.115The 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
- 1.30.116The 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
- 1.30.117The 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
- 1.30.118The 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
- 1.30.119The 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
- 1.30.120The system shall report an error when a discontinuous Galerkin Kernel attempts to use a solution variable.
Specification(s): dg_kernel_with_aux_var
Design: Problem system overview
Issue(s): #11039
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.121The 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
- 1.30.122The 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
- 1.30.123The 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
- 1.30.124The 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
- 1.30.125The 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
- 1.30.126The 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
- 1.30.127The 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
- 1.30.128The 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
- 1.30.129The 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
- 1.30.130The system shall report an error when a git-lfs file pointer is encountered.
Specification(s): check_git_lfs_pointer
Design: MooseUtils Namespace
Issue(s): #17407
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.135The 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
- 1.30.145The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.146The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.30.149The 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
- 1.30.155A 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): 1.30.154
- 1.30.156A 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): 1.30.154
- 1.30.159A 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.30.158
- 1.30.170The 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
- 1.30.172The system shall error if the residual calculation contribution is assigned to the incorrect variable for
- on-diagonal and
- 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
- framework: Mortar
- 1.31.2We shall tell the user that mortar doesn't currently work in 3D
Specification(s): except
Design: Constraints System
Issue(s): #13080
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Multiapps
- 1.32.4The system shall detect input file problems with sub app input files.
Specification(s): input_file
Design: MultiApp System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.5The system shall CLI argument problems related to sub app input files.
Specification(s): unused_subapp_param
Design: MultiApp System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.6The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.7The 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.8The system shall 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.9The system shall error when both positions are provided in the input file along with a separate file of positions.
Specification(s): both_positions
Design: MultiApp System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.10The system shall error when the multiapp positions file is malformed.
Specification(s): bad_positions
Design: MultiApp System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.32.11The system shall 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
- 1.32.14The 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
- 1.32.18When sub-application solve does not converge, the system shall be able to either
- abort run,
- throw error if error_on_dtmin is not set, or
- 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
- 1.32.21The system shall 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
- 1.32.52The 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): 1.32.51
- 1.32.64The system shall 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
- framework: Nodalkernels
- 1.33.4The system shall be able to enforce an upper and lower bound on a variable using nodal NCP, nodal application of resultant forces,
- have no oscillations in the solution, and
- work with automatic differentiation, and
- have a non-singular matrix, and
- be incompataible with algebraic multigrid
Specification(s): upper_and_lower_bound/exo, upper_and_lower_bound/ad_exo, upper_and_lower_bound/non_singular, upper_and_lower_bound/amg_fail
Design: UpperBoundNodalKernel
Issue(s): #2999
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionExodiffRunApp
- framework: Outputs
- 1.34.31The system shall error when specifying an invalid table fit width option.
Specification(s): console_fit_width_error
Design: Console
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.54If the user requested the output of a displaced problem and there is none present, the system shall fallback to using the non-displaced problem.
Specification(s): non_displaced_fallback
Design: Output System
Issue(s): #11309
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.55If the user asks for no displaced mesh to be created, even though displacements are provided in the mesh block, the system shall not create a displaced mesh
Specification(s): mesh_use_displaced_mesh_false
Design: Mesh System
Issue(s): #12580
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.34.54
- 1.34.60The system shall error when two outputs with the same name are created.
Specification(s): duplicate_objects
Design: Output System
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.61The system shall error when two outputs produce a file with the same name.
Specification(s): duplicate_output_files
Design: Output System
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.62The system shall reserve names for output objects:
- "none" and
- "all."
Specification(s): reserved/none_reserved, reserved/all_reserved
Design: Output System
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.68The system shall error if the supplied names for including or excluding variables is invalid.
Specification(s): invalid_hide
Design: Exodus
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.111The system shall support the disabling of an output object by restricting the execution settings.
Specification(s): no_output
Design: Output System
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.121The system shall provide an API for retrieving an output object by type and name.
Specification(s): getOutput
Design: OutputWarehouse
Issue(s): #2885
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.122The system shall provide an API for retrieving all output objects of a type.
Specification(s): getOutputs
Design: OutputWarehouse
Issue(s): #2885
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.123The system shall provide an API for retrieving output objects for the given names and type.
Specification(s): getOutputs_with_names
Design: OutputWarehouse
Issue(s): #2885
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.124The system shall provide an API for retrieving all output object names of a type.
Specification(s): getOutputNames
Design: OutputWarehouse
Issue(s): #2885
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.144The system shall error if an invalid output name is provided within the postprocessor input file block.
Specification(s): invalid_outputs
Design: Output SystemOutputInterface
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- The system shall error if a postprocessor variable is listed for suppression and inclusion within an output object block in the input file.
Specification(s): test_hidden_shown
Design: Output SystemOutputInterface
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- The system shall error if a variable is marked for output and output suppression.
Specification(s): test_hidden_shown
Design: Output System
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.34.168The system shall error if a variable is perscribed for output but does not exist.
Specification(s): test_nonexistent
Design: Output System
Issue(s): #1927
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Parser
- 1.35.2The system shall produce an error when the active parameter refers to a non-exiseant block.
Specification(s): active_section_missing
Design: Parser
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.35.3The system shall produce an error when the inactive parameter refers to a non-existent block.
Specification(s): inactive_section_missing
Design: Parser
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.35.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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.35.5The system shall honor the active or inactive parameters at the top (root) level.
Specification(s): top_level
Design: Parser
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.35.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): 1.35.9
- 1.35.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
- 1.35.15The system shall 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
- 1.35.16The system shall 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
- 1.35.21The system shall support vector size checking on input parameter vectors:
- for ints,
- for Reals.
Specification(s): vector_len_checks/realvectorlength, vector_len_checks/intvectorlength
Design: InputParameters
Issue(s): #3988
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.35.22The system shall support vector element checking:
- against constant expressions,
- against other unsigned int vector elements,
- against other long vector elements,
- against other int vector elements, and
- 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
- 1.35.23The 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
- 1.35.24The 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: Postprocessors
- 1.39.5The system shall issue an error when the dependent "change of time" calculation
- "with respect to initial" isn't calculated at the initial step and
- "with respect to previous" isn't calculated at the previous step.
Specification(s): change_over_time_error/change_with_respect_to_initial_error_dependent, change_over_time_error/change_with_respect_to_initial_error_this
Design: ChangeOverTimePostprocessor
Issue(s): #10327
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.34The system shall report and error when the target value is lower than one of the sampled endpoints.
Specification(s): below_min
Design: FindValueOnLine
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.35The system shall report and error when the target value is greater than one of the sampled endpoints.
Specification(s): above_max
Design: FindValueOnLine
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.40The system shall report and error when the sampling line extends beyond the mesh bounding box.
Specification(s): line_out_of_bounds
Design: FindValueOnLine
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.41The system shall report and error when the line sampling algorithm fails to converge within the desired depth.
Specification(s): depth_exceeded
Design: FindValueOnLine
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.80The system shall report an error when a field variable sample location is outside of the domain.
Specification(s): error
Design: PointValue
Issue(s): #3475
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.90The system shall report an error when a requested parameter for reporting does not exist
- with a wildcard in the name and
- a complete name/
Specification(s): error_report/bad_name_error, error_report/no_param_error
Design: Postprocessor System
Issue(s): #4604#5680#9087#6934
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.39.109The Postprocessor that returns a single specified component of a VectorPostprocessor shall generate an error if the requested component is out of the range of the vector
Specification(s): vpp_component_range_err
Design: VectorPostprocessorComponent
Issue(s): #11439
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.39.108
- framework: Problems
- 1.42.3The system shall error out 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
- 1.42.11Eigenvalue 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
- 1.42.12Eigenvalue 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
- 1.42.13Eigenvalue system requires SLEPc installed
Specification(s): no_slepc
Design: Eigenvalue
Issue(s): #7398
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Reporters
- 1.45.2The system shall 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
- 1.45.3The system shall report a reasonable error when declaring a Reporter value and
- the parameter that contains the name was not found,
- the parameter that contains the name is not of the correct type,
- a Reporter with the same name has already been declared, and
- 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
- 1.45.6The system shall throw an error when producing constant reporter values if
- no values are specified,
- no names are specified,
- 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
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.45.9The system shall include the ability to report iteration information:
- that outputs all information be default;
- that outputs specific information;
- automatically disables items based on execution;
- errors if requested item(s) are invalid for the execution method.
Specification(s): info/default, info/limit, info/steady, info/steady_error
Design: IterationInfo
Issue(s): #11323
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionJSONDiff
- framework: Restart
- 1.46.4The system shall error when
- a simulation is started with multiple processors but
- 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): RunExceptionExodiff
Prerequisite(s): 1.46.2
- 1.46.5The system shall error when
- a simulation is started with multiple threads but
- 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): RunExceptionExodiff
Prerequisite(s): 1.46.4
- 1.46.8The 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
- 1.46.10The 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): 1.46.9
- 1.46.19The 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): 1.46.18
- framework: Restrictable
- 1.47.2The system shall 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
- 1.47.3The system shall include an interface that provides a method for returning all associated subdomains:
- as a list of names or
- as a list of ids.
Specification(s): ids/blocks, ids/hasBlocks
Design: BlockRestrictable Interface
Issue(s): #2096
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.47.4The system shall include an interface that provides methods for indicating if the supplied subdomain identifier(s) exists on the object:
- if a single subdomain is supplied ant the object is not restricted;
- if a single subdoman is supplied and the object is restricted to a set of subdomains; and
- 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
- 1.47.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:
- the method shall return true if the property subdomains match with the object subdomains and
- 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
- 1.47.6The system shall include an interface that provides a method for returning all associated boundaries:
- as a list of names or
- as a list of ids.
Specification(s): ids/boundary, ids/boundaryIDs
Design: BoundaryRestrictable Interface
Issue(s): #2149
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.47.7The system shall include an interface that provides methods for indicating if the supplied boundary identifier(s) exists on the object:
- if a single boundary is supplied and the object is restricted to a set of boundaries and
- if multiple boundaries are supplied.
Specification(s): has/hasBoundary, has/isBoundarySubset
Design: BoundaryRestrictable Interface
Issue(s): #2149
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.47.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:
- the method shall return true if the property boundaries match with the object boundaries and
- 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
- 1.47.9The system shall error if an object restricted to subdomains is created without valid data
- regarding the problem being solved or
- 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
- 1.47.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: Samplers
- 1.48.3The system shall include a random number sampling system that errors
- if the number of rows is altered during sample access,
- if the number of columns is altered during sample access,
- if the number of random number generator seeds is set after object construction,
- if the number of rows is set to zero,
- if the number of columns is set to zero,
- if the number of random number generator seeds is set to zero,
- if the number of entries in the global sample matrix exceeds the maximum allowed,
- if the number of entries in the local sample matrix exceeds the maximum allowed, and
- if the number of entries in the local sample matrix row exceeds the maximum allowed.
Specification(s): errors/setNumberOfRows, errors/setNumberOfCols, errors/setNumberOfRandomSeeds, errors/zero_rows, errors/zero_cols, errors/zero_seeds, errors/getGlobalSamples_max, errors/getLocalSamples_max, errors/getNextLocalRow_max
Design: Sampler
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.48.4The system shall error when the expected size of a sampler is altered and accessed prior to initialization by accessing the
- the global sample matrix;
- the local sample matrix;
- the local sample matrix row;
- the total row count;
- the local row count;
- the first local row index;
- the last local row index;
- the column count.
Specification(s): reinit_errors/getGlobalSamples, reinit_errors/getLocalSamples, reinit_errors/getNextLocalRow, reinit_errors/getNumberOfRows, reinit_errors/getNumberOfLocalRows, reinit_errors/getLocalRowBegin, reinit_errors/getLocalRowEnd, reinit_errors/getNumberOfCols
Design: Sampler
Issue(s): #13906
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Time Integrators
- 1.53.3The system shall report an error if an explicit solver fails to converge with
- first-order, forward Euler,
- with mass lumping, and
- with mass lumping and preconditioning.
Specification(s): errors/diverged, errors/diverged_lumped, errors/diverged_lump_prec
Design: ActuallyExplicitEuler
Issue(s): #10837
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Time Steppers
- 1.54.9MOOSE shall check that a timestep limiting function has been defined when a user specifies the 'force_step_every_function_point' parameter as true.
Specification(s): hit_knot_err1
Design: IterationAdaptiveDT
Issue(s): #5535
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.54.10MOOSE shall check that a timestep limiting function has been defined when a user specifies a value for the 'max_function_change' parameter.
Specification(s): hit_knot_err2
Design: IterationAdaptiveDT
Issue(s): #5535
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.54.28The system shall support the ability to run a calculation for the purpose of creating a time sequence restart file suitable for failure:
- when writing the checkpoint file,
- when restarting where the time sequence is different prior to the failure.
Specification(s): restart_failure/timesequence_restart_failure_1, restart_failure/timesequence_restart_failure2
Design: TimeSequenceStepper
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionExodiff
- 1.54.29The system shall report an error if the initial time step size is calculated to be zero.
Specification(s): test
Design: TimeStepper System
Issue(s): #10553
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Transfers
- 1.55.4The system shall check execute_on for PP in sub app
Specification(s): test_execute_on
Design: MultiAppConservativeTransfer
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.55.11.55.31.55.141.55.171.55.181.55.211.55.221.55.231.55.241.55.251.55.271.55.281.55.681.55.771.55.79
- 1.55.6The system shall check execute_on for PP in master app
Specification(s): subs_execute_on
Design: MultiAppConservativeTransfer
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.55.5
- 1.55.8The system shall check execute_on for vector PP in master app
Specification(s): nearest_point_execute_on
Design: MultiAppConservativeTransfer
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.55.7
- 1.55.16The system shall error if a variable, during a direct copy of auxiliary field variables, does not exist
- in the sub-application when transferring form it and
- in the master application when transferring for it.
Specification(s): errors/error_from_sub_to_master, errors/error_to_sub_to_master
Design: MultiAppCopyTransfer
Issue(s): #13754
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.19The system shall error when the MultiAppCopyTransfer object is used on non-identical meshes.
Specification(s): different_mesh
Design: MultiAppCopyTransfer
Issue(s): #7757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.20The system shall error when the MultiAppCopyTransfer object is used on meshes with different variable types.
Specification(s): different_variable_type
Design: MultiAppCopyTransfer
Issue(s): #7757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.39The system shall error if preforming a transfer of data using the finite element solution if:
- the evaluation point does not exist and
- if the execution settings do not match between the master and sub-applications.
Specification(s): errors/missed_point, errors/mismatch_exec_on
Design: MultiAppMeshFunctionTransfer
Issue(s): #1836
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionRunApp
- 1.55.49The system shall report an error if a data transfer is requested for a data variable that is not defined.
Specification(s): test_error
Design: MultiAppPostprocessorInterpolationTransfer
Issue(s): #1737
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.55.48
- 1.55.50The system shall report an error if a variable is specified that is not LINEAR LAGRANGE or CONSTANT MONOMIAL
Specification(s): fetype_error
Design: MultiAppPostprocessorInterpolationTransfer
Issue(s): #1737
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.55.48
- 1.55.52The system shall error during the transfer of scalar variable and postprocessor data if the number of sub-applications differs from the order of the scalar variable if
- the order is too large and
- the order is too small.
Specification(s): error/sub_to_master_wrong_order, error/sub_to_master_wrong_positions
Design: MultiAppPostprocessorToAuxScalarTransfer
Issue(s): #2340
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.59The system shall error if the variable order does not match when transferring scalar variables to an application from sub-applications.
Specification(s): sub_to_master_wrong_order
Design: MultiAppScalarToAuxScalarTransfer
Issue(s): #9444
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.61The system shall error if the variable order does not match when transferring scalar variables from an application to sub-applications.
Specification(s): master_to_sub_wrong_order
Design: MultiAppScalarToAuxScalarTransfer
Issue(s): #9444
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.66MultiAppUserObjectTransfer shall generate an error if a master node/element is not contained within any sub application domains.
Specification(s): 3d_1d_err
Design: MultiAppUserObjectTransfer
Issue(s): #10313
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.55.63
- 1.55.74The system shall support the ability to transfer reporter data and error if an invalid sub-application number is supplied when transferring data
- to a sub-application,
- from a sub-application.
- from multiple sub-applications.
Specification(s): errors/to_app, errors/from_app, errors/from_multi_app
Design: MultiAppReporterTransferMultiAppCloneReporterTransfer
Issue(s): #16055
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.55.76If processors do not contain a sub-application and reporter clone transfer is requested, the system shall
- be able to transfer if reporter types are specified and
- error if types are not specified.
Specification(s): clone_type/type_specified, clone_type/error
Design: MultiAppReporterTransferMultiAppCloneReporterTransfer
Issue(s): #16055
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionJSONDiff
- framework: Userobjects
- 1.57.3The terminator system shall be able to output a custom info, warning, or error message.
Specification(s): terminator_message_1
Design: Terminator
Issue(s): #17000
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.57.4The terminator system shall check the compatibility of the suplied parameters.
Specification(s): terminator_message_2
Design: Terminator
Issue(s): #17000
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.57.5The terminator system shall check that a message is supplied if required.
Specification(s): terminator_message_3
Design: Terminator
Issue(s): #17000
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.57.7The system shall evaluate the quality of all the mesh elements and report
- a warning when the "warning" option is selected,
- an error when the "error" option is selected, or
- a message when the selected metric does not apply to the element type being examined.
Specification(s): quality_checks/failure_warning, quality_checks/failure_error, quality_checks/bypass_warning
Design: ElementQualityChecker
Issue(s): #10377
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionRunApp
- 1.57.19The system shall shall error when computing layered averages of a variable if
- the bounding box is set along with the number of layers or
- sample interpolate and
- if neither the bounds or number of layers are set.
Specification(s): errors/bounds_and_num_layers, errors/bounds_and_interp, errors/no_bounds_or_num_layers
Design: LayeredAverage
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.57.32MOOSE shall not allow both the block and boundary parameter to be specified for layered side integrals.
Specification(s): layered_side_average_error_check
Design: LayeredSideIntegralLayeredSideAverage
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.57.36The system shall report an error when points are not specified in an input file nor an external file when computing nearest point layered averages
Specification(s): error_missing_point_spec
Design: NearestPointLayeredAverage
Issue(s): #12356
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.57.171.57.251.57.271.57.331.57.341.57.411.57.421.57.46
- 1.57.37The system shall report an error when points are specified both in an input file and an external file when computing nearest point layered averages
Specification(s): error_conflicting_point_spec
Design: NearestPointLayeredAverage
Issue(s): #12356
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.57.171.57.251.57.271.57.331.57.341.57.411.57.421.57.46
- 1.57.38The system shall report an error when there is not enough coordinates specified in an external file specifing the point for computing nearest point layered averages
Specification(s): error_not_enough_points_in_a_file
Design: NearestPointLayeredAverage
Issue(s): #12356
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
Prerequisite(s): 1.57.171.57.251.57.271.57.331.57.341.57.411.57.421.57.46
- 1.57.46The system shall error if the boundary is not specified when computing the average value of a variable on a boundary.
Specification(s): test
Design: SideAverageValue
Issue(s): #9103
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Utils
- 1.58.3The system shall error when a file and data are supplied simultaneously in the PiecewiseBilinear object.
Specification(s): data_file_and_xyz_error
Design: BilinearInterpolation
Issue(s): #5991
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.58.4The system shall error when there is a mismatch in vector lengths in the PiecewiseBilinear object.
Specification(s): size_xyz_error
Design: BilinearInterpolation
Issue(s): #5991
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.58.5The system shall error when there are insufficient parameters supplied for the PiecewiseBilinear object.
Specification(s): xyz_error
Design: BilinearInterpolation
Issue(s): #5991
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.58.7The system shall prevent the user from copying InputParameters objects inside of MooseObject-derived objects.
Specification(s): test
Design: InputParameters
Issue(s): #5439
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.58.12The system shall automatically report input errors when a required parameter is not specified.
Specification(s): error
Design: InputParameters
Issue(s): #16410
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- framework: Variables
- 1.59.19The 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
- 1.59.20The system shall report an error when requested default vector value is out of range and
- accessed by name or
- 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
- framework: Vectorpostprocessors
- 1.60.6The system shall error if the broadcast CSV data does not match on all ranks in a parallel job.
Specification(s): tester_fail
Design: CSVReader
Issue(s): #9167
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.60.8The system shall issue an error if the CSVReader is used in a UserObjectTransfer because the former does not have any notion of "spatial" information.
Specification(s): csv_reader_in_transfer
Design: CSVReader
Issue(s): #9860
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.60.18The system shall support sampling of a field variable at the centroid of every element in the domain
- for elemental variables and
- nodal variables.
Specification(s): element_value_sampler/monomial, element_value_sampler/lagrange
Design: ElementValueSampler
Issue(s): #11594
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 1.60.33The LeastSquaresFit vectorpostprocessor shall generate an error if a fit for a third-order polynomial is requested and only three data points are provided
Specification(s): least_squares_csv3_order_err
Design: LeastSquaresFitCSVReader
Issue(s): #13498
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.60.42The system shall issue an error if material output samples are attempted for elements:
- but the material is restricted to a boundary, or
- the material is restricted to a block not containing the desired elements.
Specification(s): errors/boundary_restrict, errors/block_restrict
Design: MaterialVectorPostprocessor
Issue(s): #8436
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.60.44The system shall issue an error when a nodal sampler is used on a field that does not have values defined at the nodes.
Specification(s): not_nodal
Design: NodalValueSampler
Issue(s): #3087
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 1.60.49The system shall report an error when requested sample points do not fall within the mesh domain.
Specification(s): error
Design: PointValueSampler
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException