Solid Mechanics System Design Description

This template follows INL template TEM-140, "IT System Design Description."

commentnote

This document serves as an addendum to Framework System Design Description and captures information for SDD specific to the Solid Mechanics module.

Introduction

Computing mechanical deformation of solids or structures is important for a variety of applications. These can employ a variety of assumptions of material behavior, and can be either run as standalone single-physics problems or couple the mechanical response with that of other physics. The MOOSE Solid Mechanics module provides a foundational set of models for modeling mechanical deformation. This module relies on MOOSE for solving its system of equations, and is designed to be readily extended or coupled with other physics models. This document describes the system design of the Solid Mechanics module.

System Purpose

The Software Design Description provided here is description of each object in the system. The pluggable architecture of the underlying framework of the Solid Mechanics module makes MOOSE and MOOSE-based applications straightforward to develop as each piece of end-user (developer) code that goes into the system follows a well-defined interface for the underlying systems that those object plug into. These descriptions are provided through developer-supplied "markdown" files that are required for all new objects that are developed as part of the Solid Mechanics module. More information about the design documentation for MOOSE-based applications and like the Solid Mechanics module can be found in Documenting MOOSE.

System Scope

The MOOSE Solid Mechanics module provides an extensible set of capabilities for solving for mechanical deformation of solids and structures. It provides a set of C++ base classes that define interfaces for MOOSE Material objects that compute various mechanical behavior of materials at quadrature points, which include elastic properties, strains, eigenstrains, stresses, inelastic behavior, and damage. It also provides the needed Kernel classes to account for the contributions of the stress, inertia and damping in the solution for the displacement field that satisfies equilibrium. These models support one-, two-, and three-dimensional models of continuous materials, with variety of options for the treatment of the lower-dimensional models, including plane stress, plane strain, axisymmetry, and generalized plane strain. These models support both small- and finite-strain assumptions.

For modeling discrete interfaces between solid elements, this module provides a system similar to that for continuous materials that permits the definition of traction-separation laws for cohesive behavior. It also has similar support for lower-dimensional elements to represent structural elements such as beams and shells. As for the continuum models, sets of Material and Kernel classes are defined for these cases.

This module also provides a comprehensive set of boundary conditions relevant for mechanics modeling, such as pressure and traction boundary conditions. It also provides extensive postprocessing capabilities for computing quantities relevant to mechanics, such as fracture integrals.

In addition to defining the base classes that enable modeling arbitrary materials, this module also provides a set of specializations of those models for widely-used assumptions of material behavior. These include elasticity tensors defined in a variety of ways for isotropic and anisotropic materials, basic creep, plasticity and damage models, and models for eigenstrains due to thermal expansion.

Dependencies and Limitations

The MOOSE Solid Mechanics module inherits the software dependencies of the MOOSE framework, with no additional dependencies.

Definitions and Acronyms

This section defines, or provides the definition of, all terms and acronyms required to properly understand this specification.

Definitions

  • Pull (Merge) Request: A proposed change to the software (e.g. usually a code change, but may also include documentation, requirements, design, and/or testing).

  • Baseline: A specification or product (e.g., project plan, maintenance and operations (M&O) plan, requirements, or design) that has been formally reviewed and agreed upon, that thereafter serves as the basis for use and further development, and that can be changed only by using an approved change control process (NQA-1, 2009).

  • Validation: Confirmation, through the provision of objective evidence (e.g., acceptance test), that the requirements for a specific intended use or application have been fulfilled (24765:2010(E), 2010).

  • Verification: (1) The process of: evaluating a system or component to determine whether the products of a given development phase satisfy the conditions imposed at the start of that phase. (2) Formal proof of program correctness (e.g., requirements, design, implementation reviews, system tests) (24765:2010(E), 2010).

Acronyms

AcronymDescription
APIApplication Programming Interface
DOE-NEDepartment of Energy, Nuclear Energy
FEfinite element
HITHierarchical Input Text
HPCHigh Performance Computing
I/OInput/Output
INLIdaho National Laboratory
MOOSEMultiphysics Object Oriented Simulation Environment
MPIMessage Passing Interface
SDDSoftware Design Description

Design Stakeholders and Concerns

Design Stakeholders

Stakeholders for MOOSE include several of the funding sources including DOE-NE and the INL. However, Since MOOSE is an open-source project, several universities, companies, and foreign governments have an interest in the development and maintenance of the MOOSE project.

Stakeholder Design Concerns

Concerns from many of the stakeholders are similar. These concerns include correctness, stability, and performance. The mitigation plan for each of these can be addressed. For correctness, Solid Mechanics module development requires either regression or unit testing for all new code added to the repository. The project contains several comparisons against analytical solutions where possible and also other verification methods such as MMS. For stability, the Solid Mechanics module (located within the MOOSE repository) maintains multiple branches to incorporate several layers of testing both internally and for dependent applications. Finally, performance tests are also performed as part of the the normal testing suite to monitor code change impacts to performance.

System Design

The MOOSE Solid Mechanics module relies on MOOSE to solve the equilibrium equations governing mechanical deformation, which can include contributions from the mechanical deformation models provided by this module, accounting for the couplings that may occur between the mechanical models and other physics models. The design of MOOSE is based on the concept of modular code objects that define all of the aspects of the physics model. This module follows this design, providing code objects that define specific aspects of the solutions for its physics that derive from the base classes defined by the MOOSE framework and the modules that it depends on.

The Solid Mechanics module provides specialized Kernel classes that compute the contributions from the terms in the partial differential equations governing mechanical deformation. It also provides specialized Material classes that define the constitutive behavior of solid materials. In addition, it provides BC, Action, Postprocessor and VectorPostprocessor classes to facilitate various aspects of these simulations.

System Structure

The MOOSE Solid Mechanics module relies on the MOOSE framework to provide the core functionality of solving multiphysics problems using the finite element method. The structure of the Solid Mechanics module is based on defining C++ classes that derive from classes in the MOOSE framework to provide functionality for solution of mechanics problems. By using the interfaces defined in MOOSE base classes for these classes, this module is able to rely on MOOSE to execute these models at the appropriate times during the simulation and use their results in the desired ways.

Data Design and Control

At a high level, the system is designed to process HIT input files to construct several objects that will constitute an FE simulation. Some of the objects in the simulation may in turn load other file-based resources to complete the simulation. Examples include meshes or data files. The system will then assemble systems of equations and solve them using the libraries of the Code Platform. The system can then output the solution in one or more supported output formats commonly used for visualization.

Human-Machine Interface Design

The Solid Mechanics module is a command-line driven program. All interaction with the Solid Mechanics module is ultimately done through the command line. This is typical for HPC applications that use the MPI interface for running on super computing clusters. Optional GUIs may be used to assist in creating input files and launching executables on the command line.

System Design Interface

All external system interaction is performed either through file I/O or through local API calls. Neither the Solid Mechanics module, nor the MOOSE framework, nor the other MOOSE modules are designed to interact with any external system directly through remote procedure calls. Any code to code coupling performed using the framework are done directly through API calls either in a static binary or after loading shared libraries.

Security Structure

The Solid Mechanics module does not require any elevated privileges to operate and does not run any stateful services, daemons or other network programs. Distributed runs rely on the MPI library.

Requirements Cross-Reference

  • solid_mechanics: Generalized Plane Strain
  • 8.3.10The tensor mechanics strain calculators shall solve generalized plane strain in the x-y plane for small strain

    Specification(s): gps_xy_small

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.11The tensor mechanics strain calculators shall solve generalized plane strain in the x-y plane for incremental strain

    Specification(s): gps_xy_incremental

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.12The tensor mechanics strain calculators shall solve generalized plane strain in the x-y plane for finite strain

    Specification(s): gps_xy_finite

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.13The tensor mechanics strain calculators shall solve generalized plane strain in the x-z plane for small strain

    Specification(s): gps_xz_small

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.14The tensor mechanics strain calculators shall solve generalized plane strain in the x-z plane for incremental strain

    Specification(s): gps_xz_incremental

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.15The tensor mechanics strain calculators shall solve generalized plane strain in the x-z plane for finite strain

    Specification(s): gps_xz_finite

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.16The tensor mechanics strain calculators shall solve generalized plane strain in the y-z plane for small strain

    Specification(s): gps_yz_small

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.17The tensor mechanics strain calculators shall solve generalized plane strain in the y-z plane for incremental strain

    Specification(s): gps_yz_incremental

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.3.18The tensor mechanics strain calculators shall solve generalized plane strain in the y-z plane for finite strain

    Specification(s): gps_yz_finite

    Design: Generalized Plane Strain

    Issue(s): #11257

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: AccumulateAux
  • 8.6.1The system shall provide an aux kernel that accumulates the values of a given variable.

    Specification(s): accumulate_aux

    Design: AccumulateAux

    Issue(s): #7091

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: ADComputeFiniteStrain
  • 8.12.2We shall be able to reproduce finite strain elasticity results of the hand-coded simulation using automatic differentiation.

    Specification(s): finite_elastic

    Design: ADComputeFiniteStrain

    Issue(s): #12650

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.12.3The Jacobian for the AD finite strain elasticity problem shall be perfect

    Specification(s): finite_elastic-jac

    Design: ADComputeFiniteStrain

    Issue(s): #12650

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.13.1Finite strain methods in Tensor Mechanics should be able to adequately simulate a bar bending simulation in 2D using AD and match non-AD methods

    Specification(s): bending

    Design: ADComputeFiniteStrain

    Issue(s): #7228#13260

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.13.2Finite strain methods in Tensor Mechanics should be able to adequately simulate a bar bending simulation in 2D using a volumetric locking correction using AD and match non-AD methods

    Specification(s): bending_Bbar

    Design: ADComputeFiniteStrain

    Issue(s): #7228#13260

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.13.3Finite strain methods in Tensor Mechanics should be able to adequately simulate a tensile test simulation in 3D using AD and match non-AD methods

    Specification(s): 3d_bar

    Design: ADComputeFiniteStrain

    Issue(s): #7228#13260

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.13.4Finite strain methods in Tensor Mechanics should be able to adequately simulate a tensile test simulation in 3D using a volumetric locking correction using AD and match non-AD methods

    Specification(s): 3d_bar_Bbar

    Design: ADComputeFiniteStrain

    Issue(s): #7228#13260

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.13.5Finite strain methods in Tensor Mechanics should be able to adequately simulate a bar bending simulation in 2D using AD and calculate perfect Jacobians

    Specification(s): bending-jac

    Design: ADComputeFiniteStrain

    Issue(s): #12650#13260

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.13.6Finite strain methods in Tensor Mechanics should be able to adequately simulate a bar bending simulation in 2D using a volumetric locking correction using AD and calculate perfect Jacobians

    Specification(s): bending_Bbar-jac

    Design: ADComputeFiniteStrain

    Issue(s): #12650#13260

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.13.7Finite strain methods in Tensor Mechanics should be able to adequately simulate a tensile test simulation in 3D using AD and calculate perfect Jacobians

    Specification(s): 3d_bar-jac

    Design: ADComputeFiniteStrain

    Issue(s): #12650#13260

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.13.8Finite strain methods in Tensor Mechanics should be able to adequately simulate a tensile test simulation in 3D using a volumetric locking correction using AD and calculate perfect Jacobians

    Specification(s): 3d_bar_Bbar-jac

    Design: ADComputeFiniteStrain

    Issue(s): #12650#13260

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.13.9Finite strain methods in Tensor Mechanics, using the auto differentiation capabilities, shall cut the timestep through a mooseException when the loading conditions deform the elements so much as to produce a negative number under the square root term in the Rashid approximation for the rotation tensor calcuation

    Specification(s): bending_exception

    Design: ADComputeFiniteStrain

    Issue(s): #19067

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • solid_mechanics: Pressure Action System
  • 8.17.1The Pressure boundary condition action shall create the objects needed to apply automatic differentiation pressure boundary conditions on a 3D model as demonstrated by correctly computing the response of an elastic small-strain isotropic unit cube with pressure applied on three faces to create a hydrostatic pressure and match non-AD methods.

    Specification(s): 3D

    Design: Pressure Action System

    Issue(s): #4781#13260

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.17.2The Pressure boundary condition action shall create the objects needed to apply automatic differentiation pressure boundary conditions on a 3D model as demonstrated by correctly computing the response of an elastic small-strain isotropic unit cube with pressure applied on three faces to create a hydrostatic pressure using the volumetric locking correction b-bar formulation and match non-AD methods.

    Specification(s): 3D_Bbar

    Design: Pressure Action System

    Issue(s): #4781#8235#13260

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.17.3The Pressure boundary condition action shall create the objects needed to apply automatic differentiation pressure boundary conditions on a 3D model as demonstrated by correctly computing the response of an elastic small-strain isotropic unit cube with pressure applied on three faces to create a hydrostatic pressure and calculate a perfect Jacobian.

    Specification(s): 3D-jac

    Design: Pressure Action System

    Issue(s): #4781#13260

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.17.4The Pressure boundary condition action shall create the objects needed to apply automatic differentiation pressure boundary conditions on a 3D model as demonstrated by correctly computing the response of an elastic small-strain isotropic unit cube with pressure applied on three faces to create a hydrostatic pressure using the volumetric locking correction b-bar formulation and calculate a perfect Jacobian.

    Specification(s): 3D_Bbar-jac

    Design: Pressure Action System

    Issue(s): #4781#8235#13260

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.94.1The Pressure boundary condition action shall create the objects needed to apply pressure boundary conditions on a 3D model as demonstrated by correctly computing the response of an elastic small-strain isotropic unit cube with pressure applied on three faces to create a hydrostatic pressure.

    Specification(s): 3D

    Design: Pressure Action System

    Issue(s): #4781

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.94.2The Pressure boundary condition action shall create the objects needed to apply pressure boundary conditions on a 3D model as demonstrated by correctly computing the response of an elastic small-strain isotropic unit cube with pressure applied on three faces to create a hydrostatic pressure using the volumetric locking correction b-bar formulation.

    Specification(s): 3D_Bbar

    Design: Pressure Action System

    Issue(s): #4781#8235

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: Radial Return Stress Update
  • 8.18.1The return mapping algorithm shall use automatic differentiation to compute the derivative of the yield function with respect to the internal variable, and the solution should be the same as existing hand coded derivative.

    Specification(s): reference

    Design: Radial Return Stress Update

    Issue(s): #20407

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.97.14The system shall return an error if the user requests substepping for a radial return inelastic model that does not implement it yet.

    Specification(s): isotropic_plasticity_substepping_error

    Design: Radial Return Stress Update

    Issue(s): #14757

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • solid_mechanics: ADComputeSmallStrain
  • 8.19.2We shall be able to reproduce the results of the hand-coded simulation using automatic differentiation in the production stress divergence kernel

    Specification(s): linear-ad

    Design: ADComputeSmallStrain

    Issue(s): #5658#12650

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.19.3We shall be able to reproduce the results of the hand-coded simulation using automatic differentiation with reversed stress and strain materials

    Specification(s): linear-ad-reverse

    Design: ADComputeSmallStrain

    Issue(s): #5658#12650

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.19.5The Jacobian for the automatic differentiation problem shall be perfect

    Specification(s): linear-ad-jac

    Design: ADComputeSmallStrain

    Issue(s): #5658#12650

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.19.6The Jacobian for the automatic differentiation problem with reversed stress and strain materials shall be perfect

    Specification(s): linear-ad-jac-reverse

    Design: ADComputeSmallStrain

    Issue(s): #5658#12650

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • solid_mechanics: Line Element Action System
  • 8.27.1The LineElementAction class shall correctly create the objects required for a mechanics simulation using beam or truss elements.

    Specification(s): 2_block_action

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.2The LineElementAction class shall correctly set the common parameters in the action subblocks.

    Specification(s): 2_block_common_action

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.3The LineElementAction class shall produce an error when the displacement variables are not provided by the user.

    Specification(s): beam_action_test1

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.4The LineElementAction class shall produce an error if the user provided inputs for strain_type, rotation_type and use_displaced_mesh parameters are not compatible.

    Specification(s): beam_action_test2

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.5The LineElementAction class shall produce an error if the number of variables listed in the save_in parameter differs from the number of displacement variables.

    Specification(s): beam_action_test3

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.6The LineElementAction class shall produce an error if the number of variables listed in the diag_save_in parameter differs from the number of displacement variables.

    Specification(s): beam_action_test4

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.7The LineElementAction class shall produce an error if the names for the rotational degrees of freedom are not provided by the user.

    Specification(s): beam_action_test5

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.8The LineElementAction class shall produce an error if the number of rotational variables provided as input differs from the number of displacement variables.

    Specification(s): beam_action_test6

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.9The LineElementAction class shall produce an error if the moment of inertia, area and orientation of the beam are not provided as input.

    Specification(s): beam_action_test7

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.10The LineElementAction class shall produce an error if translational and rotational velocities and accelerations are not provided as input for dynamic simulations using beam elements.

    Specification(s): beam_action_test8

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.11The LineElementAction class shall produce an error if the number of translational and rotational velocities and accelerations differs from the number of displacement variables.

    Specification(s): beam_action_test9

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.12The LineElementAction class shall produce an error if Newmark time integration parameters (beta and gamma) are not provided as input for dynamic simulations using beam elements.

    Specification(s): beam_action_test10

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.13The LineElementAction class shall produce an error if density is not provided as input for dynamic beam simulations using beams elements with consistent mass/inertia matrix.

    Specification(s): beam_action_test11

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.14The LineElementAction class shall produce an error if nodal mass is not provided as input for dynamic beam simulations using beam elements with nodal mass matrix.

    Specification(s): beam_action_test12

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.15The LineElementAction class shall produce an error if nodal inertia is not provided as input for dynamic beam simulations using beam elements with nodal inertia matrix.

    Specification(s): beam_action_test13

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.16The LineElementAction class shall produce an error if multiple subblocks specify properties for the same mesh block.

    Specification(s): beam_action_test14

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.17The LineElementAction class shall produce an error if an action subblock is mesh block restricted while another is not.

    Specification(s): beam_action_test15

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.18The LineElementAction class shall produce an error if dynamic_nodal_translational_inertia is set to true in the common action block but the subblocks do not have the parameters required for a dynamic beam simulation using beam elements.

    Specification(s): beam_action_test16

    Design: Line Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.30The LineElementAction shall create the translational and rotational velocities and accelerations required for a dynamic simulation using beam elements.

    Specification(s): add_dynamic_variables_action

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.33The LineElementAction shall correctly create the input blocks required for a dynamic beam simulation using beam elements and a consistent mass/inertia matrix in the presence of Rayleigh damping and numerical damping in the form of Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): dyn_euler_rayleigh_hht_action

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.34The LineElmentAction shall correctly create the input blocks required for a dynamic beam simulation using beam elements and nodal mass/inertia matrix in the presence of Rayleigh damping and numerical damping in the form of Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): dyn_euler_added_mass_inertia_damping_action

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.51The LineElementAction class shall produce an error if add_dynamic_variables option is set to false while dynamic_consistent_inertia, dynamic_nodal_rotational_inertia or dynamic_nodal_translational_inertia options are set to true.

    Specification(s): error_16

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • solid_mechanics: C0 Timoshenko Beam Element
  • 8.27.19The mechanics system shall accurately predict the displacement of a beam element with a frictionless contact constraint.

    Specification(s): frictionless_constraint

    Design: C0 Timoshenko Beam Element

    Issue(s): #14873

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.20The mechanics system shall accurately predict the displacement of a beam element with a glued contact constraint.

    Specification(s): glued_constraint

    Design: C0 Timoshenko Beam Element

    Issue(s): #14873

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.21The mechanics system shall accurately predict the displacement of a beam element with a frictional contact constraint.

    Specification(s): frictional_constraint

    Design: C0 Timoshenko Beam Element

    Issue(s): #14873

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.22The mechanics system shall correctly predict the natural frequencies of an Euler-Bernoulli beam modeled using beam elements with consistent mass/inertia.

    Specification(s): dyn_euler

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.23The mechanics system shall correctly predict the natural frequencies of a Timoshenko beam modeled using beam elements with consistent mass/inertia.

    Specification(s): dyn_timoshenko

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.24The mechanics system shall correctly predict the natural frequencies of an Euler-Bernoulli beam modeled using beam elements in the presence of Rayleigh damping and numerical damping introduced by Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): dyn_euler_rayleigh_hht

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.25The mechanics system shall correctly predict the natural frequencies of an Euler-Bernoulli beam modeled using beam elements in the presence of Rayleigh damping and numerical damping introduced by Hilber-Hughes-Taylor (HHT) time integration when using the velocity and acceleration computed using the Newmark-Beta time integrator.

    Specification(s): dyn_euler_rayleigh_hht_ti

    Design: C0 Timoshenko Beam Element

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.26The mechanics system shall correctly predict the natural frequencies of a massless Euler-Bernoulli beam modeled using beam elements with a nodal masses placed at the ends.

    Specification(s): dyn_euler_added_mass

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.27The mechanics system shall correctly predict the natural frequencies of a massless Euler-Bernoulli beam modeled using beam elements with added nodal masses when the location and values of the masses are provided using a csv file.

    Specification(s): dyn_euler_added_mass_file

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.28The mechanics system shall correctly model the response of a beam modeled using beam elements when gravitational force (proportional to nodal mass) is applied to the beam.

    Specification(s): dyn_euler_added_mass_gravity

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.29The mechanics system shall correctly model the response of a beam modeled using beam elements under gravitational force when the nodal mass distribution is provided using a csv file.

    Specification(s): dyn_euler_added_mass_gravity_2

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.30The LineElementAction shall create the translational and rotational velocities and accelerations required for a dynamic simulation using beam elements.

    Specification(s): add_dynamic_variables_action

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.31The mechanics system shall correctly model the response of a beam modeled using beam elements in the presence of nodal mass, nodal inertia and Rayleigh damping.

    Specification(s): dyn_euler_added_mass_inertia_damping

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.32The mechanics system shall correctly model the response of a beam modeled using beam elements in the presence of nodal mass, nodal inertia and Rayleigh damping when using the velocity and accelerations computed by the Newmark-Beta time integrator.

    Specification(s): dyn_euler_added_mass_inertia_damping_ti

    Design: C0 Timoshenko Beam Element

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.33The LineElementAction shall correctly create the input blocks required for a dynamic beam simulation using beam elements and a consistent mass/inertia matrix in the presence of Rayleigh damping and numerical damping in the form of Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): dyn_euler_rayleigh_hht_action

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.34The LineElmentAction shall correctly create the input blocks required for a dynamic beam simulation using beam elements and nodal mass/inertia matrix in the presence of Rayleigh damping and numerical damping in the form of Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): dyn_euler_added_mass_inertia_damping_action

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.35The mechanics system shall correctly predict the natural frequency of a cantilever beam modeled using beam elements with a mass at the free end.

    Specification(s): dyn_euler_added_mass2

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.36The InertialForceBeam class shall produce an error if the number of variables provided for rotations differs from that provided for displacements.

    Specification(s): error_1

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.37The NodalRotatioanlInertia class shall produce an error if the number of rotational velocities and accelerations provided as input differ from the number of rotations.

    Specification(s): error_2

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.38The NodalRotationalInertia class shall produce an error if the user provided nodal inertia is not positive definite.

    Specification(s): error_3

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.39The NodalRotatioanlInertia class shall produce an error if the user provided x and y orientations are not unit vectors.

    Specification(s): error_4

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.40The NodalRotatioanlInertia class shall produce an error if the user provided x and y orientations are not perpendicular to each other.

    Specification(s): error_5

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.41The NodalRotatioanlInertia class shall produce an error if only x or y orientation is provided as input by the user.

    Specification(s): error_6

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.42The InertialForceBeam class shall produce an error if the number of translational and rotational velocities and accelerations provided as input differ from the number of displacement variables.

    Specification(s): error_7

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.43The NodalTranslationalInertia class shall produce an error if nodal mass is provided as input both as a constant value and also using a csv file.

    Specification(s): error_8

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.44The NodalTranslationalInertia class shall produce an error if nodal mass is not provided as input either as a constant value or using a csv file.

    Specification(s): error_9

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.45The NodalTranslationalInertia class shall produce an error if the number of columns in the nodal mass file is not 4.

    Specification(s): error_10

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.46The NodalTranslationalInertia class shall produce an error if all the nodal positions provided in the nodal mass file cannot be found in the given boundary or mesh block.

    Specification(s): error_11

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.47The NodalGravity class shall produce an error if nodal mass is provided as input both as a constant value and also using a csv file.

    Specification(s): error_12

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.48The NodalGravity class shall produce an error if nodal mass is not provided as input either as a constant value or using a csv file.

    Specification(s): error_13

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.49The NodalGravity class shall produce an error if the number of columns in the nodal mass file is not 4.

    Specification(s): error_14

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.50The NodalGravity class shall produce an error if all the nodal positions provided in the nodal mass file cannot be found in the given boundary or mesh block.

    Specification(s): error_15

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.51The LineElementAction class shall produce an error if add_dynamic_variables option is set to false while dynamic_consistent_inertia, dynamic_nodal_rotational_inertia or dynamic_nodal_translational_inertia options are set to true.

    Specification(s): error_16

    Design: C0 Timoshenko Beam ElementLine Element Action System

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.52The NodalTranslationalInertia class shall produce an error if nodal mass is provided as input both as constant value and also using a csv file.

    Specification(s): error_17

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.56The mechanics system shall accurately predict the static bending response of a Timoshenko beam modeled using beam elements under small deformations in the y direction.

    Specification(s): timoshenko_small_strain_y

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.57The mechanics system shall accurately predict the static bending response of a Timoshenko beam modeled using beam elements under small deformations in the z direction.

    Specification(s): timoshenko_small_strain_z

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.58The mechanics system shall accurately predict the static bending response of a Euler-Bernoulli beam modeled using beam elements under small deformations in the y direction.

    Specification(s): euler_small_strain_y

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.59The mechanics system shall accurately predict the static bending response of a Euler-Bernoulli beam modeled using beam elements under small deformations in the z direction.

    Specification(s): euler_small_strain_z

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.60The mechanics system shall accurately predict the static bending response of a Euler-Bernoulli beam modeled using beam elements under finite deformations in the y direction.

    Specification(s): euler_finite_rot_y

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.61The mechanics system shall accurately predict the static bending response of a Euler-Bernoulli beam modeled using beam elements under finite deformations in the z direction.

    Specification(s): euler_finite_rot_z

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.62The LineElementAction class shall accurately create the objects required to model the static bending response of an Euler-Bernoulli beam modeled using beam elements under small deformations.

    Specification(s): euler_small_y_with_action

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.63The LineElementAction class shall accurately create the objects required to model the static bending response of an Euler-Bernoulli beam modeled using beam elements under finite deformations.

    Specification(s): euler_finite_y_with_action

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.64The mechanics system shall accurately predict the axial displacement of an Euler-Bernoulli pipe modeled using beam elements.

    Specification(s): euler_pipe_axial_disp

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.65The mechanics system shall accurately predict the axial forces on an Euler-Bernoulli pipe modeled using beam elements.

    Specification(s): euler_pipe_axial_force

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

    Verification: Beams

  • 8.27.66The mechanics system shall accurately predict the bending response of an Euler-Bernoulli pipe modeled using beam elements.

    Specification(s): euler_pipe_bend

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.67The ComputeIncrementalBeamStrain class shall produce an error if the number of supplied displacements and rotations do not match.

    Specification(s): error_displacements1

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.68The StressDivergenceBeam class shall produce an error if the number of supplied displacements and rotations do not match.

    Specification(s): error_displacements2

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.69The ComputeIncrementalBeamStrain class shall produce an error if large strain calculation is requested for asymmetric beam configurations with non-zero first or third moments of area.

    Specification(s): error_large_strain

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.70The ComputeIncrementalBeamStrain class shall produce an error if the y orientation provided is not perpendicular to the beam axis.

    Specification(s): error_y_orientation

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.27.71The mechanics system shall accurately predict the torsional response of a beam modeled using beam elements with auto-calculated polar moment of inertia.

    Specification(s): torsion_1

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

    Verification: Beams

  • 8.27.72The mechanics system shall accurately predict the torsional response of a beam modeled using beam elements with user provided polar moment of inertia.

    Specification(s): torison_2

    Design: C0 Timoshenko Beam Element

    Issue(s): #10313

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.27.73The mechanics system shall accurately predict the static bending response of an Euler beam modeled using beam elements under small deformation when the beam is
    1. oriented along the global Z axis.
    2. oriented on the YZ plane at a 45 deg. angle.
    3. oriented on the YZ plane at a 45 deg. angle and has in-plane loading.
    4. oriented on the YZ plane at a 45 deg. angle and has in-plane loading with non-symmetric cross section geometry.
    5. oriented on the YZ plane at a 45 deg. angle and has in-plane loading and the cross section geometry is non-symmetric.
    6. oriented along the global Y axis.
    7. oriented on the XZ plane at a 45 deg. angle.
    8. oriented on the XZ plane at a 45 deg. angle, and the external loading takes place on the same plane.
    9. oriented on the XY plane at a 45 deg. angle.
    10. oriented on the XY plane at a 45 deg. angle, and the external loading takes place on the same plane.

    Specification(s): euler_small_strain/orientation_z, euler_small_strain/orientation_yz, euler_small_strain/orientation_yz_force_yz, euler_small_strain/orientation_yz_force_yz_cross_section, euler_small_strain/orientation_yz_cross_section, euler_small_strain/orientation_y, euler_small_strain/orientation_xz, euler_small_strain/orientation_xz_force_xz, euler_small_strain/orientation_xy, euler_small_strain/orientation_xy_force_xy

    Design: C0 Timoshenko Beam Element

    Issue(s): #14772

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.27.74The mechanics system shall accurately predict the static bending response of an Euler beam modeled using beam elements under small deformations when the beam is
    1. subjected to simply supported BCs and distributed loading.
    2. subjected to combined bending and torsion loading.

    Specification(s): verification_tests/ansys_vm2, verification_tests/ansys_vm12

    Design: C0 Timoshenko Beam Element

    Issue(s): #14772

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: CappedWeakPlaneStressUpdate
  • 8.30.1The CappedWeakPlaneStressUpdate model shall generate an error if the friction angle is negative

    Specification(s): except1

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.30.2The CappedWeakPlaneStressUpdate model shall generate an error if the dilation angle is negative

    Specification(s): except2

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.30.3The CappedWeakPlaneStressUpdate model shall generate an error if the friction angle is less than the dilation angle

    Specification(s): except3

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.30.4The CappedWeakPlaneStressUpdate model shall generate an error if the cohesion is negative

    Specification(s): except4

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.30.5The CappedWeakPlaneStressUpdate model shall generate an error if the sum of the tensile and compressive strength is less than smoothing_tol

    Specification(s): except5

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.30.6The CappedWeakPlaneStressUpdate model shall generate an error if the normal vector has zero length

    Specification(s): except6

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.30.7The CappedWeakPlaneStressUpdate model shall correctly compute stresses in the elastic regime

    Specification(s): small1

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.8The CappedWeakPlaneStressUpdate model shall correctly represent tensile failure with the Lame coefficient lambda=0

    Specification(s): small2

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.9The CappedWeakPlaneStressUpdate model shall correctly represent tensile failure with the Lame coefficient lambda=4

    Specification(s): small3

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.10The CappedWeakPlaneStressUpdate model shall correctly represent compression failure

    Specification(s): small4

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.11The CappedWeakPlaneStressUpdate model shall correctly represent shear failure

    Specification(s): small5

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.12The CappedWeakPlaneStressUpdate model shall correctly represent both tensile and shear failure

    Specification(s): small6

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.13The CappedWeakPlaneStressUpdate model shall correctly represent tensile behavior with hardening

    Specification(s): small7

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.14The CappedWeakPlaneStressUpdate model shall correctly represent compression behavior with hardening

    Specification(s): small8

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.15The CappedWeakPlaneStressUpdate model shall correctly represent shear behavior with hardening

    Specification(s): small9

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.16The CappedWeakPlaneStressUpdate model shall correctly represent hardening under combined tension and shear

    Specification(s): small10

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.17The CappedWeakPlaneStressUpdate model shall correctly represent hardening under combined tension and shear with an initial stress

    Specification(s): small11

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.30.18The CappedWeakPlaneStressUpdate model shall correctly represent the behavior of a column of elements that is pulled, then pushed

    Specification(s): pull_push

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.30.19The CappedWeakPlaneStressUpdate model shall correctly represent the behavior of a column of elements that is pulled, then pushed, with tensile hardening

    Specification(s): pull_push_h

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7784

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.30.20The CappedWeakPlaneStressUpdate model shall correctly represent the behavior of a beam with its ends fully clamped

    Specification(s): cwp_beam

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7960

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.30.21The CappedWeakPlaneStressUpdate model shall correctly represent the tensile failure of a single layer of elements in 1 nonlinear step

    Specification(s): pull_and_shear_1step

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7960

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.30.22The CappedWeakPlaneStressUpdate model shall correctly represent a dynamic problem with plasticity in which a column of material is pulled in tension

    Specification(s): pull_and_shear

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7960

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.30.23The CappedWeakPlaneStressUpdate model shall correctly represent a dynamic problem with plasticity in which a column of material is pushed in compression

    Specification(s): push_and_shear

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7960

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.30.24The system shall permit exceptions to be thrown from material models with stateful properties without reading/writing to/from uninitialized memory

    Specification(s): throw_test

    Design: CappedWeakPlaneStressUpdate

    Issue(s): #7960

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • solid_mechanics: CentralDifference
  • 8.31.1The NewmarkBeta timeintegrator shall correctly calculate the response of a 1D mesh.

    Specification(s): implicit

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.2The CentralDifference timeintegrator shall correctly calculate the response of a 1D mesh when the the consistent mass matrix option is used.

    Specification(s): explicit

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.3The NewmarkBeta timeintegrator shall correctly calculate the response of a 2D mesh.

    Specification(s): implicit

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.4The CentralDifference timeintegrator shall correctly calculate the response of a 2D mesh when the the consistent mass matrix option is used.

    Specification(s): explicit

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.5The NewmarkBeta timeintegrator shall correctly calculate the response of a 3D mesh.

    Specification(s): implicit

    Design: CentralDifference

    Issue(s): #13964#9726#22997

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.6The CentralDifference timeintegrator shall correctly calculate the response of a 3D mesh when the the consistent mass matrix option is used.

    Specification(s): explicit

    Design: CentralDifference

    Issue(s): #13964#9726#22997

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.7The central difference time integrator time step can be increased by selecting density scaling.

    Specification(s): explicit_mass_scaling

    Design: CentralDifference

    Issue(s): #13964#9726#22997

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.31.8The system shall include central difference time integration that correctly calculates the response of a 1D mesh with nodal masses equal to those of a corresponding lumped mass system.

    Specification(s): explicit_nodalmass

    Design: CentralDifference

    Issue(s): #13964#9726#16163

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.9The system shall include Newmark-beta time integration that correctly calculate the response of a 1D mesh with nodal masses equal to those of a corresponding lumped mass system.

    Specification(s): implicit_nodalmass

    Design: CentralDifference

    Issue(s): #13964#9726#16163

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.10The system shall include a central difference time integration that when used with the lumped mass shall correctly calculate the response of a 1D mesh and produce results that are identical to those calculated using equivalent nodal masses.

    Specification(s): explicit_lumped

    Design: CentralDifference

    Issue(s): #13964#9726#16163

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.11The system shall include central difference time integration that when used with the constant mass option shall correctly calculate the response of a 1D mesh and produce results that are identical to those calculated using equivalent nodal masses.

    Specification(s): explicit_constant_mass

    Design: CentralDifference

    Issue(s): #13964#9726#16163

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.12The system shall include central difference time integration that correctly calculates the response of a 2D mesh with nodal masses equal to those of a corresponding lumped mass system.

    Specification(s): explicit_nodalmass

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.13The system shall include Newmark-beta time integration that correctly calculates the response of a 2D mesh with nodal masses equal to those of a corresponding lumped mass system.

    Specification(s): implicit_nodalmass

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.14The system syall include central difference time integration that when used with the lumped mass option shall correctly calculate the response of a 2D mesh and produce results that are identical to those calculated using equivalent nodal masses.

    Specification(s): explicit_lumped

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.15The system syall include central difference time integration that when used with the constant mass option shall correctly calculate the response of a 2D mesh and produce results that are identical to those calculated using equivalent nodal masses.

    Specification(s): explicit_constant_mass

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.16The system shall include central difference time integration that correctly calculates the response of a 3D mesh with nodal masses equal to those of a corresponding lumped mass system.

    Specification(s): explicit_nodalmass

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.17The system shall include Newmar-beta time integration that correctly calculates the response of a 3D mesh with nodal masses equal to those of a corresponding lumped mass system.

    Specification(s): implicit_nodalmass

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.18The system shall include central difference time integration that when used with the lumped mass option shall correctly calculate the response of a 3D mesh and produce results that are identical to those calculated using equivalent nodal masses.

    Specification(s): explicit_lumped

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.31.19The system shall include central difference time integration that when used with the constant mass option shall correctly calculate the response of a 3D mesh and produce results that are identical to those calculated using equivalent nodal masses.

    Specification(s): explicit_constant_mass

    Design: CentralDifference

    Issue(s): #13964#9726

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: AverageSectionValueSampler
  • 8.40.1The system shall compute the average of the nodal displacements of a cross section defined by the user via a nodal vector.

    Specification(s): test_one_step

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.40.2The system shall compute the average of the nodal displacements of a cross section defined by the user via a nodal vector at automatically determined positions.

    Specification(s): test_one_step_auto_positions

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.40.3The system shall compute the average of the nodal displacements of a cross section at automatically located points that are updated with mesh adaptivity.

    Specification(s): test_adapt

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.40.4The system shall compute the average of the nodal displacements of a cross section at automatically located points that are updated with mesh adaptivity.

    Specification(s): test_adapt_err

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.40.5The system shall generate an error if the user defines an empty set of positions in AverageSectionValueSampler.

    Specification(s): test_one_step_empty_positions_err

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.40.6The system shall generate an error if the user specifies a nonexistent variable in AverageSectionValueSampler.

    Specification(s): test_one_step_nonexistent_variable

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.40.7The system shall compute the average of the nodal displacements of a cross section defined by the user via a nodal vector at multiple steps.

    Specification(s): test_one_step_heavy

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.40.8The system shall compute the average of the nodal displacements of a cross section defined by the user via two nodal vector and two reference points for two respective ducts.

    Specification(s): test_one_step_two_ducts

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.40.9The system shall compute the average of the nodal displacements of a cross section with mechanically and thermally induced deformation.

    Specification(s): test_therm_exp

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.40.10The system shall compute the average of the nodal displacements of a cross section with mechanically and thermally induced deformation with a symmetry plane not aligned with a Cartesian coordinate, and match a reference solution without the symmetry plane.

    Specification(s): test_therm_exp_symm

    Design: AverageSectionValueSampler

    Issue(s): #26165

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Solid Mechanics Module
  • 8.41.23This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.24This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_fileread

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.25This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_user_object

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.26This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_save_euler

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.27This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_read_slip_prop

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.28This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_cutback

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.29This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_substep

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.30This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): test_linesearch

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.31This is a deprecated system that has been replaced by the stress update material-based crystal plasticity and should be removed.

    Specification(s): orthotropic_rotation

    Design: Solid Mechanics Module

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Introduction
  • 8.41.39The Zienkiewicz-Zhu patch shall calculate the stress components at the nodes, with equivalent results in both serial and parallel simulations, in the stress-update based crystal plasticity implementation

    Specification(s): patch_recovery

    Design: Introduction

    Issue(s): #18721

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.41.63The Zienkiewicz-Zhu patch shall calculate the stress components at the nodes, with equivalent results in both serial and parallel simulations, in a crystal plasticity finite strain application.

    Specification(s): patch_recovery

    Design: Introduction

    Issue(s): #18721

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.85.1The SolidMechanics module shall be able to construct nodal variables from material properties that are defined at quadrature points.

    Specification(s): nodal_patch_recovery

    Design: Introduction

    Issue(s): #15748#12036

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.105.1The Zienkiewicz-Zhu patch shall calculate the stress components at the nodes, with equivalent results in both serial and parallel simulations, in a small strain application.

    Specification(s): patch_small_strain

    Design: Introduction

    Issue(s): #11880

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.105.2The Zienkiewicz-Zhu patch shall calculate the stress components at the nodes, with equivalent results in both serial and parallel simulations, in a finite strain application.

    Specification(s): patch_finite_strain

    Design: Introduction

    Issue(s): #18721

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.105.3In areas of high concentration gradients, the Zienkiewicz-Zhu implementation shall recover the specified material property.

    Specification(s): stress_concentration

    Design: Introduction

    Issue(s): #11880

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: PropertyReadFile
  • 8.41.64The system shall provide an object to read values from a file and map them onto a mesh besed on mesh block IDs

    Specification(s): prop_block_read

    Design: PropertyReadFile

    Issue(s): #4066

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.48.1The system shall provide an object to read values from a file and map them onto a mesh based on mesh element IDs

    Specification(s): test_elem

    Design: PropertyReadFile

    Issue(s): #4066

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.48.2The system shall provide an object to read values from a file and map them onto a mesh based on grain IDs determined by a random Voronoi tessellation

    Specification(s): test_grain

    Design: PropertyReadFile

    Issue(s): #4066

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: DomainIntegral System
  • 8.42.1The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D.

    Specification(s): test_jthermal

    Design: DomainIntegral System

    Issue(s): #3807#10232

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.42.2The domain integral action shall compute all of the fracture domain integrals including the C integral for problems in 2D.

    Specification(s): c_integral_2d

    Design: DomainIntegral System

    Issue(s): #3807#10232

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.42.3The domain integral action shall compute all of the fracture domain integrals including the interaction integral for problems in 2D.

    Specification(s): test_iithermal

    Design: DomainIntegral System

    Issue(s): #7527#9966

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.4The domain integral action shall compute the stress intensity factor using the interaction integral approach for a problem dominated by thermal strains using an approach that integrates eigenstrain gradients in a general manner.

    Specification(s): test_iithermal_generic

    Design: DomainIntegral System

    Issue(s): #26452

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.5The interaction integral shall account for the contributions of the gradients of arbitrary eigenstrains in 2D

    Specification(s): test_ii_arb_eig_grad

    Design: DomainIntegral System

    Issue(s): #18804

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.6The DomainIntegralAction shall generate an error if a user specifies the eigenstrain gradient and also request the J integral

    Specification(s): test_ii_arb_eig_grad_err_jint

    Design: DomainIntegral System

    Issue(s): #18804

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.42.7The DomainIntegralAction shall generate an error if a user specifies the temperature and also provides the eigenstrain_gradient

    Specification(s): test_ii_arb_eig_grad_err_temp

    Design: DomainIntegral System

    Issue(s): #18804

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.42.8The interaction integral shall account for the contributions of body forces in 2D

    Specification(s): test_ii_bf

    Design: DomainIntegral System

    Issue(s): #18804

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.9The DomainIntegralAction shall generate an error if a user specifies the body force and also request the J integral

    Specification(s): test_ii_bf_err_jint

    Design: DomainIntegral System

    Issue(s): #18804

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.42.10The domain integral action shall compute all of the fracture domain integrals including the interaction integral for problems in any plane for 2D.

    Specification(s): test_iithermal_rot

    Design: DomainIntegral System

    Issue(s): #7527#9966

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.11The domain integral action shall compute all of the fracture domain integrals including the C(t) integral for problems in 2D.

    Specification(s): interaction_integral_2d_c

    Design: DomainIntegral System

    Issue(s): #7527#9966

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.42.12The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D using the instantaneous thermal expansion function eigenstrain.

    Specification(s): test_jthermal_ctefunc

    Design: DomainIntegral System

    Issue(s): #3807#10232

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.13The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D using the mean thermal expansion function eigenstrain.

    Specification(s): test_jthermal_mean_ctefunc

    Design: DomainIntegral System

    Issue(s): #3807#10232

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.42.14The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D using the instantaneous thermal expansion function eigenstrain.

    Specification(s): test_jthermal_inst_ctefunc

    Design: DomainIntegral System

    Issue(s): #3807#10232

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.1The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 2D.

    Specification(s): ii_2d

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.2The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems for all planes in 2D.

    Specification(s): ii_2d_rot

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.3The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3d evaluated as 2D.

    Specification(s): ii_3d_as_2d

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.4The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3D.

    Specification(s): ii_3d

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.5The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3D while supressing the output of q function values.

    Specification(s): ii_3d_noq

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.6The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3D at specified points.

    Specification(s): ii_3d_points

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.7The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in any plane in 3D.

    Specification(s): ii_3d_rot

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.63.8The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 2D while outputting q vlaues.

    Specification(s): ii_2d_chk_q

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.63.9The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in any plane 2D while outputting q values.

    Specification(s): ii_2d_rot_chk_q

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.63.10The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3D evaluated as 2D.

    Specification(s): ii_3d_as_2d_chk_q

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.63.11The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3D while outputting q values.

    Specification(s): ii_3d_chk_q

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.63.12The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in 3D for specified points, while outputting q values.

    Specification(s): ii_3d_points_chk_q

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.63.13The Domain Integral Action shall compute all of the fracture domain integrals including the interaction integral for problems in any plane in 3D while outputting q values.

    Specification(s): ii_3d_rot_chk_q

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.64.1The system shall compute mixed-mode fracture integrals that match values of K fields applied at the boundary of a 3D disk cut on one side by a slit

    Specification(s): test

    Design: DomainIntegral System

    Issue(s): #3705

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.1The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D.

    Specification(s): j_2d

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.2The domain integral action shall compute the fracture domain integrals including the J integral for problems in which the fracture domains of interest represent a subset of all the domains in the system.

    Specification(s): j_2d_block_restrict

    Design: DomainIntegral System

    Issue(s): #24795

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.3The domain integral action shall error out if the blocks selected do not have the adequate material objects.

    Specification(s): j_2d_block_restrict_error

    Design: DomainIntegral System

    Issue(s): #24795

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.69.4The domain integral action shall suppress the vector postprocessor output and stop generating a csv file for each integration ring at each time step.

    Specification(s): j_2d_output_vpp

    Design: DomainIntegral System

    Issue(s): #25162

    Collection(s): FUNCTIONAL

    Type(s): CheckFiles

  • 8.69.5The domain integral action shall suppress the vector postprocessor output while the postprocessor outputs are not affected.

    Specification(s): j_2d_output_pp

    Design: DomainIntegral System

    Issue(s): #25162

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.6The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D using small strain.

    Specification(s): j_2d_small_strain

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.7The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D at specified points.

    Specification(s): j_2d_points

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.8The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D given a mouth direction.

    Specification(s): j_2d_mouth_dir

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.9The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D using the topology type q function.

    Specification(s): j_2d_topo_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.10The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D evaluated as a 2D problem.

    Specification(s): j_3d_as_2d

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.11The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D evaluated as a 2D problem using the topology type q function.

    Specification(s): j_3d_as_2d_topo_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.12The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D.

    Specification(s): j_3d

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.13The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D with the q function turned off.

    Specification(s): j_3d_noq

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.14The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D with specified points.

    Specification(s): j_3d_points

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.15The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D given a crack mouth direction.

    Specification(s): j_3d_mouth_dir

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.16The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D given a crack mouth direction and end direction vector.

    Specification(s): j_3d_mouth_dir_end_dir_vec

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.17The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D with a topology type q function.

    Specification(s): j_3d_topo_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.18The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D evaluated as a 2D problem using the topology type q function.

    Specification(s): j_3d_as_2d_topo_q_outq

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.19The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D given a crack mouth direction.

    Specification(s): j_3d_mouth_dir_outq

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.20The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D while supressing the output of the q function values.

    Specification(s): j_2d_noq

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.69.21The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D while outputting the q function values.

    Specification(s): j_2d_chk_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.69.22The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 2D with the topology type q function and outputting the values.

    Specification(s): j_2d_topo_chk_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.69.23The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D while supressing the output of the q values.

    Specification(s): j_3d_chk_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.69.24The domain integral action shall compute all of the fracture domain integrals including the J integral for problems in 3D with the topology type q function and outputting the values.

    Specification(s): j_3d_topo_chk_q

    Design: DomainIntegral System

    Issue(s): #2814

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.70.1The Domain Integral Action shall compute all of the fracture domain integrals including the J integral for surface breaking elliptical cracks.

    Specification(s): j_ellip

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.2The Domain Integral Action shall compute all of the fracture domain integrals including the J integral for surface breaking elliptical cracks using the crack mouth specification.

    Specification(s): J_ellip_cm

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.3The Domain Integral Action shall compute all of the fracture domain integrals including the J integral for surface breaking elliptical cracks using the crack mouth specification computing the system Jacobian via automatic differentiation.

    Specification(s): J_ellip_cm_ad

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.4The Domain Integral Action shall compute all of the fracture domain integrals including the J integral for surface breaking elliptical cracks with crack face pressure.

    Specification(s): j_ellip_cfp

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.5The Domain Integral Action shall compute all of the fracture domain integrals including the J integral for surface breaking elliptical cracks with crack face pressure and crack mouth boundary specified.

    Specification(s): J_ellip_cm_cfp

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.6The Domain Integral Action shall compute all of the fracture domain integrals including the C integral for surface breaking elliptical cracks.

    Specification(s): c_int_surfbreak_ellip_crack_sym_mm

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.7The Domain Integral Action shall compute all of the fracture domain integrals including the C integral for surface breaking elliptical cracks using automatic differentiation.

    Specification(s): c_int_surfbreak_ellip_crack_sym_mm_ad

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.8The Domain Integral Action shall compute stress intensity factors from the interaction integral for a crack perpendicular to a bi-material interface, treating the interface as a functionally-graded material.

    Specification(s): j_int_fgm_sif

    Design: DomainIntegral System

    Issue(s): #23313

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.9The Domain Integral shall error out if the user input does not consistently define the required material properties to consider extra interaction integral terms for functionally graded materials.

    Specification(s): j_int_fgm_sif_error

    Design: DomainIntegral System

    Issue(s): #2717

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.70.10The Domain Integral Action shall compute stress intensity factors from the interaction integral, with an added term stemming for spatially varying properties, that accounts for the crack perpendicularity to the property grading and yield verified results.

    Specification(s): fgm_5

    Design: DomainIntegral System

    Issue(s): #23313

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.70.11The Domain Integral Action shall compute verified stress intensity factors from the interaction integral for axisymmetric geometries and circumferential cracks.

    Specification(s): axisymmetric_solution_tran

    Design: DomainIntegral System

    Issue(s): #23631

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.107.1The Domain Integral Action shall compute all of the fracture domain integrals including the T stress for cracks in an infinite plate.

    Specification(s): t_stress_crack_infinite_plate_2d

    Design: DomainIntegral System

    Issue(s): #4276

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.107.2The Domain Integral Action shall compute all of the fracture domain integrals including the T stress for an elliptical crack in 3D.

    Specification(s): t_stress_ellip_crack_3d

    Design: DomainIntegral System

    Issue(s): #4276

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.107.3The Domain Integral Action shall compute all of the fracture domain integrals including the T stress for an elliptical crack in 3D using automatic differentiation objects.

    Specification(s): ad_t_stress_ellip_crack_3d

    Design: DomainIntegral System

    Issue(s): #4276

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Dynamics
  • 8.44.1The PresetAcceleration class shall accurately prescribe the acceleration at the given boundary.

    Specification(s): acceleration_bc

    Design: DynamicsPresetAcceleration

    Issue(s): #7642

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.2The PresetAcceleration class shall accurately prescribe the acceleration at the given boundary when the Newmark-Beta time integrator is used to calculate the velocity and acceleration.

    Specification(s): acceleration_bc_ti

    Design: DynamicsPresetAcceleration

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.4The PresetDisplacement class shall accurately prescribe the displacement at the given boundary.

    Specification(s): displacement_bc

    Design: DynamicsPresetDisplacement

    Issue(s): #7642

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.5The PresetDisplacement class shall accurately prescribe the displacement at the given boundary using the velocity and and acceleration computed using the Newmark-Beta time integrator.

    Specification(s): displacement_bc_ti

    Design: DynamicsPresetDisplacement

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.6The mechanics system shall accurately conduct a static analysis in a small number of time steps to equilibrate the system under gravity before starting the dynamic analysis.

    Specification(s): displacement_bc_gravity

    Design: Dynamics

    Issue(s): #7642

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.7The mechanics system shall accurately predict the dynamic response of a linear elastic system with both Rayleigh damping and numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): hht

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.8The mechanics system shall accurately predict the dynamic response of a linear elastic system with both Rayleigh damping and numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration when using the velocity and acceleration computed using the Newmark-Beta time integrator.

    Specification(s): hht_ti

    Design: Dynamics

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.9The mechanics system shall accurately predict the dynamic response of a linear elastic system with a constant Rayleigh damping.

    Specification(s): newmark

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.10The mechanics system shall accurately predict the dynamic response of a linear elastic system with Rayleigh damping provided as a material property.

    Specification(s): newmark_material

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.11The mechanics system shall accurately predict the dynamic response of a linear elastic system using Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): hht

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.12The mechanics system shall accurately predict the dynamic response of a linear elastic system using Hilber-Hughes-Taylor (HHT) time integration when using the dynamic tensor mechanics action.

    Specification(s): hht_action

    Design: Dynamics

    Issue(s): #18388

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.13The mechanics system shall accurately predict the dynamic response of a linear elastic system using Newmark time integration.

    Specification(s): newmark

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.14The mechanics system shall accurately predict the dynamic response of a linear elastic system using Newmark time integration and the dynamic tensor mechanics action.

    Specification(s): newmark_action

    Design: Dynamics

    Issue(s): #18388

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.15The mechanics system shall accurately predict the dynamic response of a linear elastic system using Hilber-Hughes-Taylor (HHT) time integration when velocity and acceleration of the system are calculated using the Newmark-Beta time integrator.

    Specification(s): hht_ti

    Design: Dynamics

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.16The dynamic tensor mechanics action shall support automatic differentiation using the Newmark-Beta time integrator.

    Specification(s): ad_newmark_action

    Design: Dynamics

    Issue(s): #18687

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.20The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): hht

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.21The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with no numerical or structural damping.

    Specification(s): newmark

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.22The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with both Rayleigh damping and numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration.

    Specification(s): rayleigh_hht

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.23The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with both Rayleigh damping and numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration when automatic differentiation is used.

    Specification(s): rayleigh_hht_ad

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.24The mechanics system shall correctly compute the Jacobian for 1D wave propagation in a linear elastic material with both Rayleigh damping and numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration when automatic differentiation is used.

    Specification(s): rayleigh_hht_ad_jac

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.44.25The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with both Rayleigh damping and numerical damping resulting from Hilber-Hughes-Taylor (HHT) time integration when using the velocity and acceleration computed using the Newmark-Beta time integrator.

    Specification(s): rayleigh_hht_ti

    Design: Dynamics

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.26The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with Rayleigh damping.

    Specification(s): rayleigh_newmark

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.27The mechanics system shall correctly predict 1D wave propagation in a linear elastic material with Rayleigh damping when using the dynamic tensor mechanics parent action.

    Specification(s): rayleigh_newmark_action

    Design: Dynamics

    Issue(s): #5559

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: PresetAcceleration
  • 8.44.1The PresetAcceleration class shall accurately prescribe the acceleration at the given boundary.

    Specification(s): acceleration_bc

    Design: DynamicsPresetAcceleration

    Issue(s): #7642

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.2The PresetAcceleration class shall accurately prescribe the acceleration at the given boundary when the Newmark-Beta time integrator is used to calculate the velocity and acceleration.

    Specification(s): acceleration_bc_ti

    Design: DynamicsPresetAcceleration

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: PresetDisplacement
  • 8.44.4The PresetDisplacement class shall accurately prescribe the displacement at the given boundary.

    Specification(s): displacement_bc

    Design: DynamicsPresetDisplacement

    Issue(s): #7642

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.5The PresetDisplacement class shall accurately prescribe the displacement at the given boundary using the velocity and and acceleration computed using the Newmark-Beta time integrator.

    Specification(s): displacement_bc_ti

    Design: DynamicsPresetDisplacement

    Issue(s): #12185

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: DirectCentralDifference
  • 8.44.17The solid mechanics app shall support a form of central difference time integration that uses a direct calculation of the acceleration from the residual forces to perform a solution update.

    Specification(s): direct_central_difference

    Design: DirectCentralDifference

    Issue(s): #27833

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.18The solid mechanics app shall support a form of central difference time integration that uses a direct calculation of the acceleration from the residual forces to perform a solution update. The direct central difference method should properly use a time step averaging method to handle non-constant time steps.

    Specification(s): direct_central_difference_varied_dt

    Design: DirectCentralDifference

    Issue(s): #27833

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.44.19The solid mechanics app shall support dirichlet boundary conditions for direct central difference time integration that correctly enforce constant and function boundary conditions

    Specification(s): direct_central_difference_multiVarBC

    Design: DirectCentralDifference

    Issue(s): #27833

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: Stress Divergence
  • 8.52.1The system shall track a changing global stress state when a model undergoes rigid body rotation

    Specification(s): rotation_test

    Design: Stress Divergence

    Issue(s): #8422

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.52.2The system shall compute a uniform stress state given a uniform strain state with finite strains

    Specification(s): patch_test

    Design: Stress Divergence

    Issue(s): #12584

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: Global Strain
  • 8.55.1The globalstrain system shall correctly compute the volume change due to applied stress while still maintaining periodicity in 2D.

    Specification(s): test

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.2The globalstrain system shall correctly compute the volume change under uniaxial stress while still maintaining periodicity in all the directions in 3D.

    Specification(s): uniaxial

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.3The globalstrain system shall correctly compute the volume change under hydrostratic stress while still maintaining periodicity in all the directions in 3D.

    Specification(s): hydrostat

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.4The globalstrain system shall correctly compute the shear deformation due to applied stress while still maintaining periodicity in all the directions in 3D.

    Specification(s): shear

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.5The globalstrain system shall correctly compute the deformation behavior in 2D with applied displacement boundary condition in one direction while still maintaining periodicity in the other.

    Specification(s): direction

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.6The globalstrain system shall correctly compute the deformation behavior in 3D with applied displacement boundary condition in one direction while still maintaining periodicity in the others.

    Specification(s): disp

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.7The globalstrain system shall correctly compute the deformation behavior in 3D with pressure boundary condition in one direction while still maintaining periodicity in the others.

    Specification(s): pressure_3D

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.55.8The 'GlobalStrainAction' should set all the objects reqiured for the globalstrain system to correctly compute the deformation behavior maintaining strain periodicity.

    Specification(s): action_check

    Design: Global Strain

    Issue(s): #11314

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: Gravity
  • 8.56.1The tensor mechanics module shall have the capability of applying a body force term in the stress divergence equilibrium equation that accounts for the force of gravity on a solid object due to its own weight.

    Specification(s): gravity_test

    Design: Gravity

    Issue(s): #4781

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: ADGravity
  • 8.56.2The tensor mechanics module shall be able to reproduce gravity test results of the hand-coded jacobian using automatic differentiation.

    Specification(s): ad_gravity_test

    Design: ADGravity

    Issue(s): #13100

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.56.3The Jacobian for the AD gravity problem shall be perfect

    Specification(s): ad_gravity_test-jac

    Design: ADGravity

    Issue(s): #13100

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • solid_mechanics: KineticEnergyAux
  • 8.56.5The system shall provide a way to compute the system total kinetic energy through the use of auxiliary kernels and postprocessors. This test verifies that a body falls at the right acceleration under the action of gravity and that the computed kinetic energy matches the analytical expression.

    Specification(s): block-gravity-kinetic-energy

    Design: KineticEnergyAux

    Issue(s): #19671

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Volume Weighted Weibull
  • 8.59.1VolumeWeightedWeibull shall generate a randomly distributed field that approximates the analytic expression for the Weibull distribution when the mesh is uniform and the reference volume is set equal to the element size

    Specification(s): test

    Design: Volume Weighted Weibull

    Issue(s): #10221

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.59.2VolumeWeightedWeibull shall generate a randomly distributed field that approaches the analytic expression for the Weibull distribution when the mesh is uniform and the reference volume is set equal to the element size as the mesh density is increased

    Specification(s): test_finer

    Design: Volume Weighted Weibull

    Issue(s): #10221

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.59.3VolumeWeightedWeibull shall generate a randomly distributed field that approximates the analytic expression for the Weibull distribution when the mesh is uniform, the reference volume is set to a value different from the element size, and the median is adjusted to account for the different reference volume

    Specification(s): test_ref_vol

    Design: Volume Weighted Weibull

    Issue(s): #10221

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Inertial Torque
  • 8.61.1The tensor mechanics module computes residual for a simplesituation correctly

    Specification(s): residual

    Design: Inertial Torque

    Issue(s): #13634

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.61.2The tensor mechanics module computes the ith component ofinertial torque where the only degree of freedom in y

    Specification(s): simple

    Design: Inertial Torque

    Issue(s): #13634

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: ComputeEigenstrainFromInitialStress
  • 8.62.1SolidMechanics shall allow users to specify initial stresses, but shall error-out with appropriate message if the user does not supply the correct number of functions to define the initial stress tensor

    Specification(s): except01

    Design: ComputeEigenstrainFromInitialStress

    Issue(s): #9749

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.62.2SolidMechanics shall allow users to specify initial stresses, but shall error-out with appropriate message if the user does not supply the correct number of AuxVariables to define the initial stress tensor

    Specification(s): except02

    Design: ComputeEigenstrainFromInitialStress

    Issue(s): #13087

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.62.3SolidMechanics shall allow users to specify initial stresses using Functions

    Specification(s): gravity

    Design: ComputeEigenstrainFromInitialStress

    Issue(s): #9749

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.62.4SolidMechanics shall allow users to specify initial stresses using AuxVariables

    Specification(s): gravity_with_aux

    Design: ComputeEigenstrainFromInitialStress

    Issue(s): #13087

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.62.5SolidMechanics shall allow users to specify initial stresses for problems with Cosserat mechanics

    Specification(s): gravity_cosserat

    Design: ComputeEigenstrainFromInitialStress

    Issue(s): #9749

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.62.6SolidMechanics shall allow users to specify initial stresses for problems with plasticity, and if the initial stresses are inadmissible, the return-map algorithm will be applied, perhaps incrementally, to bring the initial stresses back to the admissible region

    Specification(s): mc_tensile

    Design: ComputeEigenstrainFromInitialStress

    Issue(s): #9749

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: ScalarLMKernel
  • 8.73.85Homogenization from scalar wrapper class with strain constraints hits the targets in 2D

    Specification(s): 2d-strainS

    Design: ScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.73.86Homogenization from scalar wrapper class with stress constraints hits the targets in 2D

    Specification(s): 2d-stressS

    Design: ScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.73.87Homogenization from scalar wrapper class with mixed stress and strain constraints hits the targets in 2D

    Specification(s): 2d-mixedS

    Design: ScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.73.88Framework scalar kernel wrapper correctly assembles scalar-to-scalar coupling Jacobian

    Specification(s): 2d-stressA

    Design: ScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.73.89Framework scalar kernel wrapper correctly assembles Jacobian by rows

    Specification(s): 2d-stressR

    Design: ScalarLMKernel

    Issue(s): #22174

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: MooseException
  • 8.92.1The system shall gracefully allow exceptions from the radial return mapping algorithm
    1. not using automatic differentiation methods.
    2. using automatic differentiation methods.

    Specification(s): exception/non, exception/ad

    Design: MooseException

    Issue(s): #9659#20290

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • solid_mechanics: NonlinearSystem
  • 8.93.1Convergence matches previous version of MOOSE without the preconditioner reuse system

    Specification(s): without_reuse

    Design: NonlinearSystem

    Issue(s): #21868

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.93.2Preconditioner is reused until the linear iterations exceed the value of reuse_preconditioner_max_its upon which the system recalculates the preconditioner

    Specification(s): with_reuse

    Design: NonlinearSystem

    Issue(s): #21868

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Pressure
  • 8.94.3The Pressure boundary condition shall compute the correct Jacobian for a problem in 3D space using hex8 elements.

    Specification(s): jacobian_3D_hex8

    Design: Pressure

    Issue(s): #19657

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.94.4The Pressure boundary condition shall compute the correct Jacobian for a problem in 3D space using hex20 elements.

    Specification(s): jacobian_3D_hex20

    Design: Pressure

    Issue(s): #19657

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.94.5The Pressure boundary condition shall compute the correct Jacobian for a problem in RZ coordinates with quad4 elements.

    Specification(s): jacobian_RZ

    Design: Pressure

    Issue(s): #19657

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.94.6The Pressure boundary condition shall compute the correct Jacobian for a problem in RZ coordinates with quad8 elements.

    Specification(s): jacobian_RZ_quad8

    Design: Pressure

    Issue(s): #19657

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.110.21The mechanics system shall correctly compute the jacobian for spherical problems using small, incremental strain.

    Specification(s): incstrn_pressure_spherical

    Design: Pressure

    Issue(s): #8235

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • solid_mechanics: Strain Energy Density
  • 8.104.1The system shall be capable of calculating strain energy density incrementally in materials with elastic stress and finite strain.

    Specification(s): incr_elas

    Design: Strain Energy Density

    Issue(s): #10972#25602

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.104.2The system shall be capable of informing a user when they incorrectly choose not to use the incremental strain energy density formulation with an incremental material model.

    Specification(s): incr_chk1

    Design: Strain Energy Density

    Issue(s): #10972#25602

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.104.4The system shall be capable of calculating strain energy density for materials with elastic stress and small strain.

    Specification(s): tot_elas

    Design: Strain Energy Density

    Issue(s): #10972#25602

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.104.5The system shall be capable of informing a user when they incorrectly choose to use the incremental strain energy density formulation in a material utilizing small strain.

    Specification(s): tot_chk1

    Design: Strain Energy Density

    Issue(s): #10972#25602

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.104.6The system shall be capable of calculating strain energy density incrementally in materials with inelastic stress and isotropic plasticity.

    Specification(s): incr_elas_plas

    Design: Strain Energy Density

    Issue(s): #10972#25602

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.104.11The system shall be capable of calculating strain energy density for materials with a user-specified stress by name and small strain.

    Specification(s): tot_elas_stress_name

    Design: Strain Energy Density

    Issue(s): #25202

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • solid_mechanics: Torque
  • 8.113.1The mechanics system shall provide a way to apply a torque to a boundary for small strain simulations.

    Specification(s): non-ad

    Design: TorquePolarMomentOfInertiaRotationAngle

    Issue(s): #17176

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • The mechanics system shall provide a way to apply a torque to a boundary for small strain simulations with automatic differentiation.

    Specification(s): ad

    Design: TorquePolarMomentOfInertiaRotationAngle

    Issue(s): #17176

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: Transfers System
  • 8.115.1The system shall be able to transfer a field from a displaced source domain to a target domain, using shape function evaluations in the source domain.

    Specification(s): test

    Design: Transfers System

    Issue(s): #22534

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: AbaqusUserElement
  • 8.117.1The UEL tri tests example shall be built.

    Specification(s): build_uel_tri_tests

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunCommand

  • 8.117.2The UEL tri states tests example shall be built.

    Specification(s): build_uel_tri_states_tests

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunCommand

  • 8.117.3The UEL build tests example shall be built.

    Specification(s): build_uel_build_tests

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunCommand

  • 8.117.4The UEL tri tests example shall be built.

    Specification(s): build_uel_tri_tests_dbg

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunCommand

  • 8.117.5The UEL tri states tests example shall be built.

    Specification(s): build_uel_tri_states_tests_dbg

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunCommand

  • 8.117.6The UEL build tests example shall be built.

    Specification(s): build_uel_build_tests_dbg

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunCommand

  • 8.117.7The system shall be able to solve a simple mechanics problem with small elastic deformation with a triangular mesh using MOOSE capabilities.

    Specification(s): reference

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.8The system shall be able to solve a simple mechanics problem with small elastic deformation with a triangular mesh using a UEL plugin.

    Specification(s): small

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.9The system shall be able to solve a simple mechanics problem with small elastic deformation with a triangular mesh using a UEL plugin calling a UMAT routine with its standard interface.

    Specification(s): small_test

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.10The Abaqus UEL interface shall be able to pass initial correct values of coordinates into a user-defined UEL routine for a hexahedral element and a non-trivial setup.

    Specification(s): uel_test_print

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.117.11The Abaqus UEL interface shall be able to interface with a UEL that calls a UMAT interface and must yield the same results for a triangular element as a UEL routine that computes internal forces without calling a UMAT routine.

    Specification(s): small_test_uel_umat

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.12The Abaqus UMAT interface shall be able to yield the same results for a triangular element as a UEL routine that computes internal forces without calling a UMAT routine or an analogous UEL interface that calls a UMAT routine for computing the stress vector and the Jacobian.

    Specification(s): small_test_moose_umat

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.13The Abaqus UEL interface, calling a UMAT routine, shall be able to yield the same results for a triangular element that a UMAT routine that computes internal forces when the solution depends on system states and two external fields, including temperature.

    Specification(s): small_test_uel_states_fields

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.14The Abaqus UMAT interface shall be able to yield the same results for a triangular element that a UEL routine that computes internal forces, calling a UMAT routine, when the solution depends on system states and two external fields, including temperature.

    Specification(s): small_test_umat_states_fields

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.15The Abaqus UMAT interface shall be able to yield the same results for a triangular element that a UEL routine that computes internal forces, calling a UMAT routine, when the solution depends on system states and two external fields, including temperature, which vary significantly with space.

    Specification(s): small_test_umat_states_fields_gradient

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.117.16The Abaqus UEL interface shall be able to yield the same results for a triangular element that a UMAT routine that computes internal forces when the solution depends on system states and two external fields, including temperature, which vary significantly with space. Therefore, the system shall properly handle state and external fields whose values depend on element location.

    Specification(s): small_test_uel_states_fields_gradient

    Design: AbaqusUserElement

    Issue(s): #25163

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: Abaqus UMAT Stress
  • 8.119.1The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for stateful properties

    Specification(s): linear_strain_hardening

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.2The system shall raise an error if a UMAT that requires incremental quantities is being used with a total strain formulation

    Specification(s): total_strain_error

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONALFAILURE_ANALYSIS

    Type(s): RunException

  • 8.119.3The system shall provide an interface to use Abaqus UMAT materials written in Fortran77 as constitutive models, with support for finite strain elastic material models

    Specification(s): elastic

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.4The system shall provide an interface to use Abaqus UMAT materials written in Fortran77 as constitutive models, with support for small strain elastic material models

    Specification(s): elastic_small

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.5The system shall provide an interface to use Abaqus UMAT materials written in C/C++ as constitutive models, with support for finite strain elastic material models

    Specification(s): elastic_C

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.6The Abaqus UMAT interface shall produce the same results as the built-in MOOSE material models for finite strain elasticity

    Specification(s): elastic_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.7The Abaqus UMAT interface shall produce the same results as the built-in MOOSE material models for small strain elasticity

    Specification(s): elastic_small_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.8The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for incremental strain elastic material models

    Specification(s): elastic_incremental

    Design: Abaqus UMAT Stress

    Issue(s): #18843

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.9The Abaqus UMAT interface shall produce the correct stresses for the hyperelasticNeo-Hookean model under shear loading. The results shall not depend on the time step size.Reference computation with fine time stepping.

    Specification(s): elastic_shear_reference

    Design: Abaqus UMAT Stress

    Issue(s): #21797

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.10The Abaqus UMAT interface shall produce the correct stresses for the hyperelasticNeo-Hookean model under shear loading. The results shall not depend on the time step size.Comparison with coarse time stepping.

    Specification(s): elastic_shear

    Design: Abaqus UMAT Stress

    Issue(s): #21797

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.11The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with the ability to provide different parameters for different blocks using the same interface plug-in.

    Specification(s): multiple_blocks

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.12The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with the ability to provide different parameters for different blocks using distinct interface plug-ins.

    Specification(s): multiple_blocks_two_materials

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.13The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with the ability to provide different parameters for different blocks using distinct interface plug-ins in multi processor runs.

    Specification(s): multiple_blocks_two_materials_parallel

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.14The system shall be able to simulate a multiblock solid mechanics test in which the blocks are meshed contiguously using the UMAT interface.

    Specification(s): rve_multimaterial_umat

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.15The system shall be able to simulate a multiblock solid mechanics test in which the blocks are meshed contiguously.

    Specification(s): rve_multimaterial_moose

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.18The Abaqus UMAT interface shall produce the same results (stress, strain, displacements) as the built-in MOOSE capabilities for a mechanical problem with an external field (not temperature) affecting material behavior

    Specification(s): predef

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.19The system shall avoid regression in a simple mechanical problem where a strain field modifies the stiffness of the material through CompositeElasticityTensor. This test also serves as a reference for UMAT external field verification

    Specification(s): predef_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.20The Abaqus UMAT interface shall produce the same results (stress, strain, displacements) as the built-in MOOSE capabilities for a mechanical problem with an external field (not temperature) step increment affecting material behavior

    Specification(s): dpredef

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.21The system shall avoid regression in a simple mechanical problem where a real number representing the strain increment modifies the stiffness of the material through CompositeElasticityTensor. This test also serves as a reference for UMAT external field increment verification

    Specification(s): dpredef_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.22The Abaqus UMAT interface shall produce the same results (stress, strain, displacements) as the built-in MOOSE capabilities for a mechanical problem with two external fields (not temperature) affecting material behavior

    Specification(s): predef_multiple

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.23The system shall avoid regression in a simple mechanical problem where two strain fields modifies the stiffness of the material through CompositeElasticityTensor. This test also serves as a reference for UMAT external field verification

    Specification(s): predef_multiple_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.24The Abaqus UMAT interface shall produce the same results (stress, strain, displacements) as the built-in MOOSE capabilities for a mechanical problem with two external material properties affecting material behavior

    Specification(s): predef_multiple_mat

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.25The system shall avoid regression in a simple mechanical problem where two strain fields modifies the stiffness of the material through CompositeElasticityTensor. This test also serves as a reference for UMAT external material property verification

    Specification(s): predef_multiple_reference_mat

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.26The Abaqus UMAT interface shall pass correct values for STRAN, DSTRAN, TIME, CMNAME, NDI, NSHR, NTENS, COORDS, DROT, CELENT, DFGRD0, DFGRD1, NOEL, NPT, and KINC, when a single element is subjected to axial loading. Values are checked against verified references

    Specification(s): predef

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.119.27The Abaqus UMAT interface shall produce the same results (stress, strain, displacements) as the built-in MOOSE capabilities for a mechanical problem with two external fields (not temperature) step increment affecting material behavior and shear deformation

    Specification(s): print_shear

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.28The system shall avoid regression in a simple mechanical problem where two strain increments modify the stiffness of the material through CompositeElasticityTensor. This test also serves as a reference for UMAT behavior in the presence of shear deformation.

    Specification(s): print_shear_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.29The Abaqus UMAT interface shall pass the correct values for STRAN, DSTRAN, TIME, CMNAME, NDI, NSHR, NTENS, COORDS, DROT, CELENT, DFGRD0, DFGRD1, NOEL, NPT, and KINC, when shear deformation (causing nontrivial rotation kinematics) is present.

    Specification(s): print_shear_print

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.119.30The Abaqus UMAT interface shall pass the correct values for the deformation gradient DFGRD1 and the rotation increment DROT, accounting for the fact, that the calling C++ code is row majorand the called Fortran code is column major.

    Specification(s): print_shear_defgrad

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.119.31The Abaqus UMAT interface shall pass the values for STRAN, DSTRAN, TIME, CMNAME, NDI, NSHR, NTENS, COORDS, DROT, CELENT, DFGRD0, DFGRD1, NOEL, NPT, and KINC, when shear deformation is present and large deformation kinematics is true, which captures variables or properties that may rely on the displaced mesh, such as COORDS and CELENT.

    Specification(s): print_shear_defgrad_deformed

    Design: Abaqus UMAT Stress

    Issue(s): #22880

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.119.32The Abaqus UMAT interface shall pass correct values into a C UMAT routine for STRAN, DSTRAN, TIME, CMNAME, NDI, NSHR, NTENS, COORDS, DROT, CELENT, DFGRD0, DFGRD1, NOEL, NPT, and KINC, when a single element is subjected to axial loading. Values are checked against verified references

    Specification(s): print_c

    Design: Abaqus UMAT Stress

    Issue(s): #18237

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.119.33The system shall generate identical numerical results regardless of whether the UMAT interface is written in Fortran or C. Generation of reference results.

    Specification(s): print_compare_c

    Design: Abaqus UMAT Stress

    Issue(s): #18237

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.34The system shall generate identical numerical results regardless of whether the UMAT interface is written in Fortran or C. Verification.

    Specification(s): print_compare_f

    Design: Abaqus UMAT Stress

    Issue(s): #18237

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.35The system shall allow for the correct use of Eigen matrices in C UMAT functions.

    Specification(s): print_eigen

    Design: Abaqus UMAT Stress

    Issue(s): #18237

    Collection(s): FUNCTIONAL

    Type(s): RunApp

  • 8.119.36UMAT shall generate the correct shear deformation and stress when a single element is sheared via a Dirichlet boundary condition on the XY plane with anisotropic shear stiffness; results must coincide with those of MOOSE.

    Specification(s): shear_order_umat_umat_x

    Design: Abaqus UMAT Stress

    Issue(s): #20111

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.37UMAT shall generate the correct shear deformation and stress when a single element is sheared via a Dirichlet boundary condition on the YZ plane with anisotropic shear stiffness; results must coincide with those of MOOSE.

    Specification(s): shear_order_umat_umat_z

    Design: Abaqus UMAT Stress

    Issue(s): #20111

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.38The system shall generate reference results of a sheared finite element on the XY plane.

    Specification(s): shear_order_umat_moose_x

    Design: Abaqus UMAT Stress

    Issue(s): #20111

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.39The system shall generate reference results of a sheared finite element on the YZ plane.

    Specification(s): shear_order_umat_moose_z

    Design: Abaqus UMAT Stress

    Issue(s): #20111

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.40The system shall generate a system Jacobian from the UMAT routines using large strain kinematics that is of the same order as the one generated by MOOSE using Rashid strain incrementation when the shear stiffness is anisotropic.

    Specification(s): shear_order_umat_umat_z_jacobian

    Design: Abaqus UMAT Stress

    Issue(s): #20111

    Collection(s): FUNCTIONAL

    Type(s): PetscJacobianTester

  • 8.119.41The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence with the ability to switch boundary conditions according to the controls system.

    Specification(s): elastic_temperature_steps

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.42The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence with the ability to switch boundary conditions according to the controls system using loading steps from a general user object.

    Specification(s): elastic_temperature_steps_uo

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.43The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence with the ability to switch boundary conditions according to the controls system using loading steps from a general user object, to which the user only provides the step durations.

    Specification(s): elastic_temperature_steps_uo_durations

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.44The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence with the ability to switch boundary conditions according to the controls system using loading steps from a general user object, to which the user only provides the number of steps and the total time interval.

    Specification(s): elastic_temperature_steps_uo_intervals

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.45The system shall ensure that solution synchronization times are enforced by default when employing a user object to determine the steps of the simulation.

    Specification(s): elastic_temperature_steps_uo_sync

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.46The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence with the ability to switch boundary conditions according to the controls system using loading steps from a general user object.

    Specification(s): elastic_temperature_steps_uo_input

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.47The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence

    Specification(s): elastic_temperature

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.48The Abaqus UMAT interface shall produce the same results as the built-in MOOSE material models for finite strain elasticity and temperature dependence

    Specification(s): elastic_temperature_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.49The system shall provide an interface to use Abaqus UMAT materials as constitutive models, with support for finite strain elastic material models and temperature dependence, include the temperature step increment

    Specification(s): elastic_dtemperature

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.50The Abaqus UMAT interface shall produce the same results as the built-in MOOSE material models for finite strain elasticity and temperature dependence, including the temperature step increment

    Specification(s): elastic_dtemperature_reference

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • 8.119.51The system shall provide an interface to use Abaqus UMAT materials that allows the user to control the time step increment within the UMAT routine and combine it with MOOSE native time step controls, including cutback and growth factors, and soft terminations.

    Specification(s): elastic_timestep

    Design: Abaqus UMAT Stress

    Issue(s): #14974

    Collection(s): FUNCTIONAL

    Type(s): Exodiff

  • solid_mechanics: ComputeVolumetricDeformGrad
  • 8.121.3The ComputeVolumeDeformGrad and the VolumeDeformGradCorrectedStress classes shall correctly compute the volumetric deformation gradient, total deformation gradient and transform the stress from previous configuration to the current configuration.

    Specification(s): interface

    Design: ComputeVolumetricDeformGrad

    Issue(s): #6604

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

  • 8.121.4The ComputeVolumeDeformGrad and the VolumeDeformGradCorrectedStress classes shall correctly compute the volumetric deformation gradient, total deformation gradient and transform the stress from previous configuration to the current configuration when volumetric locking correction is used.

    Specification(s): interface_Bbar

    Design: ComputeVolumetricDeformGradVolumeDeformGradCorrectedStressVolumetric Locking Correction

    Issue(s): #6604

    Collection(s): FUNCTIONAL

    Type(s): CSVDiff

References

  1. ISO/IEC/IEEE 24765:2010(E). Systems and software engineering—Vocabulary. first edition, December 15 2010.[BibTeX]
  2. ASME NQA-1. ASME NQA-1-2008 with the NQA-1a-2009 addenda: Quality Assurance Requirements for Nuclear Facility Applications. first edition, August 31 2009.[BibTeX]