Solid Mechanics System Design Description
This template follows INL template TEM-140, "IT System Design Description."
This document serves as an addendum to Framework System Design Description and captures information for 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
Acronym | Description |
---|---|
API | Application Programming Interface |
DOE-NE | Department of Energy, Nuclear Energy |
FE | finite element |
HIT | Hierarchical Input Text |
HPC | High Performance Computing |
I/O | Input/Output |
INL | Idaho National Laboratory |
MOOSE | Multiphysics Object Oriented Simulation Environment |
MPI | Message Passing Interface |
SDD | Software Design Description |
Design Stakeholders and Concerns
Design Stakeholders
Stakeholders for MOOSE include several of the funding sources including 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 Action
- 8.1.1The system shall support generalized plane strain with incremental strain for 1D meshes using the SolidMechanics/QuasiStatic Physics.
Specification(s): axisymmetric_gps_incremental
Design: Generalized Plane Strain Action
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.1.2The system shall support generalized plane strain with small strain for 1D meshes using the SolidMechanics/QuasiStatic Physics.
Specification(s): axisymmetric_gps_small
Design: Generalized Plane Strain Action
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.1.3The system shall support generalized plane strain with finite strain for 1D meshes using the SolidMechanics/QuasiStatic Physics.
Specification(s): axisymmetric_gps_finite
Design: Generalized Plane Strain Action
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.8The system shall support setting up a generalized plane strain problem through an action
Specification(s): generalized_plane_strain_squares
Design: Generalized Plane Strain Action
Issue(s): #7840
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.9The system shall support setting the out-of-plane pressure using a function for generalized plane strain problems
Specification(s): out_of_plane_pressure_function
Design: Generalized Plane Strain Action
Issue(s): #7840
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.10The system shall support setting the out-of-plane pressure using a material property for generalized plane strain problems
Specification(s): out_of_plane_pressure_material
Design: Generalized Plane Strain Action
Issue(s): #17250
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.11The system shall support listing all of the out-of-plane strain variables in the strain calculator
Specification(s): generalized_plane_strain_scalar_vector
Design: Generalized Plane Strain Action
Issue(s): #7840
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Axisymmetric 1D Incremental Strain
- 8.1.4The ComputeAxisymmetric1DIncrementalStrain class shall compute the elastic stress for a 1D axisymmetric small incremental strain formulation under a combination of applied tensile displacement and thermal expansion loading using the SolidMechanics/QuasiStatic Physics.
Specification(s): axisymmetric_plane_strain_incremental
Design: Compute Axisymmetric 1D Incremental Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.1.7The ComputeAxisymmetric1DIncrementalStrain class shall, under generalized plane strain conditions, compute the elastic stress for a 1D axisymmetric small incremental strain formulation under a combination of applied tensile displacement and thermal expansion loading.
Specification(s): axisymm_gps_incremental
Design: Compute Axisymmetric 1D Incremental Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Axisymmetric 1D Small Strain
- 8.1.5The ComputeAxisymmetric1DSmallStrain class shall compute the elastic stress for a 1D axisymmetric small total strain formulation under a combination of applied tensile displacement and thermal expansion loading using the SolidMechanics/QuasiStatic Physics.
Specification(s): axisymmetric_plane_strain_small
Design: Compute Axisymmetric 1D Small Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.1.8The ComputeAxisymmetric1DSmallStrain class shall, under generalized plane strain conditions, compute the elastic stress for a 1D axisymmetric small total strain formulation under a combination of applied tensile displacement and thermal expansion loading.
Specification(s): axisymm_gps_small
Design: Compute Axisymmetric 1D Small Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Axisymmetric 1D Finite Strain
- 8.1.6The ComputeAxisymmetric1DFiniteStrain class shall compute the elastic stress for a 1D axisymmetric incremental finite strain formulation under a combination of applied tensile displacement and thermal expansion loading using the SolidMechanics/QuasiStatic Physics.
Specification(s): axisymmetric_plane_strain_finite
Design: Compute Axisymmetric 1D Finite Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.1.9The ComputeAxisymmetric1DFiniteStrain class shall, under generalized plane strain conditions, compute the elastic stress for a 1D axisymmetric incremental finite strain formulation under a combination of applied tensile displacement and thermal expansion loading.
Specification(s): axisymm_gps_finite
Design: Compute Axisymmetric 1D Finite Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.1.10The StressDivergenceRZTensors class shall generate an error if used with Problem/rz_coord_axis set to anything other than Y
Specification(s): 1d_finite_rz_coord_axis_error
Design: Compute Axisymmetric 1D Finite Strain
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: Compute R-Spherical Incremental Strain
- 8.2.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.21We shall be able to reproduce incremental small strain elasticity results of the hand-coded simulation in spherical coordinates using automatic differentiation. (non-AD reference)
Specification(s): rspherical_incremental_small_elastic-noad
Design: Compute R-Spherical Incremental Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Finite Strain Elastic Stress
- 8.2.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.1The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes.
Specification(s): elastic_patch
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.2The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation.
Specification(s): elastic_patch_incremental_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.4The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation with no displaced mesh created.
Specification(s): elastic_patch_incremental_small_no_disp_mesh
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.5The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when using volumetric locking correction.
Specification(s): elastic_patch_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.6The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.7The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when employing volumetric locking correction and running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.8The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular 20-noded quadratic hexes.
Specification(s): elastic_patch_quadratic
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #620
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.1The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation found with the Taylor expansion from Rashid(1993) on a unit 3D cube in a Cartesian system using the QuasiStatic SolidMechanics Physics.
Specification(s): new
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.2The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation found with the Taylor expansion from Rashid(1993) on a unit 3D cube in a Cartesian system using the volumetric locking correction b-bar formulation.
Specification(s): new_Bbar
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.5The ComputeFiniteStrainElasticStress class shall compute the elastic stress based on a finite strain fomulation and then follow the stress as the mesh is rotated 90 degrees in accordance with Kamojjala et al.(2015) using the QuasiStatic SolidMechanics Physics.
Specification(s): rotation_new
Design: Compute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.6The ComputeFiniteStrainElasticStress class shall compute the elastic stress based on a finite strain fomulation and then follow the stress as the mesh is rotated 90 degrees in accordance with Kamojjala et al.(2015) using the volumetric locking correction b-bar formulation.
Specification(s): rotation_new_Bbar
Design: Compute Finite Strain Elastic StressVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.7The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation using a direct eigensolution to perform the polar decomposition of stretch and rotation on a unit 3D cube in a Cartesian system using the QuasiStatic SolidMechanics Physics.
Specification(s): eigen_sol
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.8The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation using a direct eigensolution to perform the polar decomposition of stretch and rotation on a unit 3D cube in a Cartesian system using the volumetric locking correction b-bar formulation.
Specification(s): eigen_sol_Bbar
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.9The ComputeLinearElasticStress class shall generate an error if a user attempts to run a problem using ComputeLinearElasticStress with a finite strain formulation.
Specification(s): stress_errorcheck
Design: Compute Finite Strain Elastic StressCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.50.1Finite strain methods in Tensor Mechanics should be able to adequately simulate a complex strain state simulation in 3D using an orhotropic filling with isotropic properties.
Specification(s): 3d_isotropic
Design: Compute Finite Strain Elastic Stress
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.50.2Finite strain methods in Tensor Mechanics should be able to adequately simulate a complex strain state simulation in 3D using an orhotropic filling with isotropic properties.
Specification(s): 3d_orthotropic_isotropic
Design: Compute Finite Strain Elastic Stress
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.50.3Finite strain methods in Tensor Mechanics should be able to rotate an orthotropic beam-like element 90 degrees and retrieve the proper displacement after being solicited by a pressure boundary condition.
Specification(s): 3d_bar_orthotropic_90deg_rotation
Design: Compute Finite Strain Elastic Stress
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.50.4Finite strain methods in Tensor Mechanics should be able to rotate an orthotropic beam-like element 90 degrees and retrieve the proper displacement after being solicited by a pressure boundary condition when automatic differentiation is used.
Specification(s): 3d_bar_orthotropic_90deg_rotation_ad
Design: Compute Finite Strain Elastic Stress
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.50.5Finite strain methods in Tensor Mechanics should be able to rotate an orthotropic beam-like element 360 degrees and retrieve the proper displacement after being solicited by a pressure boundary condition.
Specification(s): 3d_bar_orthotropic_full_rotation
Design: Compute Finite Strain Elastic Stress
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.50.6Finite strain methods in Tensor Mechanics should be able to rotate an orthotropic beam-like element 360 degrees and retrieve the proper displacement after being solicited by a pressure boundary condition when automatic differentiation is used.
Specification(s): 3d_bar_orthotropic_full_rotation_ad
Design: Compute Finite Strain Elastic Stress
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Solid Mechanics QuasiStatic Physics System
- 8.2.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.8The QuasiStatic SolidMechanics Physics shall calculate the elastic stress and strain response for a 3D pressurized hollow cylinder with a large strain incremental strain formulation.
Specification(s): 3D_RZ_finitestrain
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.1The QuasiStatic SolidMechanics Physics shall support changing the base name when creating a consistent strain calculator material and stress divergence kernel and shall generate different sets of outputs for different mesh subblocks with the appropriate base name.
Specification(s): two_block_base_name
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #13860
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.2The QuasiStatic SolidMechanics Physics shall create a consistent strain calculator material and stress divergence kernel and shall generate different sets of outputs for different mesh subblocks.
Specification(s): two_block_new
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.3The QuasiStatic SolidMechanics Physics shall create different sets of consistent strain calculator material and stress divergence kernel pairs for different mesh subblocks requesting different strain formulations.
Specification(s): two_block
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.4The QuasiStatic SolidMechanics Physics shall create different sets of consistent strain calculator material and stress divergence kernel pairs for different mesh subblocks requesting different strain formulations with the new kernel system.
Specification(s): two_block_lagrangian
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.5The QuasiStatic SolidMechanics Physics shall error if an input file does not specify block restrictions for the MasterAction in input files with more than one instance of the MasterAction block.
Specification(s): two_block.error_unrestricted
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.7.6The QuasiStatic SolidMechanics Physics shall error if an input file specifies overlapping block restrictions for the MasterAction in input files with more than one instance of the MasterAction block.
Specification(s): two_block.error_overlapping
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.7.7The QuasiStatic SolidMechanics Physics shall warn if global Master action parameters are supplied but no Master action subblock have been added.
Specification(s): no_block
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.7.8The QuasiStatic SolidMechanics Physics shall create different sets of consistent strain calculator material and stress divergence kernel pairs for different mesh subblocks using different coordinate systems.
Specification(s): two_coord
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.9The QuasiStatic SolidMechanics Physics shall error if an input file assigns the same QuasiStatic SolidMechanics Physics block to mesh blocks with different coordinate systems.
Specification(s): two_coord.error_different_coords
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.7.10The QuasiStatic SolidMechanics Physics shall extract eigenstrain names from material classes and correctly output these names to the console.
Specification(s): action_eigenstrain
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.11The QuasiStatic SolidMechanics Physics shall extract eigenstrain names from material classes and correctly output these names to the console.
Specification(s): action_multi_eigenstrain
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.12The QuasiStatic SolidMechanics Physics shall extract eigenstrain names from material classes and correctly output these names to the console.
Specification(s): action_multi_eigenstrain_same_conditions
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.13The QuasiStatic SolidMechanics Physics shall extract eigenstrain names from material classes and correctly output these names to the console.
Specification(s): ad_converter_action_multi_eigenstrain
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.14The QuasiStatic SolidMechanics Physics shall extract eigenstrain names from material classes and correctly output these names to the console.
Specification(s): reduced_eigenstrain_action
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.15The QuasiStatic SolidMechanics Physics shall extract eigenstrain names from material classes and correctly output these names to the console.
Specification(s): composite_eigenstrain
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.16The QuasiStatic SolidMechanics Physics shall determine the necessary orders and families to apply to material outputs.
Specification(s): material_output_order.empty
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.17The QuasiStatic SolidMechanics Physics shall apply a single given output order to all output variables.
Specification(s): material_output_order.single
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.18The QuasiStatic SolidMechanics Physics shall apply a single given output family to all output variables.
Specification(s): material_output_order.family_single
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.7.19The QuasiStatic SolidMechanics Physics shall error if an the material outputs and or families do not match the number of material outputs.
Specification(s): material_output_order.error1
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.7.20The QuasiStatic SolidMechanics Physics shall determine the necessary orders and families to apply to material outputs.
Specification(s): material_output_first_lagrange_manual
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.21The QuasiStatic SolidMechanics Physics shall determine the necessary orders and families to apply to material outputs.
Specification(s): material_output_first_lagrange_automatic
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.7.22The QuasiStatic SolidMechanics Physics shall permit scalar quantity output from arbitrary tensors.
Specification(s): custom_output
Design: Solid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.4The Jacobian for the AD small strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.5The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere_incremental-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.6The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): finiteStrain_1DSphere_hollow-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.10.1The QuasiStatic SolidMechanics Physics shall create a consistent strain calculator material and stress divergence kernel and shall generate different sets of outputs for different mesh subblocks.
Specification(s): two_block_new
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.10.2The QuasiStatic SolidMechanics Physics shall create different sets of consistent strain calculator material and stress divergence kernel pairs for different mesh subblocks requesting different strain formulations.
Specification(s): two_block
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.10.3The QuasiStatic SolidMechanics Physics shall error if an input file does not specify block restrictions for the MasterAction in input files with more than one instance of the MasterAction block.
Specification(s): error_unrestricted
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.10.4The QuasiStatic SolidMechanics Physics shall error if an input file specifies overlapping block restrictions for the MasterAction in input files with more than one instance of the MasterAction block.
Specification(s): error_overlapping
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.10.5The QuasiStatic SolidMechanics Physics shall create different sets of consistent strain calculator material and stress divergence kernel pairs for different mesh subblocks using different coordinate systems.
Specification(s): two_coord
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.10.6The QuasiStatic SolidMechanics Physics shall error if an input file assigns the same QuasiStatic SolidMechanics Physics block to mesh blocks with different coordinate systems.
Specification(s): error_coord
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.10.7The Jacobian for the automatic differentiation in the two_block testproblem shall be perfect
Specification(s): two_block-jac
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.10.8The Jacobian for the automatic differentiation in the two_block testproblem shall be perfect (non action test case)
Specification(s): two_block_no_action-jac
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.10.9The Jacobian for the automatic differentiation in the two_block_new problem shall be perfect
Specification(s): two_block_new-jac
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.10.10The Jacobian for the automatic differentiation two_coord problem shall be perfect
Specification(s): two_coord-jac
Design: Solid Mechanics QuasiStatic Physics System
Issue(s): #7555
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.24.1The mechanics system shall be capable of accurately computing the elastic response of an anisotropic elastic material where 6 components of a symmetric elasticity tensor are output on an irregular patch of elements with total small strain assumptions
Specification(s): test
Design: Compute Linear Elastic StressCompute Small StrainSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.1The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation found with the Taylor expansion from Rashid(1993) on a unit 3D cube in a Cartesian system using the QuasiStatic SolidMechanics Physics.
Specification(s): new
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.5The ComputeFiniteStrainElasticStress class shall compute the elastic stress based on a finite strain fomulation and then follow the stress as the mesh is rotated 90 degrees in accordance with Kamojjala et al.(2015) using the QuasiStatic SolidMechanics Physics.
Specification(s): rotation_new
Design: Compute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.7The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation using a direct eigensolution to perform the polar decomposition of stretch and rotation on a unit 3D cube in a Cartesian system using the QuasiStatic SolidMechanics Physics.
Specification(s): eigen_sol
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.9The ComputeLinearElasticStress class shall generate an error if a user attempts to run a problem using ComputeLinearElasticStress with a finite strain formulation.
Specification(s): stress_errorcheck
Design: Compute Finite Strain Elastic StressCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.53.1The tensor mechanics action shall set up the mechanics kernels with the appropriate options to accumulate absolute values of the residual to a tag vector usable for relative convergence checks.
Specification(s): free_expansion_abs_ref
Design: Solid Mechanics QuasiStatic Physics SystemReferenceResidualProblem
Issue(s): #24246
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Rank Two Spherical Component
- 8.2.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.2.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Incremental StrainCompute Finite Strain Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.4The Jacobian for the AD small strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.5The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere_incremental-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.6The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): finiteStrain_1DSphere_hollow-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Compute Plane Small Strain
- 8.3.1The tensor mechanics strain calculators shall solve plane strain in the x-y plane for small strain
Specification(s): plane_strain_xy_small
Design: Compute Plane Small Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.3.4The tensor mechanics strain calculators shall solve plane strain in the x-z plane for small strain
Specification(s): plane_strain_xz_small
Design: Compute Plane Small Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.3.7The tensor mechanics strain calculators shall solve plane strain in the y-z plane for small strain
Specification(s): plane_strain_yz_small
Design: Compute Plane Small Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.1The ComputePlaneSmallStrain class shall compute the elastic stress and strain for a planar square geometry under tension using a total small plane strain formulation.
Specification(s): plane_strain
Design: Compute Plane Small Strain
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.2The ComputePlaneSmallStrain class shall compute the same result for elastic strain and stress when using the B-bar volumentric locking correction as computed without the volumetric locking correction for a planar geometry using a total small plane strain formulation.
Specification(s): plane_strain_Bbar
Design: Compute Plane Small StrainVolumetric Locking Correction
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.1The system shall support a traditional plane strain mechanics solution
Specification(s): plane_strain
Design: Compute Plane Small Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.2The system shall support a traditional plane strain mechanics solution where the out-of-plane strain is prescribed
Specification(s): plane_strain_prescribed
Design: Compute Plane Small Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.3The system shall support a generalized plane strain mechanics solution
Specification(s): generalized_plane_strain_small
Design: Compute Plane Small Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.4The system shall support a generalized plane strain mechanics solution using the reference residual approach to check solution convergence of the field and scalar variables when the reference vector is constructed using absolute value vector tags.
Specification(s): generalized_plane_strain_ref_resid_absolute_value_vector_tags
Design: Compute Plane Small Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.5The system shall support a generalized plane strain mechanics solution using the reference residual approach to check solution convergence of the field and scalar variables when the reference vector is constructed using unbalanced kernel contributions.
Specification(s): generalized_plane_strain_ref_resid_extra_vector_tags
Design: Compute Plane Small Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Plane Incremental Strain
- 8.3.2The tensor mechanics strain calculators shall solve plane strain in the x-y plane for incremental strain
Specification(s): plane_strain_xy_incremental
Design: Compute Plane Incremental Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.3.5The tensor mechanics strain calculators shall solve plane strain in the x-z plane for incremental strain
Specification(s): plane_strain_xz_incremental
Design: Compute Plane Incremental Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.3.8The tensor mechanics strain calculators shall solve plane strain in the y-z plane for incremental strain
Specification(s): plane_strain_yz_incremental
Design: Compute Plane Incremental Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.6The system shall support a generalized plane strain mechanics solution with incremental strain
Specification(s): generalized_plane_strain_increment
Design: Compute Plane Incremental Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Plane Finite Strain
- 8.3.3The tensor mechanics strain calculators shall solve plane strain in the x-y plane for finite strain
Specification(s): plane_strain_xy_finite
Design: Compute Plane Finite Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.3.6The tensor mechanics strain calculators shall solve plane strain in the x-z plane for finite strain
Specification(s): plane_strain_xz_finite
Design: Compute Plane Finite Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.3.9The tensor mechanics strain calculators shall solve plane strain in the y-z plane for finite strain
Specification(s): plane_strain_yz_finite
Design: Compute Plane Finite Strain
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.3The ComputePlaneFiniteStrain class shall compute the elastic stress and strain for a planar square geometry under tension using a finite incremental plane strain formulation.
Specification(s): finite_planestrain
Design: Compute Plane Finite Strain
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.4The ComputePlaneFiniteStrain class shall compute the same result for elastic strain and stress when using the B-bar volumentric locking correction as computed without the volumetric locking correction for a planar geometry using a finite incremental plane strain formulation.
Specification(s): finite_planestrain_Bbar
Design: Compute Plane Finite StrainVolumetric Locking Correction
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.54.7The system shall support a generalized plane strain mechanics solution with finite strain
Specification(s): generalized_plane_strain_finite
Design: Compute Plane Finite Strain
Issue(s): #5042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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: Stress Divergence Tensors
- 8.3.19The Jacobian for plane strain in the x-y plane shall be correct
Specification(s): planestrain_jacobian_xy
Design: Stress Divergence Tensors
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.3.20The Jacobian for plane strain in the x-z plane shall be correct
Specification(s): planestrain_jacobian_xz
Design: Stress Divergence Tensors
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.3.21The Jacobian for plane strain in the y-z plane shall be correct
Specification(s): planestrain_jacobian_yz
Design: Stress Divergence Tensors
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.3.22The Jacobian for generalized plane strain in the x-y plane shall be correct
Specification(s): gps_jacobian_xy
Design: Stress Divergence Tensors
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.3.23The Jacobian for generalized plane strain in the x-z plane shall be correct
Specification(s): gps_jacobian_xz
Design: Stress Divergence Tensors
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.3.24The Jacobian for generalized plane strain in the y-z plane shall be correct
Specification(s): gps_jacobian_yz
Design: Stress Divergence Tensors
Issue(s): #11257
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Volumetric Locking Correction
- 8.4.2The ComputePlaneSmallStrain class shall compute the same result for elastic strain and stress when using the B-bar volumentric locking correction as computed without the volumetric locking correction for a planar geometry using a total small plane strain formulation.
Specification(s): plane_strain_Bbar
Design: Compute Plane Small StrainVolumetric Locking Correction
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.4The ComputePlaneFiniteStrain class shall compute the same result for elastic strain and stress when using the B-bar volumentric locking correction as computed without the volumetric locking correction for a planar geometry using a finite incremental plane strain formulation.
Specification(s): finite_planestrain_Bbar
Design: Compute Plane Finite StrainVolumetric Locking Correction
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.10The ComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension when using the B-bar volumetric locking correction.
Specification(s): axisym_resid_Bbar
Design: Compute Axisymmetric RZ Finite StrainVolumetric Locking Correction
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.11The volumetric locking correction option in ComputeAxisymmetricRZFiniteStrain shall reinit material properties without inverting a zero tensor when called from a side postprocessor applied to the axis of rotation in an axisymmetric simulation.
Specification(s): axisymmetric_vlc_centerline_pp
Design: Volumetric Locking CorrectionAxisymmetricCenterlineAverageValue
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.9.5The ADComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension when using the B-bar volumetric locking correction.
Specification(s): axisym_resid_Bbar
Design: ADComputeAxisymmetricRZFiniteStrainVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.9.6The volumetric locking correction option in ADComputeAxisymmetricRZFiniteStrain shall reinit material properties without inverting a zero tensor when called from a side postprocessor applied to the axis of rotation in an axisymmetric simulation.
Specification(s): axisymmetric_vlc_centerline_pp
Design: Volumetric Locking CorrectionAxisymmetricCenterlineAverageValue
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.9.11The ADComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension when using the B-bar volumetric locking correction and shall produce perfect jacobians.
Specification(s): axisym_resid_Bbar-jac
Design: ADComputeAxisymmetricRZFiniteStrainVolumetric Locking Correction
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.9.12The volumetric locking correction option in ADComputeAxisymmetricRZFiniteStrain shall reinit material properties without inverting a zero tensor when called from a side postprocessor applied to the axis of rotation in an axisymmetric simulation and shall produce perfect jacobians.
Specification(s): axisymmetric_vlc_centerline_pp-jac
Design: Volumetric Locking CorrectionAxisymmetricCenterlineAverageValue
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.46.5The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when using volumetric locking correction.
Specification(s): elastic_patch_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.7The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when employing volumetric locking correction and running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.2The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation found with the Taylor expansion from Rashid(1993) on a unit 3D cube in a Cartesian system using the volumetric locking correction b-bar formulation.
Specification(s): new_Bbar
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.3The ComputeMultiPlasticityStress class shall, when supplied with no plastic models, reduce to and produce the solely elastic stress solution for a finite strain fomulation, using the QuasiStatic SolidMechanics Physics.
Specification(s): fake_plastic
Design: ComputeMultiPlasticityStressVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.4The ComputeMultiPlasticityStress class shall, when supplied with no plastic models, reduce to and produce the solely elastic stress solution for a finite strain fomulation, using the volumetric locking correction b-bar formulation.
Specification(s): fake_plastic_Bbar
Design: ComputeMultiPlasticityStressVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.6The ComputeFiniteStrainElasticStress class shall compute the elastic stress based on a finite strain fomulation and then follow the stress as the mesh is rotated 90 degrees in accordance with Kamojjala et al.(2015) using the volumetric locking correction b-bar formulation.
Specification(s): rotation_new_Bbar
Design: Compute Finite Strain Elastic StressVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.8The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation using a direct eigensolution to perform the polar decomposition of stretch and rotation on a unit 3D cube in a Cartesian system using the volumetric locking correction b-bar formulation.
Specification(s): eigen_sol_Bbar
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.110.4The mechanics system shall correctly compute the jacobian for 3D problems using small strain and volumetric locking correction.
Specification(s): smallstrain_3D_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.5The mechanics system shall correctly compute the jacobian for 3D problems using incremental small strain and volumetric locking correction.
Specification(s): incrementalstrain_3D_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.6The mechanics system shall correctly compute the jacobian for 3D problems using finite strain and volumetric locking correction.
Specification(s): finitestrain_3D_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.10The mechanics system shall correctly compute the jacobian for RZ problems using small strain and volumetric locking correction.
Specification(s): smallstrain_RZ_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.11The mechanics system shall correctly compute the jacobian for RZ problems using incremental small strain and volumetric locking correction.
Specification(s): incrementalstrain_RZ_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.12The mechanics system shall correctly compute the jacobian for RZ problems using finite strain and volumetric locking correction.
Specification(s): finitestrain_RZ_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.16The mechanics system shall correctly compute the jacobian for planestrain problems using small strain and volumetric locking correction.
Specification(s): smallplanestrain_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.17The mechanics system shall correctly compute the jacobian for planestrain problems using incremental small strain and volumetric locking correction.
Specification(s): incrementalplanestrain_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.18The mechanics system shall correctly compute the jacobian for planestrain problems using finite strain and volumetric locking correction.
Specification(s): finiteplanestrain_Bbar
Design: Volumetric Locking Correction
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.121.2The ComputeDeformGradBasedStress class shall correctly compute the stress from lagrangian strain when volumetric locking correction is used.
Specification(s): elastic_Bbar
Design: ComputeDeformGradBasedStressVolumetric Locking Correction
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
- 8.123.1The mechanics system shall correctly model the deformation of a 2D membrane with nearly incompressible material when volumetric locking correction is set to true.
Specification(s): vol_lock_2D
Design: Volumetric Locking Correction
Issue(s): #11220
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.123.2The mechanics system shall correctly model the locking behavior of a 2D membrane with nearly incompressible material when volumetric locking correction is set to false.
Specification(s): no_vol_lock_2D
Design: Volumetric Locking Correction
Issue(s): #11220
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Axisymmetric RZ Small Strain
- 8.4.5The ComputeAxisymmetricRZSmallStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small total axisymmetric strain formulation.
Specification(s): axisym_smallstrain
Design: Compute Axisymmetric RZ Small Strain
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.15We shall be able to reproduce small strain elasticity results of the hand-coded simulation in cylindrical coordinates using automatic differentiation. (non-AD reference)
Specification(s): rz_small_elastic-noad
Design: Compute Axisymmetric RZ Small Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Axisymmetric RZ Incremental Strain
- 8.4.6The ComputeAxisymmetricRZIncrementalStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small incremental axisymmetric strain formulation.
Specification(s): axisym_incremental_strain
Design: Compute Axisymmetric RZ Incremental Strain
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.12We shall be able to reproduce incremental small strain elasticity results of the hand-coded simulation in cylindrical coordinates using automatic differentiation. (non-AD reference)
Specification(s): rz_incremental_small_elastic-noad
Design: Compute Axisymmetric RZ Incremental Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Axisymmetric RZ Finite Strain
- 8.4.7The ComputeAxisymmetricRZFiniteStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small incremental axisymmetric strain formulation.
Specification(s): axisym_finitestrain
Design: Compute Axisymmetric RZ Finite Strain
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.9The ComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension.
Specification(s): axisym_resid
Design: Compute Axisymmetric RZ Finite Strain
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.4.10The ComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension when using the B-bar volumetric locking correction.
Specification(s): axisym_resid_Bbar
Design: Compute Axisymmetric RZ Finite StrainVolumetric Locking Correction
Issue(s): #5142
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.9We shall be able to reproduce finite strain elasticity results of the hand-coded simulation in cylindrical coordinates using automatic differentiation. (non-AD reference)
Specification(s): rz_finite_elastic-noad
Design: Compute Axisymmetric RZ Finite Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: AxisymmetricCenterlineAverageValue
- 8.4.11The volumetric locking correction option in ComputeAxisymmetricRZFiniteStrain shall reinit material properties without inverting a zero tensor when called from a side postprocessor applied to the axis of rotation in an axisymmetric simulation.
Specification(s): axisymmetric_vlc_centerline_pp
Design: Volumetric Locking CorrectionAxisymmetricCenterlineAverageValue
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.9.6The volumetric locking correction option in ADComputeAxisymmetricRZFiniteStrain shall reinit material properties without inverting a zero tensor when called from a side postprocessor applied to the axis of rotation in an axisymmetric simulation.
Specification(s): axisymmetric_vlc_centerline_pp
Design: Volumetric Locking CorrectionAxisymmetricCenterlineAverageValue
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.9.12The volumetric locking correction option in ADComputeAxisymmetricRZFiniteStrain shall reinit material properties without inverting a zero tensor when called from a side postprocessor applied to the axis of rotation in an axisymmetric simulation and shall produce perfect jacobians.
Specification(s): axisymmetric_vlc_centerline_pp-jac
Design: Volumetric Locking CorrectionAxisymmetricCenterlineAverageValue
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Legacy Kernel-Only Tensor Mechanics Action
- 8.5.1The Tensor Mechanics system shall support transformations of a rank two tensor into cylindircal coordinates.
Specification(s): test
Design: Legacy Kernel-Only Tensor Mechanics ActionCylindrical Rank Two Aux
Issue(s): #716
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.5.2The Tensor Mechanics system including volumetric locking correction shall support transformations of a rank two tensor into cylindircal coordinates.
Specification(s): test_Bbar
Design: Legacy Kernel-Only Tensor Mechanics ActionCylindrical Rank Two Aux
Issue(s): #716
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Cylindrical Rank Two Aux
- 8.5.1The Tensor Mechanics system shall support transformations of a rank two tensor into cylindircal coordinates.
Specification(s): test
Design: Legacy Kernel-Only Tensor Mechanics ActionCylindrical Rank Two Aux
Issue(s): #716
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.5.2The Tensor Mechanics system including volumetric locking correction shall support transformations of a rank two tensor into cylindircal coordinates.
Specification(s): test_Bbar
Design: Legacy Kernel-Only Tensor Mechanics ActionCylindrical Rank Two Aux
Issue(s): #716
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: Compute R-Spherical Small Strain
- 8.8.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.4The Jacobian for the AD small strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.5The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere_incremental-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.6The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): finiteStrain_1DSphere_hollow-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.12.24We shall be able to reproduce small strain elasticity results of the hand-coded simulation in spherical coordinates using automatic differentiation. (non-AD reference)
Specification(s): rspherical_small_elastic-noad
Design: Compute R-Spherical Small Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Linear Elastic Stress
- 8.8.1The ComputeRSphericalSmallStrain class, called through the QuasiStatic SolidMechanics Physics action, shall compute the total linearized solution for the displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with total small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.2The ComputeRSphericalIncrementalStrain class, called through the QuasiStatic SolidMechanics Physics, shall find the linearized incremental strain displacement of a solid isotropic elastic sphere with a pressure applied to the outer surface using a 1D spherical symmetric formulation with incremental small strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial and hoop stress.
Specification(s): smallStrain_1DSphere_incremental
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.3The ComputeRSphericalFiniteStrain class, called through the QuasiStatic SolidMechanics Physics action, shall find the finite incremental strain displacement of a thick walled hollow isotropic elastic sphere under an applied load using a 1D spherical symmetric fomulation with incremental finite strain assumptions. The RankTwoSphericalComponent class, called through the QuasiStatic SolidMechanics Physics, shall output the spherical radial stress.
Specification(s): finiteStrain_1DSphere_hollow
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.8.4The Jacobian for the AD small strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.5The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): smallStrain_1DSphere_incremental-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.8.6The Jacobian for the AD small incremental strain elasticity problem with Pressure BC in spherical coordinates shall be perfect
Specification(s): finiteStrain_1DSphere_hollow-jac
Design: Compute R-Spherical Small StrainCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics SystemRank Two Spherical Component
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.24.1The mechanics system shall be capable of accurately computing the elastic response of an anisotropic elastic material where 6 components of a symmetric elasticity tensor are output on an irregular patch of elements with total small strain assumptions
Specification(s): test
Design: Compute Linear Elastic StressCompute Small StrainSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.3The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an total small-strain calculation.
Specification(s): elastic_patch_total_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Small StrainCompute Linear Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.9The ComputeLinearElasticStress class shall generate an error if a user attempts to run a problem using ComputeLinearElasticStress with a finite strain formulation.
Specification(s): stress_errorcheck
Design: Compute Finite Strain Elastic StressCompute Linear Elastic StressSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: ADComputeAxisymmetricRZSmallStrain
- 8.9.1The ADComputeAxisymmetricRZSmallStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small total axisymmetric strain formulation.
Specification(s): axisym_smallstrain
Design: ADComputeAxisymmetricRZSmallStrain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.9.7The ADComputeAxisymmetricRZSmallStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small total axisymmetric strain formulation and shall produce perfect jacobians.
Specification(s): axisym_smallstrain-jac
Design: ADComputeAxisymmetricRZSmallStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.12.16We shall be able to reproduce small strain elasticity results of the hand-coded simulation in cylindrical coordinates using automatic differentiation.
Specification(s): rz_small_elastic
Design: ADComputeAxisymmetricRZSmallStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.17The Jacobian for the AD small strain elasticity problem in cylindrical coordinates shall be perfect
Specification(s): rz_small_elastic-jac
Design: ADComputeAxisymmetricRZSmallStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: ADComputeAxisymmetricRZIncrementalStrain
- 8.9.2The ADComputeAxisymmetricRZIncrementalStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small incremental axisymmetric strain formulation.
Specification(s): axisym_incremental_strain
Design: ADComputeAxisymmetricRZIncrementalStrain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.9.8The ADComputeAxisymmetricRZIncrementalStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small incremental axisymmetric strain formulation and shall produce perfect jacobians.
Specification(s): axisym_incremental_strain-jac
Design: ADComputeAxisymmetricRZIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.12.13We shall be able to reproduce incremental small strain elasticity results of the hand-coded simulation in cylindrical coordinates using automatic differentiation.
Specification(s): rz_incremental_small_elastic
Design: ADComputeAxisymmetricRZIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.14The Jacobian for the AD incremental small strain elasticity problem in cylindrical coordinates shall be perfect
Specification(s): rz_incremental_small_elastic-jac
Design: ADComputeAxisymmetricRZIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: ADComputeAxisymmetricRZFiniteStrain
- 8.9.3The ADComputeAxisymmetricRZFiniteStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small incremental axisymmetric strain formulation.
Specification(s): axisym_finitestrain
Design: ADComputeAxisymmetricRZFiniteStrain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.9.4The ADComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension.
Specification(s): axisym_resid
Design: ADComputeAxisymmetricRZFiniteStrain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.9.5The ADComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension when using the B-bar volumetric locking correction.
Specification(s): axisym_resid_Bbar
Design: ADComputeAxisymmetricRZFiniteStrainVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.9.9The ADComputeAxisymmetricRZFiniteStrain class shall compute the mechanical response for a pressurized hollow cylinder with a small incremental axisymmetric strain formulation and shall produce perfect jacobians.
Specification(s): axisym_finitestrain-jac
Design: ADComputeAxisymmetricRZFiniteStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.9.10The ADComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension and shall produce perfect jacobians.
Specification(s): axisym_resid-jac
Design: ADComputeAxisymmetricRZFiniteStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.9.11The ADComputeAxisymmetricRZFiniteStrain class shall compute the reaction forces on the top surface of a cylinder which is loaded axially in tension when using the B-bar volumetric locking correction and shall produce perfect jacobians.
Specification(s): axisym_resid_Bbar-jac
Design: ADComputeAxisymmetricRZFiniteStrainVolumetric Locking Correction
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.12.10We shall be able to reproduce finite strain elasticity results of the hand-coded simulation in cylindrical coordinates using automatic differentiation.
Specification(s): rz_finite_elastic
Design: ADComputeAxisymmetricRZFiniteStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.11The Jacobian for the AD finite strain elasticity problem in cylindrical coordinates shall be perfect
Specification(s): rz_finite_elastic-jac
Design: ADComputeAxisymmetricRZFiniteStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Hill Creep Stress Update
- 8.11.1The system shall avoid regression on material time step and combined anisotropic creep computations
Specification(s): anis_mech_hill_tensor_creep_small_tiny_step_ts_limit_test
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.11.2The system shall be capable of reproducing verification results of creep strain ratios along the X direction.
Specification(s): ad_aniso_creep_x_3d
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.3The system shall be capable of reproducing verification results of creep strain ratios along the X direction using hand-coded Jacobians.
Specification(s): aniso_creep_x_3d
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.4The system shall reproduce the creep strain as those evaluated with residual and derivative computations used for isotropic elasticity.
Specification(s): ad_aniso_creep_x_3d_aniso_elasticity
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.5The system shall compute shear creep strain in an element subject to shear load in one direction.
Specification(s): ad_aniso_creep_x_3d_shear
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.6The system shall compute shear creep strain in an element subject to shear load in two directions.
Specification(s): ad_aniso_creep_xy_3d_shear
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.7The system shall compute creep strains in an element with anisotropic elasticity and subject to biaxial tensile load.
Specification(s): ad_aniso_creep_xy_3d_aniso_elasticity
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.8The system shall be capable of reproducing verification results of creep strain ratios along the X direction using hand-coded Jacobians when no transformation is used to rotate the Hill tensor for small deformation.
Specification(s): aniso_creep_x_3d_no_trafo
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.9The system shall be capable of reproducing verification results of creep strain ratios along the Y direction.
Specification(s): ad_aniso_creep_y_3d
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.10The system shall be capable of reproducing verification results of creep strain ratios along the Z direction.
Specification(s): ad_aniso_creep_z_3d
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.11The system shall be capable of reproducing isotropic creep with the right anisotropic creep parameters: Baseline
Specification(s): ad_aniso_iso_iso
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.12The system shall provide a perfect Jacobian while calculating large deformation creep.
Specification(s): jac_ad
Design: Hill Creep Stress Update
Issue(s): #17456
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.11.13The system shall provide a reasonable Jacobian while calculating large deformation creep using the elasticity tensor as the tangent operator.
Specification(s): jac
Design: Hill Creep Stress Update
Issue(s): #21824
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.11.14The system shall be capable of reproducing isotropic creep with the right anisotropic creep parameters.
Specification(s): ad_aniso_iso_aniso
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.15The system shall be capable of enforcing a time step such that the creep rate integration error is controled by the user with the aid of a soft terminator when regular (non-AD) objects are used.
Specification(s): aniso_creep_integration_error
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.16The system shall be capable of enforcing a time step such that the creep rate integration error is controled by the user with the aid of a soft terminator.
Specification(s): ad_aniso_creep_integration_error
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.17The system shall be capable of running Hill materials with constant coefficients and coefficients that are function of temperature to capture material texture. This test performs a reference run with constant coefficients
Specification(s): ad_aniso_creep_temperature_coefficients
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.11.18The system shall be capable of running Hill materials with constant coefficients and coefficients that are function of temperature to capture material texture. This test performs a run using a constant temperature function.
Specification(s): ad_aniso_creep_temperature_coefficients_function
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.11.19The system shall be capable of running anisotropic Hill creep with temperature-dependent Hill coefficients and generating correct output.
Specification(s): ad_aniso_creep_temperature_coefficients_function_variation
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.11.20The system shall be capable of using large deformation rotation to update the orientation of Hill parameters even when there is no rigid body rotation. This test also serves as a reference to verify the updates to the Hill parameters when there is significant rigid body motion
Specification(s): 3d_bar_orthotropic_90deg_rotation_ad_creep_z_no_rotation
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.21The system shall be capable of using large deformation rotation to update the orientation of Hill parameters when there is 90-degree rigid body orientation change about the Z axis. The creep strains have to be very similar to the output when there is no rigid body motion (Note: The mere constraints enforcing rigid body rotation induce numerical errors). In this case using Hill constants.
Specification(s): 3d_bar_orthotropic_90deg_rotation_ad_creep_z
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.22The system shall be capable of using large deformation rotation to update the orientation of Hill parameters even when there is no rigid body rotation. This test also serves as a reference to verify the updates to the Hill parameters when there is significant rigid body motion
Specification(s): 3d_bar_orthotropic_90deg_rotation_ad_creep_x_no_rotation
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.23The system shall be capable of not using large deformation rotation to define Hill anisotropic parameters.
Specification(s): 3d_bar_orthotropic_90deg_rotation_ad_creep_x_no_rotation_no_transformation
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.11.24The system shall be capable of using large deformation rotation to update the orientation of Hill parameters when there is 90-degree rigid body orientation change about the X axis. The creep strains have to be very similar to the output when there is no rigid body motion (Note: The mere constraints enforcing rigid body rotation induce numerical errors). In this case using Hill constants.
Specification(s): 3d_bar_orthotropic_90deg_rotation_ad_creep_x
Design: Hill Creep Stress Update
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Compute Finite Strain in Cartesian System
- 8.12.1We shall be able to reproduce finite strain elasticity results of the hand-coded simulation using automatic differentiation. (non-AD reference)
Specification(s): finite_elastic-noad
Design: Compute Finite Strain in Cartesian System
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.1The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation found with the Taylor expansion from Rashid(1993) on a unit 3D cube in a Cartesian system using the QuasiStatic SolidMechanics Physics.
Specification(s): new
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.2The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation found with the Taylor expansion from Rashid(1993) on a unit 3D cube in a Cartesian system using the volumetric locking correction b-bar formulation.
Specification(s): new_Bbar
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.7The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation using a direct eigensolution to perform the polar decomposition of stretch and rotation on a unit 3D cube in a Cartesian system using the QuasiStatic SolidMechanics Physics.
Specification(s): eigen_sol
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.8The ComputeFiniteStrainElasticStress class shall compute the elastic stress for a finite strain formulation using a direct eigensolution to perform the polar decomposition of stretch and rotation on a unit 3D cube in a Cartesian system using the volumetric locking correction b-bar formulation.
Specification(s): eigen_sol_Bbar
Design: Compute Finite Strain Elastic StressCompute Finite Strain in Cartesian SystemVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.51.1Finite strain methods in Tensor Mechanics should be able to adequately simulate a bar bending simulation in 2D
Specification(s): bending
Design: Compute Finite Strain in Cartesian System
Issue(s): #7228
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.51.2Finite strain methods in Tensor Mechanics should be able to adequately simulate a bar bending simulation in 2D using a volumetric locking correction
Specification(s): bending_Bbar
Design: Compute Finite Strain in Cartesian System
Issue(s): #7228
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.51.3Finite strain methods in Tensor Mechanics should be able to adequately simulate a tensile test simulation in 3D
Specification(s): 3d_bar
Design: Compute Finite Strain in Cartesian System
Issue(s): #7228
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.51.4Finite strain methods in Tensor Mechanics should be able to adequately simulate a tensile test simulation in 3D using a volumetric locking correction
Specification(s): 3d_bar_Bbar
Design: Compute Finite Strain in Cartesian System
Issue(s): #7228
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.124.3The system shall cut the timestep through a mooseException when the loading conditions deform the element enough to produce a negative number under a square root term in the Rashid approximation for the rotation tensor
Specification(s): except3
Design: Compute Finite Strain in Cartesian System
Issue(s): #19067
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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
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
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
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
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
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
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
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
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: Compute Incremental Strain
- 8.12.4We shall be able to reproduce incremental small strain elasticity results of the hand-coded simulation using automatic differentiation. (non-AD reference)
Specification(s): incremental_small_elastic-noad
Design: Compute Incremental Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.2The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation.
Specification(s): elastic_patch_incremental_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.4The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation with no displaced mesh created.
Specification(s): elastic_patch_incremental_small_no_disp_mesh
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ADComputeIncrementalStrain
- 8.12.5We shall be able to reproduce incremental small strain elasticity results of the hand-coded simulation using automatic differentiation.
Specification(s): incremental_small_elastic
Design: ADComputeIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.6The Jacobian for the AD incremental small strain elasticity problem shall be perfect
Specification(s): incremental_small_elastic-jac
Design: ADComputeIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: ADComputeGreenLagrangeStrain
- 8.12.7The system shall provide an AD enabled Green-Lagrange strain calculator
Specification(s): green-lagrange
Design: ADComputeGreenLagrangeStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.8The Jacobian for the Green-Lagrange strain calculator shall be perfect
Specification(s): green-lagrange-jac
Design: ADComputeGreenLagrangeStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Compute R-Spherical Finite Strain
- 8.12.18We shall be able to reproduce finite strain elasticity results of the hand-coded simulation in spherical coordinates using automatic differentiation. (non-AD reference)
Specification(s): rspherical_finite_elastic-noad
Design: Compute R-Spherical Finite Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ADComputeRSphericalFiniteStrain
- 8.12.19We shall be able to reproduce finite strain elasticity results of the hand-coded simulation in spherical coordinates using automatic differentiation.
Specification(s): rspherical_finite_elastic
Design: ADComputeRSphericalFiniteStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.20The Jacobian for the AD finite strain elasticity problem in spherical coordinates shall be perfect
Specification(s): rspherical_finite_elastic-jac
Design: ADComputeRSphericalFiniteStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: ADComputeRSphericalIncrementalStrain
- 8.12.22We shall be able to reproduce incremental small strain elasticity results of the hand-coded simulation in spherical coordinates using automatic differentiation.
Specification(s): rspherical_incremental_small_elastic
Design: ADComputeRSphericalIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.23The Jacobian for the AD incremental small strain elasticity in spherical coordinates problem shall be perfect
Specification(s): rspherical_incremental_small_elastic-jac
Design: ADComputeRSphericalIncrementalStrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Compute R-Spherical Small Strain
- 8.12.25We shall be able to reproduce small strain elasticity results of the hand-coded simulation in spherical coordinates using automatic differentiation.
Specification(s): rspherical_small_elastic
Design: Compute R-Spherical Small Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.12.26The Jacobian for the AD small strain elasticity problem in spherical coordinates shall be perfect
Specification(s): rspherical_small_elastic-jac
Design: Compute R-Spherical Small Strain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Compute Isotropic Elasticity Tensor
- 8.14.1The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from the lambda and shear modulus for an isotropic material using AD formulations.
Specification(s): lambda_shear
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.14.2The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from the Young's modulus and Poisson's ratio for an isotropic material using AD formulations.
Specification(s): youngs_poissons
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.14.3The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from their bulk modulus and shear modulus for an isotropic material using AD formulations.
Specification(s): bulk_shear
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.14.4The ComputeElasticityTensor class shall correctly compute the elasticity tensor for an isotropic axisymmetric problem.
Specification(s): axisymmetric_rz
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.14.5The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from the lambda and shear modulus for an isotropic material using AD formulations and produce a perfect Jacobian.
Specification(s): lambda_shear-jac
Design: Compute Isotropic Elasticity Tensor
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.14.6The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from the Young's modulus and Poisson's ratio for an isotropic material using AD formulations and produce a perfect Jacobian.
Specification(s): youngs_poissons-jac
Design: Compute Isotropic Elasticity Tensor
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.14.7The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from their bulk modulus and shear modulus for an isotropic material using AD formulations and produce a perfect Jacobian.
Specification(s): bulk_shear-jac
Design: Compute Isotropic Elasticity Tensor
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.14.8The ComputeElasticityTensor class shall correctly compute the elasticity tensor for an isotropic axisymmetric problem and produce a perfect Jacobian.
Specification(s): axisymmetric_rz-jac
Design: Compute Isotropic Elasticity Tensor
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.32.1The system shall generate an error if a number of elastic constants other than two is supplied for an isotropic elasticity tensor
Specification(s): num_constants
Design: Compute Isotropic Elasticity Tensor
Issue(s): #9438
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.32.2The system shall generate an error if a non-positive Youngs modulus is supplied for an isotropic elasticity tensor
Specification(s): youngs_modulus
Design: Compute Isotropic Elasticity Tensor
Issue(s): #9438
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.32.3The system shall generate an error if a non-positive bulk modulus is supplied for an isotropic elasticity tensor
Specification(s): bulk_modulus
Design: Compute Isotropic Elasticity Tensor
Issue(s): #9438
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.32.4The system shall generate an error if a Poissons ratio outside the range from -1 to 0.5 is supplied for an isotropic elasticity tensor
Specification(s): poissons_ratio
Design: Compute Isotropic Elasticity Tensor
Issue(s): #9438
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.32.5The system shall generate an error if a non-positive shear modulus is supplied for an isotropic elasticity tensor
Specification(s): shear_modulus
Design: Compute Isotropic Elasticity Tensor
Issue(s): #9438
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.46.1The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes.
Specification(s): elastic_patch
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.2The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation.
Specification(s): elastic_patch_incremental_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.3The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an total small-strain calculation.
Specification(s): elastic_patch_total_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Small StrainCompute Linear Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.4The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation with no displaced mesh created.
Specification(s): elastic_patch_incremental_small_no_disp_mesh
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.5The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when using volumetric locking correction.
Specification(s): elastic_patch_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.6The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.7The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when employing volumetric locking correction and running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.8The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular 20-noded quadratic hexes.
Specification(s): elastic_patch_quadratic
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #620
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.67.1The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from the lambda and shear modulus for an isotropic material.
Specification(s): lambda_shear
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.67.2The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from the Young's modulus and Poisson's ratio for an isotropic material.
Specification(s): youngs_poissons
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.67.3The ComputeIsotropicElasticityTensor class shall correctly compute the elasticity tensor from their bulk modulus and shear modulus for an isotropic material.
Specification(s): bulk_shear
Design: Compute Isotropic Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ADComputeLinearElasticStress
- 8.15.1We shall be able to reproduce linear elastic stress results of the hand-coded simulation using automatic differentiation.
Specification(s): linear_elastic_material
Design: ADComputeLinearElasticStress
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.15.2The Jacobian for the AD linear elastic stress problem shall be perfect
Specification(s): linear_elastic_material-jac
Design: ADComputeLinearElasticStress
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.15.3We shall be able to introduce extra stresses into the stress calculators using automatic differentiation.
Specification(s): extra_stresses
Design: ADComputeLinearElasticStress
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.15.4The Jacobian for the AD linear elastic stress problem shall be perfect
Specification(s): extra_stresses-jac
Design: ADComputeLinearElasticStress
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.15.7We shall be able to reproduce small strain with specified tensors results of the hand-coded simulation using automatic differentiation.
Specification(s): tensor
Design: ADComputeLinearElasticStress
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.15.8The Jacobian for the AD small strain with specified tensors problem shall be perfect
Specification(s): tensor-jac
Design: ADComputeLinearElasticStress
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Compute Eigenstrain
- 8.15.5We shall be able to reproduce eigenstrain results of the hand-coded simulation using automatic differentiation.
Specification(s): applied_strain
Design: Compute Eigenstrain
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.15.6The Jacobian for the AD eigenstrain problem shall be perfect
Specification(s): applied_strain-jac
Design: Compute Eigenstrain
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.15.9We shall be able to reproduce thermal eigenstrain results of the hand-coded simulation using automatic differentiation.
Specification(s): thermal_expansion
Design: Compute Eigenstrain
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.15.10The Jacobian for the AD thermal eigenstrain problem shall be perfect
Specification(s): thermal_expansion-jac
Design: Compute Eigenstrain
Issue(s): #13099
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Power Law Creep Stress Update
- 8.16.1The AD multiple inelastic stress calculator shall provide a correct stress for a single power law creep model (reference computation)
Specification(s): powerlaw_ten
Design: Power Law Creep Stress Update
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.1The PowerLawCreepStressUpdate, called through the ADComputeMultipleInelasticStress, shall compute a creep strain based on an extrenal loading.
Specification(s): creep
Design: Power Law Creep Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.2The Jacobian for the AD regular creep problem shall be perfect
Specification(s): creep-jac
Design: Power Law Creep Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.92.2The system shall gracefully correct for out of bounds guess from the radial return mapping algorithm
- from the high bound.
- from the low bound.
Specification(s): bounds/high, bounds/low
Design: Power Law Creep Stress Update
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.92.3The system shall provide a power law creep mechanical constitutive model not using AD
- that works with a finite strain formulation.
- that works with a coupled plasticty model.
- that shall be restartable.
- that shall be restartable with a response that matches the original run.
- that works with a small strain formulation.
Specification(s): nonad/power_law_creep, nonad/cp_power_law_creep, nonad/restart1, nonad/power_law_creep_restart2, nonad/smallstrain
Design: Power Law Creep Stress Update
Issue(s): #8642
Collection(s): FUNCTIONAL
Type(s): ExodiffRunApp
- 8.92.4The system shall provide a power law creep mechanical constitutive model using AD
- that works with a finite strain formulation.
- that shall be restartable.
- that shall be restartable with a response that matches the original run.
- that works with a small strain formulation.
- calculate a perfect Jacobian
- calculate a perfect Jacobian with the small strain formulation
Specification(s): ad/power_law_creep, ad/restart1, ad/power_law_creep_restart2, ad/smallstrain, ad/power_law_creep-jac, ad/small_strain-jac
Design: Power Law Creep Stress Update
Issue(s): #8642
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTesterExodiffRunApp
- solid_mechanics: ADComputeMultipleInelasticStress
- 8.16.2The AD multiple inelastic stress calculator shall provide a correct stress for a single power law creep model and an additional zero creep power law model
Specification(s): powerlaw_zero
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.16.3The AD multiple inelastic stress calculator shall provide a correct stress for the linear combination of two power law creep models
Specification(s): powerlaw_sum
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.16.4The AD multiple inelastic stress calculator shall provide a correct stress when cycling through two identical power law creep models
Specification(s): powerlaw_cycle
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.16.5The AD multiple inelastic stress calculator shall provide a correct jacobian for a single power law creep model
Specification(s): powerlaw_ten_jacobian
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.16.6The AD multiple inelastic stress calculator shall provide a correct jacobian for a single power law creep model and an additional zero creep power law model
Specification(s): powerlaw_zero_jacobian
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.16.7The AD multiple inelastic stress calculator shall provide a correct jacobian for the linear combination of two power law creep models
Specification(s): powerlaw_sum_jacobian
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.16.8The AD multiple inelastic stress calculator shall provide a correct jacobian when cycling through two identical power law creep models
Specification(s): powerlaw_cycle_jacobian
Design: ADComputeMultipleInelasticStress
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.1The PowerLawCreepStressUpdate, called through the ADComputeMultipleInelasticStress, shall compute a creep strain based on an extrenal loading.
Specification(s): creep
Design: Power Law Creep Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.2The Jacobian for the AD regular creep problem shall be perfect
Specification(s): creep-jac
Design: Power Law Creep Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.3The ADViscoplasticityStressUpdate class shall compute a ratio between the gauge stress, equilvalent stress, and hydrostatic stress across a wide swath of exponents and stress states using spherical pore geometry.
Specification(s): exact_spherical
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.4The Jacobian for the AD exact spherical problem shall be perfect
Specification(s): exact_spherical-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.5The ADViscoplasticityStressUpdate class shall compute a ratio between the gauge stress, equilvalent stress, and hydrostatic stress across a wide swath of exponents and stress states using spherical pore geometry.
Specification(s): exact_cylindrical
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.6The Jacobian for the AD exact cylindrical problem shall be perfect
Specification(s): exact_cylindrical-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.7The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using a single model with LPS spherical formulation that increases the porosity due to an external strain.
Specification(s): lps_single
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.8The Jacobian for the AD lps single problem shall be perfect
Specification(s): lps_single-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.9The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using two LPS models with spherical formulations and the same stress exponential that is close to combining the models into a single ADViscoplasticityStressUpdate instance.
Specification(s): lps_single_split
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.10The Jacobian for the AD lps single split problem shall be perfect
Specification(s): lps_single_split-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.11The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using two LPS models with spherical formulations and two different stress exponents that increases the porosity due to an external strain.
Specification(s): lps_dual
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.12The Jacobian for the AD lps dual problem shall be perfect
Specification(s): lps_dual-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.13The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using a single model with GTN formulation that increases the porosity due to an external strain.
Specification(s): gtn_single
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.14The Jacobian for the AD gtn single problem shall be perfect
Specification(s): gtn_single-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.15The system shall handle a negative calculated porosity computed from a strain tensor
- by setting the porosity to zero.
- by setting the porosity to the initial condition.
- by throwing an exception.
Specification(s): negative/zero, negative/initial, negative/exception
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 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
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
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
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
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
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: Compute Small Strain
- 8.19.1We shall be able to run a simple linear small-strain problem using a hand-coded Jacobian
Specification(s): linear-hand-coded
Design: Compute Small Strain
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.19.4The Jacobian for the hand-coded problem shall be perfect
Specification(s): linear-hand-coded-jac
Design: Compute Small Strain
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.24.1The mechanics system shall be capable of accurately computing the elastic response of an anisotropic elastic material where 6 components of a symmetric elasticity tensor are output on an irregular patch of elements with total small strain assumptions
Specification(s): test
Design: Compute Linear Elastic StressCompute Small StrainSolid Mechanics QuasiStatic Physics System
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.3The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an total small-strain calculation.
Specification(s): elastic_patch_total_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Small StrainCompute Linear Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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
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
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
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
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: AD Compute Smeared Cracking Stress
- 8.20.1The MOOSE SolidMechanics module shall simulate cracking on a specimen under tension in cartesian coordinates using AD and match non-AD methods.
Specification(s): cracking
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.2The MOOSE SolidMechanics module shall simulate cracking on a specimen under tension in rz coordinates using AD and match non-AD methods.
Specification(s): cracking_rz
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.3The MOOSE SolidMechanics module shall simulate cracking while the cracking strength is prescribed by an elemental AuxVariable using AD and match non-AD methods.
Specification(s): cracking_function
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.4The MOOSE SolidMechanics module shall simulate exponential stress release using AD and match non-AD methods.
Specification(s): exponential
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.5The MOOSE SolidMechanics module shall simulate exponential stress relase while using the rz coordinate system using AD and match non-AD methods.
Specification(s): rz_exponential
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.6The MOOSE SolidMechanics module shall demonstrate softening using the power law for smeared cracking using AD and match non-AD methods.
Specification(s): power
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.7The MOOSE SolidMechanics module shall demonstrate the prescribed softening laws in three directions, power law (x), exponential (y), and abrupt (z) using AD and match non-AD methods.
Specification(s): multiple_softening
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.8The MOOSE SolidMechanics module shall simulate smeared cracking in the x y and z directions using AD and match non-AD methods.
Specification(s): xyz
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.9The MOOSE SolidMechanics module shall simulate smeared cracking under plane stress conditions using AD and match non-AD methods.
Specification(s): plane_stress
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.10The MOOSE SolidMechanics module shall demonstrate that the smeared cracking model correctly handles finite rotation of cracked elements using AD and match non-AD methods.
Specification(s): cracking_rotation
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.11The MOOSE SolidMechanics module shall demonstrate the finite rotation of cracked elements where the crack is prescribed in x using AD and match non-AD methods.
Specification(s): cracking_rotation_pres_dir_x
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.12The MOOSE SolidMechanics module shall demonstrate the finite rotation of cracked elements where the crack is prescribed in z using AD and match non-AD methods.
Specification(s): cracking_rotation_pres_dir_z
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.13The MOOSE SolidMechanics module shall demonstrate the finite rotation of cracked elements where two cracks are prescribed in x and z using AD and match non-AD methods.
Specification(s): cracking_rotation_pres_dir_xz
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.20.14The MOOSE SolidMechanics module shall compute accurate AD Jacobian of system with multiple softening laws.
Specification(s): ad_multiple_softening_jacobian
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.20.15The ComputeSmearedCrackingStress model shall generate a warning if 'cracked_elasticity_type' is not specified
Specification(s): cracking_err_diagonal
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.20.16The ComputeSmearedCrackingStress model shall generate an error if an invalid number of softening models is specified
Specification(s): cracking_err_softening
Design: AD Compute Smeared Cracking Stress
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: ComputeMeanThermalExpansionFunctionEigenstrain
- 8.21.1The system shall compute an eigenstrain due to thermal expansion using a function that describes a constant mean and instantaneous thermal expansion using the AD formulation
- and the finite strain formulation
- and the small strain formulation
Specification(s): constant/finite, constant/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.21.2The system shall compute an eigenstrain due to thermal expansion using a function that describes a mean and instantaneous thermal expansion with a linear relationship to temperature using the AD formulation
- and the finite strain formulation
- and the small strain formulation
Specification(s): linear/finite, linear/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.21.3The system shall compute an eigenstrain due and allow a smooth transition from negative to positive strain across the reference temperature and compare favorably to hand calculations
- using a mean thermal expansion coefficient
- using a complex mean thermal expansion coefficient
- using a complex mean thermal expansion coefficient and compute a perfect jacobian
- using a instantaneous thermal expansion coefficient
- using a complex instantaneous thermal expansion coefficient
- using a complex instantaneous thermal expansion coefficient and compute a perfect jacobian
- using a dilatation thermal expansion coefficient
Specification(s): individual/mean, individual/mean_complex, individual/mean_complex_jac, individual/instantaneous, individual/instantaneous_complex, individual/instantaneous_complex_jac, individual/dilatation
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrainComputeDilatationThermalExpansionFunctionEigenstrain
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTesterCSVDiff
- 8.112.1The system shall compute an eigenstrain due to thermal expansion using a function that describes a constant mean and instantaneous thermal expansion
- using finite strain formulation
- using small strain formulation
Specification(s): constant/finite, constant/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #13634
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.112.2The system shall compute an eigenstrain due to thermal expansion using a function that describes a mean and instantaneous thermal expansion with a linear relationship to temperature
- using finite strain formulation
- using small strain formulation
Specification(s): linear/finite, linear/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #13634
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.112.3The system shall compute an eigenstrain due and allow a smooth transition from negative to positive strain across the reference temperature and compare favorably to hand calculations
- using a mean thermal expansion coefficient
- using a mean thermal expansion coefficient with a scaling factor for sensitivity studies
- using a instantaneous thermal expansion coefficient
- using a dilatation thermal expansion coefficient
Specification(s): individual/mean, individual/mean_scaling, individual/instantaneous, individual/dilatation
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrainComputeDilatationThermalExpansionFunctionEigenstrain
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeInstantaneousThermalExpansionFunctionEigenstrain
- 8.21.1The system shall compute an eigenstrain due to thermal expansion using a function that describes a constant mean and instantaneous thermal expansion using the AD formulation
- and the finite strain formulation
- and the small strain formulation
Specification(s): constant/finite, constant/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.21.2The system shall compute an eigenstrain due to thermal expansion using a function that describes a mean and instantaneous thermal expansion with a linear relationship to temperature using the AD formulation
- and the finite strain formulation
- and the small strain formulation
Specification(s): linear/finite, linear/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #12650
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.21.3The system shall compute an eigenstrain due and allow a smooth transition from negative to positive strain across the reference temperature and compare favorably to hand calculations
- using a mean thermal expansion coefficient
- using a complex mean thermal expansion coefficient
- using a complex mean thermal expansion coefficient and compute a perfect jacobian
- using a instantaneous thermal expansion coefficient
- using a complex instantaneous thermal expansion coefficient
- using a complex instantaneous thermal expansion coefficient and compute a perfect jacobian
- using a dilatation thermal expansion coefficient
Specification(s): individual/mean, individual/mean_complex, individual/mean_complex_jac, individual/instantaneous, individual/instantaneous_complex, individual/instantaneous_complex_jac, individual/dilatation
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrainComputeDilatationThermalExpansionFunctionEigenstrain
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTesterCSVDiff
- 8.112.1The system shall compute an eigenstrain due to thermal expansion using a function that describes a constant mean and instantaneous thermal expansion
- using finite strain formulation
- using small strain formulation
Specification(s): constant/finite, constant/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #13634
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.112.2The system shall compute an eigenstrain due to thermal expansion using a function that describes a mean and instantaneous thermal expansion with a linear relationship to temperature
- using finite strain formulation
- using small strain formulation
Specification(s): linear/finite, linear/small_const
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrain
Issue(s): #13634
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.112.3The system shall compute an eigenstrain due and allow a smooth transition from negative to positive strain across the reference temperature and compare favorably to hand calculations
- using a mean thermal expansion coefficient
- using a mean thermal expansion coefficient with a scaling factor for sensitivity studies
- using a instantaneous thermal expansion coefficient
- using a dilatation thermal expansion coefficient
Specification(s): individual/mean, individual/mean_scaling, individual/instantaneous, individual/dilatation
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrainComputeDilatationThermalExpansionFunctionEigenstrain
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeDilatationThermalExpansionFunctionEigenstrain
- 8.21.3The system shall compute an eigenstrain due and allow a smooth transition from negative to positive strain across the reference temperature and compare favorably to hand calculations
- using a mean thermal expansion coefficient
- using a complex mean thermal expansion coefficient
- using a complex mean thermal expansion coefficient and compute a perfect jacobian
- using a instantaneous thermal expansion coefficient
- using a complex instantaneous thermal expansion coefficient
- using a complex instantaneous thermal expansion coefficient and compute a perfect jacobian
- using a dilatation thermal expansion coefficient
Specification(s): individual/mean, individual/mean_complex, individual/mean_complex_jac, individual/instantaneous, individual/instantaneous_complex, individual/instantaneous_complex_jac, individual/dilatation
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrainComputeDilatationThermalExpansionFunctionEigenstrain
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTesterCSVDiff
- 8.112.3The system shall compute an eigenstrain due and allow a smooth transition from negative to positive strain across the reference temperature and compare favorably to hand calculations
- using a mean thermal expansion coefficient
- using a mean thermal expansion coefficient with a scaling factor for sensitivity studies
- using a instantaneous thermal expansion coefficient
- using a dilatation thermal expansion coefficient
Specification(s): individual/mean, individual/mean_scaling, individual/instantaneous, individual/dilatation
Design: ComputeMeanThermalExpansionFunctionEigenstrainComputeInstantaneousThermalExpansionFunctionEigenstrainComputeDilatationThermalExpansionFunctionEigenstrain
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: AD Viscoplasticity Stress Update
- 8.22.3The ADViscoplasticityStressUpdate class shall compute a ratio between the gauge stress, equilvalent stress, and hydrostatic stress across a wide swath of exponents and stress states using spherical pore geometry.
Specification(s): exact_spherical
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.4The Jacobian for the AD exact spherical problem shall be perfect
Specification(s): exact_spherical-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.5The ADViscoplasticityStressUpdate class shall compute a ratio between the gauge stress, equilvalent stress, and hydrostatic stress across a wide swath of exponents and stress states using spherical pore geometry.
Specification(s): exact_cylindrical
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.6The Jacobian for the AD exact cylindrical problem shall be perfect
Specification(s): exact_cylindrical-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.7The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using a single model with LPS spherical formulation that increases the porosity due to an external strain.
Specification(s): lps_single
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.8The Jacobian for the AD lps single problem shall be perfect
Specification(s): lps_single-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.9The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using two LPS models with spherical formulations and the same stress exponential that is close to combining the models into a single ADViscoplasticityStressUpdate instance.
Specification(s): lps_single_split
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.10The Jacobian for the AD lps single split problem shall be perfect
Specification(s): lps_single_split-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.11The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using two LPS models with spherical formulations and two different stress exponents that increases the porosity due to an external strain.
Specification(s): lps_dual
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.12The Jacobian for the AD lps dual problem shall be perfect
Specification(s): lps_dual-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.13The ADViscoplasticityStressUpdate class shall compute the viscoplastic response using a single model with GTN formulation that increases the porosity due to an external strain.
Specification(s): gtn_single
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.22.14The Jacobian for the AD gtn single problem shall be perfect
Specification(s): gtn_single-jac
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.22.15The system shall handle a negative calculated porosity computed from a strain tensor
- by setting the porosity to zero.
- by setting the porosity to the initial condition.
- by throwing an exception.
Specification(s): negative/zero, negative/initial, negative/exception
Design: AD Viscoplasticity Stress UpdateADComputeMultipleInelasticStress
Issue(s): #13494
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- solid_mechanics: SolidMechanicsPlasticOrthotropic
- 8.23.1Anisotropic plasticity and anisotropic elastoplasticity must give almost identical results if elastic behavior is isotropic – plastic anisotropy
Specification(s): ad_aniso_plasticity_x_one_ref
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.2Anisotropic plasticity and anisotropic elastoplasticity must give almost identical results if elastic behavior is isotropic – elastoplastic anisotropy
Specification(s): ad_aniso_plasticity_x_one
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.3The system shall be able to solve anisotropic plasticity and anisotropic elastoplasticity problems with elastoplastic anisotropy
Specification(s): ad_aniso_plasticity_x_one_light
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.23.4Uniaxial tensile test run in x direction with anisotropic elasticity and linear strain hardening with automatic differentiation
Specification(s): ad_uniaxial_x_linear
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.5Uniaxial tensile test run in y direction with anisotropic elasticity and linear strain hardening with automatic differentiation
Specification(s): ad_uniaxial_y_linear
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.6Uniaxial tensile test run in x direction with anisotropic elasticity and non-linear strain hardening with automatic differentiation
Specification(s): ad_uniaxial_x_non_linear
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.7Compute hoop plastic strain in a cylinder and compare it for two elements located separately in hoop direction
Specification(s): 3D_hoop_strain_comparison
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.8Compute hoop plastic strain in a cylinder oriented along the x axis and compare it for two elements located separately in hoop direction for coarsely meshed model
Specification(s): 3D_hoop_strain_comparison_coarse_xaxis
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.9Compute hoop plastic strain in a cylinder oriented along the y axis and compare it for two elements located separately in hoop direction for coarsely meshed model
Specification(s): 3D_hoop_strain_comparison_coarse_yaxis
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.23.10Compute hoop plastic strain in a cylinder oriented along the z axis and compare it for two elements located separately in hoop direction for coarsely meshed model
Specification(s): 3D_hoop_strain_comparison_coarse_zaxis
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.25.1Anisotropic plasticity must yield same results as finite strain elasticity if yield condition is never met
Specification(s): anis_plasticity_test
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.25.2Anisotropic plasticity must yield same results as finite strain elasticity if yield condition is never met –elasticity
Specification(s): anis_elasticity_test
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.25.3Anisotropic plasticity with isotropic elasticity must reproduce simplified verification problem along x axis
Specification(s): ad_aniso_plasticity_x
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.25.4Anisotropic plasticity with hill tensor rotation must produce simplified verification problem along x axis
Specification(s): ad_aniso_plasticity_x_rotate
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.25.5Anisotropic plasticity with isotropic elasticity must reproduce simplified verification problem along y axis
Specification(s): ad_aniso_plasticity_y
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #16016
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.87.1The system shall be capable of simulating materials that exhibit orthotropic plasticity with constant hardening and linear strain applied in the x and y directions.
Specification(s): test
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #3832
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.87.2The system shall be capable of simulating materials that exhibit orthotropic plasticity with power rule hardening and linear strain applied in the x direction.
Specification(s): power_rule
Design: SolidMechanicsPlasticOrthotropic
Issue(s): #3832
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Rank Two Scalar Aux
- 8.26.1The system shall compute the VonMises value of a RankTwoTensor
Specification(s): ranktwoscalaraux
Design: Rank Two Scalar Aux
Issue(s): #4774
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.26.2The system shall allow RankTwoScalarAux to output principal stresses
Specification(s): principalstress
Design: Rank Two Scalar Aux
Issue(s): #5516
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.122.1The system shall correctly compute an eigenstrain tensor that results in a solution that exactly recovers the specified volumetric expansion, and the reported volumetric strain computed by RankTwoScalarAux shall match the prescribed volumetric strain.
Specification(s): volumetric_eigenstrain
Design: Compute Volumetric EigenstrainRank Two Scalar Aux
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.122.2The system shall correctly compute an eigenstrain using AD tensor that results in a solution that exactly recovers the specified volumetric expansion, and the reported volumetric strain computed by RankTwoScalarAux shall match the prescribed volumetric strain.
Specification(s): ad_volumetric_eigenstrain
Design: AD Compute Volumetric EigenstrainRank Two Scalar Aux
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.122.3The volumetric strain computed using RankTwoScalarAux for a unit cube with imposed displacements shall be identical to that obtained by imposing an eigenstrain that causes the same deformation of that model.
Specification(s): volumetric_mechanical
Design: Compute Volumetric EigenstrainRank Two Scalar Aux
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ElasticEnergyAux
- 8.26.3The system shall compute the local elastic energy
Specification(s): tensorelasticenergyaux
Design: ElasticEnergyAux
Issue(s): #13635
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.1The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes.
Specification(s): elastic_patch
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.2The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation.
Specification(s): elastic_patch_incremental_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.3The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an total small-strain calculation.
Specification(s): elastic_patch_total_small
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Small StrainCompute Linear Elastic Stress
Issue(s): #12584
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.4The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes using an incremental small-strain calculation with no displaced mesh created.
Specification(s): elastic_patch_incremental_small_no_disp_mesh
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Incremental StrainCompute Finite Strain Elastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.5The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when using volumetric locking correction.
Specification(s): elastic_patch_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.6The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.7The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular hexes when employing volumetric locking correction and running on 2 processors in parallel.
Specification(s): elastic_patch_2Procs_Bbar
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic StressVolumetric Locking Correction
Issue(s): #458
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.46.8The tensor mechanics module shall have the ability to compute spatially uniform stresses under prescribed linearly varying displacements on a set of irregular 20-noded quadratic hexes.
Specification(s): elastic_patch_quadratic
Design: ElasticEnergyAuxCompute Isotropic Elasticity TensorCompute Finite Strain Elastic Stress
Issue(s): #620
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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
anduse_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
andgamma
) 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 whiledynamic_consistent_inertia
,dynamic_nodal_rotational_inertia
ordynamic_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 whiledynamic_consistent_inertia
,dynamic_nodal_rotational_inertia
ordynamic_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
- oriented along the global Z axis.
- oriented on the YZ plane at a 45 deg. angle.
- oriented on the YZ plane at a 45 deg. angle and has in-plane loading.
- oriented on the YZ plane at a 45 deg. angle and has in-plane loading with non-symmetric cross section geometry.
- oriented on the YZ plane at a 45 deg. angle and has in-plane loading and the cross section geometry is non-symmetric.
- oriented along the global Y axis.
- oriented on the XZ plane at a 45 deg. angle.
- oriented on the XZ plane at a 45 deg. angle, and the external loading takes place on the same plane.
- oriented on the XY plane at a 45 deg. angle.
- 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
- subjected to simply supported BCs and distributed loading.
- 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: Compute Thermal Expansion Eigenstrain Beam
- 8.27.53The ComputeThermalExpansionEigenstrainBeam class shall correctly calculate eigenstrains due to changes in temperature.
Specification(s): thermal_eigenstrain
Design: Compute Thermal Expansion Eigenstrain Beam
Issue(s): #10313
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Eigenstrain Beam From Variable
- 8.27.54The ComputeEigenstrainBeamFromVariable class shall correctly transfer eigenstrains from auxvariables into eigenstrain material property.
Specification(s): eigenstrain_from_var
Design: Compute Eigenstrain Beam From Variable
Issue(s): #10313
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.27.55The ComputeEigenstrainBeamFromVariable class shall report an error if less than 3 displacement or rotational eigenstrains are provided by the user.
Specification(s): eigenstrain_from_var_test1
Design: Compute Eigenstrain Beam From Variable
Issue(s): #10313
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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: CappedWeakInclinedPlaneStressUpdate
- 8.30.25The CappedWeakInclinedPlaneStressUpdate model shall correctly represent tensile failure with a specified normal=(1,0,0)
Specification(s): small_inclined2
Design: CappedWeakInclinedPlaneStressUpdate
Issue(s): #8303
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.30.26The CappedWeakPlaneStressUpdate model shall correctly represent tensile failure with a specified normal=(0,1,0)
Specification(s): small_inclined3
Design: CappedWeakInclinedPlaneStressUpdate
Issue(s): #8303
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.30.27The CappedWeakPlaneStressUpdate model shall correctly represent shear failure with a specified normal=(1,0,0)
Specification(s): small_inclined5
Design: CappedWeakInclinedPlaneStressUpdate
Issue(s): #8303
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: CappedWeakPlaneCosseratStressUpdate
- 8.30.28The CappedWeakPlaneCosseratStressUpdate model shall correctly represent plastic behavior under a first set of loading conditions
Specification(s): small_cosserat1
Design: CappedWeakPlaneCosseratStressUpdate
Issue(s): #8431
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.30.29The CappedWeakPlaneCosseratStressUpdate model shall correctly represent plastic behavior under a second set of loading conditions
Specification(s): small_cosserat2
Design: CappedWeakPlaneCosseratStressUpdate
Issue(s): #8431
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.30.30The CappedWeakPlaneCosseratStressUpdate model shall correctly represent plastic behavior under a third set of loading conditions
Specification(s): small_cosserat3
Design: CappedWeakPlaneCosseratStressUpdate
Issue(s): #8431
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.30.31The CappedWeakPlaneCosseratStressUpdate model shall correctly represent plastic behavior under a fourth set of loading conditions
Specification(s): small_cosserat4
Design: CappedWeakPlaneCosseratStressUpdate
Issue(s): #8431
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: CentralDifference
- 8.31.1The NewmarkBeta timeintegrator shall correctly calculate the response of a 1D mesh.
Specification(s): implicit
Design: CentralDifference
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: PureElasticTractionSeparation
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: CZMComputeDisplacementJumpSmallStrain
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: CZMComputeGlobalTractionSmallStrain
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: CZM InterfaceKernelSmallStrain
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: CZMComputeDisplacementJumpTotalLagrangian
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: CZMComputeGlobalTractionTotalLagrangian
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: CZMInterfaceKernelTotalLagrangian
- 8.33.1The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The small strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The finite strain cohesive zone model shall converge quadratically when using the hand-coded Jacobian
- The small strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The finite strain cohesive zone model shall return the same results of the total formulation when using an incremental material
- The system shall allow using multiple CohesiveZoneAction and different cohesive materials for different boundaries
- The system shall report an error when different strains are provided in different blocks of the CohesiveZoneAction
- The system shall report an error when overlapping boundaries are provided in different blocks of the CohesiveZoneAction
- The system shall use the common block generate output and additional outputs for all CZM blocks
- The system shall add additional outputs requested within each block
- The system shall be able to use different output orders on different blocks
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using the PureElasticTractionSeparation model, and only compute a normal gap under purely normal loading.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the small strain formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 3D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 2D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The system shall allow for cohesive zone laws to represent the traction-separation behavior at an interface between two bodies represented by continuum elements in 1D using an elastic traction sepration law, and only compute a normal gap under purely normal loading when using the total Lagrangian formulation.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using an incremental material.
- The CZMInterfaceKernelTotalLagrangian should properly account for large area changes and interface rotations when using a total strain material.
Specification(s): czm_framework/jacobian_small_strain, czm_framework/jacobian_total_lagrangian, czm_framework/small_strain_incremental, czm_framework/total_lagrangian_incremental, czm_framework/multiple_action_and_materials, czm_framework/multiple_action_different_strain, czm_framework/czm_multiple_action_overlapping_boundary, czm_framework/multiple_action_common_outputs, czm_framework/czm_multiple_action_additional_outputs_on_different_block, czm_framework/multiple_action_differnt_outputs_orders_on_different_block, czm_framework/action_3D_small_strain_normal, czm_framework/action_2D_small_strain_normal, czm_framework/action_1D_small_strain_normal, czm_framework/action_3D_total_lagrangian_normal, czm_framework/action_2D_total_lagrangian_normal, czm_framework/action_1D_total_lagrangian_normal, czm_framework/czm_incremental_stretch_rotate_total_lagrangian, czm_framework/czm_total_stretch_rotate_total_lagrangian
Design: PureElasticTractionSeparationCZMComputeDisplacementJumpSmallStrainCZMComputeGlobalTractionSmallStrainCZM InterfaceKernelSmallStrainCZMComputeDisplacementJumpTotalLagrangianCZMComputeGlobalTractionTotalLagrangianCZMInterfaceKernelTotalLagrangian
Issue(s): #11546#14527#17156#18611
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): ExodiffRunExceptionCSVDiff
- solid_mechanics: Bilinear mixed mode traction separation law
- 8.33.2The system shall be able to model decohesion of composites using cohesive zone model
- under mode I loading.
- under mode I loading with scaled normal strength.
- under mode II loading.
- under mode I loading by lagging the seperation state.
- under mode I loading with power law propagation criterion.
Specification(s): bilinear_mixed_mode/normal, bilinear_mixed_mode/scale_strength_normal, bilinear_mixed_mode/shear, bilinear_mixed_mode/normal_lag, bilinear_mixed_mode/normal_power_law
Design: Bilinear mixed mode traction separation law
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: SalehaniIrani 3D Coupled Traction separation law
- 8.33.3The system shall be able to use the small strain and total lagrangian cohesive zone model formulation, demonstrate an exact jacobian, and use the parent action to simplify input an doutput and provide the correct results
- The system shall converge quadratically when using the handcoded Jacobian of the 3DC traction separation model
- The 3DC traction separation shall produce only a normal traction when a normal displacement jump is applied.
- The 3DC traction separation shall produce only a shear traction y when a only a displacement jump along y is applied.
- The 3DC traction separation shall produce only a shear traction z when a only a displacement jump along z is applied.
Specification(s): material_3DC/jacobian, material_3DC/normal_load, material_3DC/shear_load_y, material_3DC/shear_load_z
Design: SalehaniIrani 3D Coupled Traction separation law
Collection(s): FUNCTIONAL
Type(s): ExodiffCSVDiff
- solid_mechanics: ADPureElasticTractionSeparation
- 8.33.4The system shall be able to use the small strain cohesive zone model formulation using automatic differentiation
- The solution obtained using AD CZM shall match
- the non-AD solution
Specification(s): AD_CZM_small/AD_solution, AD_CZM_small/non_AD_solution
Design: ADPureElasticTractionSeparation
Issue(s): #23855
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.33.5The system shall be able to use the total lagrangian cohesive zone model formulation using automatic differentiation
- The solution obtained using AD CZM shall match
- the non-AD solution
Specification(s): AD_CZM_large/AD_solution, AD_CZM_large/non_AD_solution
Design: ADPureElasticTractionSeparation
Issue(s): #23855
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Multiple Inelastic Stress
- 8.34.1MOOSE tensor mechanics module shall solve a combined creep and plasticity 1-d bar problem.
Specification(s): combined
Design: Compute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.34.2MOOSE tensor mechanics module shall solve a combined creep and plasticity 1-d bar problem with a non-zero start time.
Specification(s): combined_start_time
Design: Compute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.34.3MOOSE tensor mechanics module shall solve a combined creep and plasticity 3D cube problem with a time-varying pressure BC.
Specification(s): stress_prescribed
Design: Compute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.34.4MOOSE tensor mechanics module shall solve a combined creep and plasticity 3D cube problem with a constant displacement BC and stress relaxation.
Specification(s): stress_relaxation
Design: Compute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.34.5MOOSE tensor mechanics module shall solve a combined creep and plasticity 1-d bar problem with the creep and plasticity models tightly coupled.
Specification(s): creepWithPlasticity
Design: Compute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.1The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the small incremental strain formulation.
Specification(s): isotropic_plasticity_incremental
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.2The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the small incremental strain formulation while prescribing a base name for the isotropic plasticity material properties.
Specification(s): isotropic_plasticity_incremental_base_name
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.3The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the small incremental strain formulation and using the b-bar element volume correction.
Specification(s): isotropic_plasticity_incremental_Bbar
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.4The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the finite incremental strain formulation.
Specification(s): isotropic_plasticity_finite
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.5The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the finite incremental strain formulation and using the b-bar element volume correction.
Specification(s): isotropic_plasticity_finite_Bbar
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.12The system shall calculate, with J2 isotropic plasticity, the transient stress eigenvalues with stationary eigenvectors verification test from K. Jamojjala, R. Brannon, A. Sadeghirad, J. Guilkey, Verification tests in solid mechanics, Engineering with Computers, Vol 31., p. 193-213.
Specification(s): affine_plasticity
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.99.1The system shall calculate the effect of damage on the stress of a elastic material.
Specification(s): scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.2The system shall calculate the effect of damage on the stress of a elastic material when using automatic differentiation.
Specification(s): ad_scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.3The system shall calculate damaged stress based on old damage index.
Specification(s): scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.4The system shall calculate damaged stress based on old damage index when using automatic differentiation.
Specification(s): ad_scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.5The system shall report an error when damage index is greater than 1.
Specification(s): scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.6The system shall report an error when damage index is greater than 1 also when using automatic differentiation.
Specification(s): ad_scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.7The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress
Specification(s): scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.8The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress when using automatic differentiation
Specification(s): ad_scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.9The system shall calculate the maximum value of the damage index comparing different damage models.
Specification(s): combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.10The system shall calculate the effective damage index from different damage models.
Specification(s): combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.11The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model
Specification(s): combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.12The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models.
Specification(s): combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.13The system shall calculate the maximum value of the damage index comparing different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.14The system shall calculate the effective damage index from different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.15The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.16The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.17The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the creep or plastic deformation.
Specification(s): scalar_damage_material_inelastic
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.18The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation.
Specification(s): scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.19The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation with automatic differentiation.
Specification(s): ad_scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.20The system shall provide a meaningful error if the user selects a material model that is not recognized by the automatic differentiation multiple stress object.
Specification(s): multiple_inelastic_bad_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #20722
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.21The system shall calculate the effect of damage on the stress of a nonlocal damage model.
Specification(s): nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.22The system shall calculate the effect of damage on the stress of a nonlocal damage model. When using automatic differentiation.
Specification(s): ad_nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Coupled Pressure BC
- 8.35.1The system shall allow to apply a pressure boundary condition from a variable
Specification(s): coupled_pressure
Design: Coupled Pressure BC
Issue(s): #11558
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: CrackFrontNonlocalStress
- 8.36.1The system shall compute the average stress at each crack point in a 3D domain.
Specification(s): crack_front_stress
Design: CrackFrontNonlocalStress
Issue(s): #27659
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Crack Front Definition
- 8.37.1The system shall report crack front data for a curved crack front to the console.
Specification(s): screen_output_test
Design: Crack Front Definition
Issue(s): #3275
Collection(s): FUNCTIONAL
Type(s): RunApp
- solid_mechanics: Recompute Iterations on the Effective Plastic Strain Increment
- 8.38.1The system shall compute the proper stress update using the radial return isotropic power law creep model.
Specification(s): ten
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.38.2The system shall compute the proper stress update using multiple radial return isotropic power law creep models where one of the models returns zero.
Specification(s): zero
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.38.3The system shall compute the sum of multiple stress updates using multiple radial return isotropic power law creep models.
Specification(s): sum
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.38.4The system shall support the cycling of multiple creep models when computing stress updates.
Specification(s): cycle
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.38.5The system shall produce the correct Jacobians for radial return isotropic power law creep models.
Specification(s): ten_jacobian
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): AnalyzeJacobian
- 8.38.6The system shall produce the correct Jacobians for radial return isotropic power law creep models when one of the models returns zero.
Specification(s): zero_jacobian
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): AnalyzeJacobian
- 8.38.7The system shall produce the correct Jacobians for summed radial return isotropic power law creep models.
Specification(s): sum_jacobian
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): AnalyzeJacobian
- 8.38.8The systam shall produce the correct Jacobians for cyclic creep model evaluation.
Specification(s): cycle_jacobian
Design: Recompute Iterations on the Effective Plastic Strain Increment
Issue(s): #13232
Collection(s): FUNCTIONAL
Type(s): AnalyzeJacobian
- solid_mechanics: Critical Time Step Postprocessor
- 8.39.1The system shall correctly compute the critical time step for a solid with:
- uniform properties and
- variable properties.
Specification(s): crit_time_solid/uniform, crit_time_solid/variable
Design: Critical Time Step Postprocessor
Issue(s): #13975
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.39.2The system shall correctly compute the critical time step for a beam.
Specification(s): timoshenko_smallstrain_critstep
Design: Critical Time Step Postprocessor
Issue(s): #13975
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.39.3The system shall produce an error if the input elasticity tensor is non-isotropic.
Specification(s): except1
Design: Critical Time Step Postprocessor
Issue(s): #13975
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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: Compute Crystal Plasticity Thermal Eigenstrain
- 8.41.1The system shall produce correct thermal deformation gradient values with changing temperature
Specification(s): thermal_eigenstrain
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.3The system shall produce correct deformation gradient values for the total and individual eigenstrains
Specification(s): multiple_eigenstrains
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.4The system shall produce correct thermal deformation gradient values with changing temperature under a 011 loading orientation
Specification(s): thermal_eigenstrain_011orientation
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.5The system shall produce correct thermal deformation gradient values with changing temperature for an anisotropic HCP crystal lattice
Specification(s): hcp_thermal_eigenstrain
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Compute Multiple Crystal Plasticity Stress
- 8.41.1The system shall produce correct thermal deformation gradient values with changing temperature
Specification(s): thermal_eigenstrain
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.2The system shall produce correct thermal deformation gradient values when the simulation is restarted
Specification(s): thermal_eigenstrain_restart
Design: Compute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.3The system shall produce correct deformation gradient values for the total and individual eigenstrains
Specification(s): multiple_eigenstrains
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.4The system shall produce correct thermal deformation gradient values with changing temperature under a 011 loading orientation
Specification(s): thermal_eigenstrain_011orientation
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.5The system shall produce correct thermal deformation gradient values with changing temperature for an anisotropic HCP crystal lattice
Specification(s): hcp_thermal_eigenstrain
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.6The system shall produce a positive isotropic eigenstrain in response to an increasing number density and shall demonstrate an applied shear stress on the slip systems with a z-component in response to the BCs on displacement in the z-direction.
Specification(s): volumetric_eigenstrain_increase
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.7The system shall continue the isotropic eigenstrain response calculation upon simulation restart.
Specification(s): volumetric_eigenstrain_increase_restart
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.8The system shall produce a negative isotropic eigenstrain in response to an decreasing average radius and shall demonstrate an applied stress on the slip systems with a z-component in response to the BC constraints on displacement of the crystal in the z-direction.
Specification(s): hcp_volumetric_eigenstrain_decrease
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.9The system shall produce an isotropic eigenstrain in response to parabolic evolution of both the void number density and average radius, and shall induce plastic deformation in the crystal plasticity reponse through the state dependance of the deformation gradient that final strain state of the FCC crystal is not zero.
Specification(s): volumetric_eigenstrain_parabolic
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.16Upon simulation restart, the HCP crystal plasticity capability shall:
- continue to evolve the forest dislocation densities on basal <a> slip planes.
- continue to compute the slip system strength and resolved applied shear stress for the prismatic<a> and pyramidal<c+a> slip systems.
Specification(s): restart_capabilities/update_method_hcp_basal_active_restart, restart_capabilities/update_method_hcp_aprismatic_capyramidal_restart
Design: Crystal Plasticity HCP Dislocation Slip Beyerlein UpdateCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.17The HCP crystal plasticity capability shall:
- compute the Schmid tensors and resulting resolved applied shear stress for a non-physical representative set of basal, prismatic, and pyramidal slip systems;
- ensure that the provided lattice parameters match the expectation a = b != c for HCP crystals;
- ensure that eight indices are given for the Miller-Bravais notation for HCP slip systems;
- ensure that the Miller-Bravais basal plane indices sum to zero.
- ensure that the Miller-Bravais indices for the slip direction in the basal plane sum to zero.
- provide warning messages about constitutive model and slip increment convergence issues when the corresponding input file parameter is set to true.
- provide warning messages about constitutive model stress convergence issues with the appropriate input file parameter setting.
Specification(s): base_class_hcp/update_method_hcp_representative_slip_systems, base_class_hcp/update_method_hcp_representative_equal_lattice_parameters, base_class_hcp/update_method_hcp_representative_incorrect_index_numbers, base_class_hcp/update_method_hcp_representative_incorrect_basal_plane, base_class_hcp/update_method_hcp_representative_incorrect_basal_slip_direction, base_class_hcp/update_method_hcp_convergence_issue_flag, base_class_hcp/update_method_hcp_stress_convergence_issue_flag
Design: Compute Multiple Crystal Plasticity Stress
Issue(s): #18846
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 8.41.18The crystal plasticity HCP system shall:
- calculate the Schmid tensor for a set of HCP twin systems given in Miller-Bravais indices and shall calculate a twin volume fraction when using the FCC Kalidindi twinning model with a modified input file.
- compute a plastic velocity gradient that accounts for deformation contributions from both slip and twinning in an HCP crystal.
Specification(s): coupling_demonstration/modified_kalidindi_for_hcp, coupling_demonstration/demonstration_combined_hcp_slip_twins
Design: Compute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein UpdateCrystalPlasticityTwinningKalidindiUpdate
Issue(s): #18846
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.19The crystal plasticity system shall compute the plastic velocity gradient from both slip and twinning in anHCP crystal upon simulation restart.
Specification(s): demonstration_combined_hcp_slip_twins_restart
Design: Compute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein UpdateCrystalPlasticityTwinningKalidindiUpdate
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.32The system shall provide a StressUpdate material-based extensible crystal plasticity system
Specification(s): update_model_test
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.33The system shall provide a StressUpdate material-based extensible crystal plasticity framework that shall continue the state-dependent calculation upon restart
Specification(s): update_model_test_restart
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.34The material-based crystal plasticity model shall compute the lagrangian stress, PK2 stress, and slip for an orientation not aligned with the Cartesian coordinate system.
Specification(s): update_model_011orientation
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.35A constitutive failure shall trigger an exception leading to a cut time step rather than a failed solve using the stress-update based crystal plasticity implementation
Specification(s): exception
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.36The crystal plasticity system shall provide a substepping capability for improved convergence using the stress-update based crystal plasticity implementation
Specification(s): substep
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.40The system shall apply correct boundary condition after timestep being cut during substepping using the stress-update based crystal plasticity implementation
Specification(s): use_substep_dt
Design: Compute Multiple Crystal Plasticity Stress
Issue(s): #17340
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.41The system shall produce correct Euler angles during the crystal plastic simulation for single crystal oriented along (111).
Specification(s): update_euler_angle_111_orientation
Design: Compute Updated Euler AngleCompute Multiple Crystal Plasticity Stress
Issue(s): #19473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.42The system shall produce correct Euler angles during the crystal plastic simulation for single crystal oriented along (112).
Specification(s): update_euler_angle_112_orientation
Design: Compute Updated Euler AngleCompute Multiple Crystal Plasticity Stress
Issue(s): #19473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.43The system shall produce correct Euler angles during the crystal plastic simulation for single crystal oriented along (123).
Specification(s): update_euler_angle_123_orientation
Design: Compute Updated Euler AngleCompute Multiple Crystal Plasticity Stress
Issue(s): #19473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.44The system shall allow multiple crystal plasticity models to be used in a polycrystalline simulation through the use of the base_name input parameter.
Specification(s): bicrystal_test
Design: Compute Multiple Crystal Plasticity Stress
Issue(s): #21036
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.45The system shall allow multiple crystal plasticity models to be used in a polycrystalline simulation with the restart capability.
Specification(s): bicrystal_test_restart
Design: Compute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.52Upon simulation restart, the crystal plasticity capability shall:
- continue to compute the plastic shear due to twinning after a simulation restart.
- continue to calculate plastic shear due to both dislocation slip and twinning when loaded under tension in a 111 orientation in a simulation restart.
Specification(s): restart_capabilities/only_twinning_fcc_restart, restart_capabilities/combined_twinning_slip_111tension_restart
Design: CrystalPlasticityTwinningKalidindiUpdateCrystalPlasticityKalidindiUpdateCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Crystal Plasticity HCP Dislocation Slip Beyerlein Update
- 8.41.5The system shall produce correct thermal deformation gradient values with changing temperature for an anisotropic HCP crystal lattice
Specification(s): hcp_thermal_eigenstrain
Design: Compute Crystal Plasticity Thermal EigenstrainCompute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #17734
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.8The system shall produce a negative isotropic eigenstrain in response to an decreasing average radius and shall demonstrate an applied stress on the slip systems with a z-component in response to the BC constraints on displacement of the crystal in the z-direction.
Specification(s): hcp_volumetric_eigenstrain_decrease
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.15The model for HCP crystal plasticity, using the Beyerlein and Tome (2008) constitutive model, shall:
- compute the slip system strength and resolved applied shear stress for the prismatic<a> and pyramidal<c+a> slip systems when loaded along the c-axis;
- evolve the forest dislocation and substructure densities on prismatic<a> slip planes when loaded in an appropriate orientation;
- evolve the forest dislocation densities on pyramidal <c+a> slip planes and the substructure density when the crystal is loaded in an appropriate orientation.
- evolve the forest dislocation densities on basal <a> slip planes when the crystal is loaded in an appropriate orientation.
- prevent the calculation of a negative substructure density increment.
- prevent the calculation of a negative total forest density.
- ensure the user specifies a number of the slip systems per mode which is equal to the number of modes;
- ensure the user specifies an equal total number of slip systems and the sum of the different slip mode systems;
- ensure the user specifies a number of burgers vectors per mode that is equal to the number of modes;
- ensure the user specifies a number of slip generation coefficient per mode that is equal to the number of modes;
- ensure the user specifies a size of slip activation energy per mode that is equal to the specified number of modes;
- ensure the user specifies a size of slip energy proportionality factor per mode that is equal to the specified number of modes;
- ensure the user specifies a size of effective shear modulus per mode that is equal to the specified number of modes;
- ensure the user specifies a size of substructure generation rate coefficient per mode that is equal to the specified number of modes;
- ensure the user specifies a size of Hall-Petch like coefficient per mode that is equal to the specified number of modes;
- ensure the user specifies a size of lattice friction values per mode that is equal to the specified number of modes;
Specification(s): constitutive_model/update_method_hcp_aprismatic_capyramidal, constitutive_model/update_method_hcp_aprismatic_active, constitutive_model/update_method_hcp_capyramidal_active, constitutive_model/update_method_hcp_basal_active, constitutive_model/update_method_hcp_no_substructure, constitutive_model/update_method_hcp_no_negative_aprismatic, constitutive_model/update_method_hcp_size_slip_modes, constitutive_model/update_method_hcp_sum_slip_modes_vs_systems, constitutive_model/update_method_hcp_size_burgers_vectors, constitutive_model/update_method_hcp_size_slip_generation, constitutive_model/update_method_hcp_size_activation_energy, constitutive_model/update_method_hcp_size_proportionality_factor, constitutive_model/update_method_hcp_size_shear_modulus, constitutive_model/update_method_hcp_size_substructure_rate, constitutive_model/update_method_hcp_size_hall_petch, constitutive_model/update_method_hcp_size_lattice_friction
Design: Crystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #18846
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 8.41.16Upon simulation restart, the HCP crystal plasticity capability shall:
- continue to evolve the forest dislocation densities on basal <a> slip planes.
- continue to compute the slip system strength and resolved applied shear stress for the prismatic<a> and pyramidal<c+a> slip systems.
Specification(s): restart_capabilities/update_method_hcp_basal_active_restart, restart_capabilities/update_method_hcp_aprismatic_capyramidal_restart
Design: Crystal Plasticity HCP Dislocation Slip Beyerlein UpdateCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.18The crystal plasticity HCP system shall:
- calculate the Schmid tensor for a set of HCP twin systems given in Miller-Bravais indices and shall calculate a twin volume fraction when using the FCC Kalidindi twinning model with a modified input file.
- compute a plastic velocity gradient that accounts for deformation contributions from both slip and twinning in an HCP crystal.
Specification(s): coupling_demonstration/modified_kalidindi_for_hcp, coupling_demonstration/demonstration_combined_hcp_slip_twins
Design: Compute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein UpdateCrystalPlasticityTwinningKalidindiUpdate
Issue(s): #18846
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.19The crystal plasticity system shall compute the plastic velocity gradient from both slip and twinning in anHCP crystal upon simulation restart.
Specification(s): demonstration_combined_hcp_slip_twins_restart
Design: Compute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein UpdateCrystalPlasticityTwinningKalidindiUpdate
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Compute Crystal Plasticity Volumetric Eigenstrain
- 8.41.6The system shall produce a positive isotropic eigenstrain in response to an increasing number density and shall demonstrate an applied shear stress on the slip systems with a z-component in response to the BCs on displacement in the z-direction.
Specification(s): volumetric_eigenstrain_increase
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.7The system shall continue the isotropic eigenstrain response calculation upon simulation restart.
Specification(s): volumetric_eigenstrain_increase_restart
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.8The system shall produce a negative isotropic eigenstrain in response to an decreasing average radius and shall demonstrate an applied stress on the slip systems with a z-component in response to the BC constraints on displacement of the crystal in the z-direction.
Specification(s): hcp_volumetric_eigenstrain_decrease
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein Update
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.9The system shall produce an isotropic eigenstrain in response to parabolic evolution of both the void number density and average radius, and shall induce plastic deformation in the crystal plasticity reponse through the state dependance of the deformation gradient that final strain state of the FCC crystal is not zero.
Specification(s): volumetric_eigenstrain_parabolic
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.10The system shall not attempt to calculate the volumetric eigenstrain from a negative number density of voids.
Specification(s): volumetric_eigenstrain_density_check
Design: Compute Crystal Plasticity Volumetric Eigenstrain
Issue(s): #25932
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.41.11The system shall not attempt to calculate the volumetric eigenstrain from a negative average radius value.
Specification(s): volumetric_eigenstrain_radius_check
Design: Compute Crystal Plasticity Volumetric Eigenstrain
Issue(s): #25932
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: CrystalPlasticityKalidindiUpdate
- 8.41.6The system shall produce a positive isotropic eigenstrain in response to an increasing number density and shall demonstrate an applied shear stress on the slip systems with a z-component in response to the BCs on displacement in the z-direction.
Specification(s): volumetric_eigenstrain_increase
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.9The system shall produce an isotropic eigenstrain in response to parabolic evolution of both the void number density and average radius, and shall induce plastic deformation in the crystal plasticity reponse through the state dependance of the deformation gradient that final strain state of the FCC crystal is not zero.
Specification(s): volumetric_eigenstrain_parabolic
Design: Compute Crystal Plasticity Volumetric EigenstrainCompute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #25932
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.32The system shall provide a StressUpdate material-based extensible crystal plasticity system
Specification(s): update_model_test
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.33The system shall provide a StressUpdate material-based extensible crystal plasticity framework that shall continue the state-dependent calculation upon restart
Specification(s): update_model_test_restart
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.34The material-based crystal plasticity model shall compute the lagrangian stress, PK2 stress, and slip for an orientation not aligned with the Cartesian coordinate system.
Specification(s): update_model_011orientation
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.35A constitutive failure shall trigger an exception leading to a cut time step rather than a failed solve using the stress-update based crystal plasticity implementation
Specification(s): exception
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.36The crystal plasticity system shall provide a substepping capability for improved convergence using the stress-update based crystal plasticity implementation
Specification(s): substep
Design: Compute Multiple Crystal Plasticity StressCrystalPlasticityKalidindiUpdate
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.37The crystal plasticity system shall implement a line search capability for accelerated internal Newton solves using the stress-update based crystal plasticity implementation
Specification(s): linesearch
Design: CrystalPlasticityKalidindiUpdate
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.51When combined with a dislocation slip constitutive model in a simulation of an FCC material, the Kalidindi (2001) twin propagation model shall:
- compute plastic shear due to both slip and twin propagation when loaded under tension in a 111 orientation.
- compute a near-zero twin volume fraction when loaded under compression in a 111 orientation.
- compute a near-zero volume fraction of twins for all twin system when a 100 oriented crystal is loaded under tension.
- compute both dislocation glide and twin propagation in a 100 oriented crystal loaded under compression.
Specification(s): combined_twinning_slip_models/combined_twinning_slip_111tension, combined_twinning_slip_models/combined_twinning_slip_111compression, combined_twinning_slip_models/combined_twinning_slip_100tension, combined_twinning_slip_models/combined_twinning_slip_100compression
Design: CrystalPlasticityTwinningKalidindiUpdateCrystalPlasticityKalidindiUpdate
Issue(s): #18846
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.52Upon simulation restart, the crystal plasticity capability shall:
- continue to compute the plastic shear due to twinning after a simulation restart.
- continue to calculate plastic shear due to both dislocation slip and twinning when loaded under tension in a 111 orientation in a simulation restart.
Specification(s): restart_capabilities/only_twinning_fcc_restart, restart_capabilities/combined_twinning_slip_111tension_restart
Design: CrystalPlasticityTwinningKalidindiUpdateCrystalPlasticityKalidindiUpdateCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Compute Elasticity Tensor CP
- 8.41.12The crystal plasticity models should be able to utilize Euler angle values supplied through AuxVariables.
Specification(s): euler_angle_auxvar
Design: Compute Elasticity Tensor CP
Issue(s): #19497
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.13An error will be thrown when trying to set Euler angles information from a text file and AuxVariables at the same time.
Specification(s): euler_angle_auxvar_conflict
Design: Compute Elasticity Tensor CP
Issue(s): #19497
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.41.14An error will be thrown when trying to set Euler angles information with less than three components.
Specification(s): euler_angle_components
Design: Compute Elasticity Tensor CP
Issue(s): #19497
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.41.38The crystal plasticity rotations shall correctly rotate the elasticity tensors at each material point using the stress-update based crystal plasticity implementation
Specification(s): orthotropic_rotation_Cijkl
Design: Compute Elasticity Tensor CP
Issue(s): #10629
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.46The system shall produce the initial Euler angles phi1=0, psi=54.7356103, and phi2=45 when supplied with the associated rotation matrix and shall calculate a relatively higher 2nd Piola Kirchoff stress in agreement with the low Schmid factor for this loading orientation.
Specification(s): rotation_matrix_update_euler_angle_111_orientation
Design: Compute Elasticity Tensor CPCompute Updated Euler Angle
Issue(s): #23451
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.47The system shall produce the initial Euler angles of phi1=45, psi=90, and phi2=45, which shall quickly update as the crystal rotates, when supplied with the associated rotation matrix. The system shall calculate a relatively low 2nd Piola Kirchoff stress in the z-direction in agreement with the high Schmid factor for this loading orientation
Specification(s): rotation_matrix_update_euler_angle_011_orientation
Design: Compute Elasticity Tensor CPCompute Updated Euler Angle
Issue(s): #23451
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.48The system shall produce the initial Euler angles of phi1=90, psi=30, and phi2=35, when supplied with the associated rotation matrix, and the updated Euler angles values as the crystal under goes rotation during deformation.
Specification(s): rotation_matrix_update_euler_angle_112_orientation
Design: Compute Elasticity Tensor CPCompute Updated Euler Angle
Issue(s): #23451
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.49The system shall not allow specification of both the rotation matrix and the Bunge Euler angles within the same input file.
Specification(s): rotation_matrix_and_euler_angles_error
Design: Compute Elasticity Tensor CP
Issue(s): #23451
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.41.61The crystal plasticity rotations shall correctly rotate the elasticity tensors at each material point
Specification(s): orthotropic_rotation_Cijkl
Design: Compute Elasticity Tensor CP
Issue(s): #10629
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: CrystalPlasticityTwinningKalidindiUpdate
- 8.41.18The crystal plasticity HCP system shall:
- calculate the Schmid tensor for a set of HCP twin systems given in Miller-Bravais indices and shall calculate a twin volume fraction when using the FCC Kalidindi twinning model with a modified input file.
- compute a plastic velocity gradient that accounts for deformation contributions from both slip and twinning in an HCP crystal.
Specification(s): coupling_demonstration/modified_kalidindi_for_hcp, coupling_demonstration/demonstration_combined_hcp_slip_twins
Design: Compute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein UpdateCrystalPlasticityTwinningKalidindiUpdate
Issue(s): #18846
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.19The crystal plasticity system shall compute the plastic velocity gradient from both slip and twinning in anHCP crystal upon simulation restart.
Specification(s): demonstration_combined_hcp_slip_twins_restart
Design: Compute Multiple Crystal Plasticity StressCrystal Plasticity HCP Dislocation Slip Beyerlein UpdateCrystalPlasticityTwinningKalidindiUpdate
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.50The crystal plasticity model for twin propagation in FCC materials, using the Kalidindi (2001) constiutive model, shall:
- compute the plastic shear due to twinning as a function of the applied shear stress and resistance to twin propagation, the corresponding twin volume fraction per twin system, and the total value of the twin volume fraction across all twin systems.
- compute a non-zero twin volume fraction, and associate plastic shear increment, for only postive applied shear stress values.
- calculate the coplanar twin propogation resistance contribution as a function of the twin volume fractions on coplanar systems alone.
- calculate the contribution to twin propagation resistance from non-coplanar systems as a function of only the twin volume fraction on non-coplanar twin systems.
- set the plastic shear increments due to twinning to zero once the total twin volume fraction limit is reached.
- prevent the accumulation of a total twin volume fraction above the user-defined limit.
- prevent the calculation of a plastic shear increment in excess of the user-defined tolerance value.
Specification(s): constiutive_model/only_twinning_fcc, constiutive_model/check_direction_twin_propagation, constiutive_model/coplanar_twin_hardening, constiutive_model/non_coplanar_twin_hardening, constiutive_model/upper_twin_fraction_limit, constiutive_model/upper_twin_fraction_limit_error, constiutive_model/strain_increment_upper_limit
Design: CrystalPlasticityTwinningKalidindiUpdate
Issue(s): #18846
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 8.41.51When combined with a dislocation slip constitutive model in a simulation of an FCC material, the Kalidindi (2001) twin propagation model shall:
- compute plastic shear due to both slip and twin propagation when loaded under tension in a 111 orientation.
- compute a near-zero twin volume fraction when loaded under compression in a 111 orientation.
- compute a near-zero volume fraction of twins for all twin system when a 100 oriented crystal is loaded under tension.
- compute both dislocation glide and twin propagation in a 100 oriented crystal loaded under compression.
Specification(s): combined_twinning_slip_models/combined_twinning_slip_111tension, combined_twinning_slip_models/combined_twinning_slip_111compression, combined_twinning_slip_models/combined_twinning_slip_100tension, combined_twinning_slip_models/combined_twinning_slip_100compression
Design: CrystalPlasticityTwinningKalidindiUpdateCrystalPlasticityKalidindiUpdate
Issue(s): #18846
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.52Upon simulation restart, the crystal plasticity capability shall:
- continue to compute the plastic shear due to twinning after a simulation restart.
- continue to calculate plastic shear due to both dislocation slip and twinning when loaded under tension in a 111 orientation in a simulation restart.
Specification(s): restart_capabilities/only_twinning_fcc_restart, restart_capabilities/combined_twinning_slip_111tension_restart
Design: CrystalPlasticityTwinningKalidindiUpdateCrystalPlasticityKalidindiUpdateCompute Multiple Crystal Plasticity Stress
Issue(s): #26458
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Finite Strain Crystal Plasticity Slip Rate Residual
- 8.41.20The system shall compute the stress and strain response of a single crystal using the Kalidindi constitutive equation for hardening as a function of slip rate on each slip system.
Specification(s): test_one_elem
Design: Finite Strain Crystal Plasticity Slip Rate Residual
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.21The system shall compute the stress and strain response of a single crystal using the Kalidindi constitutive equation for hardening as a function of slip rate on each slip system with the substepping capability that reduces the intermediate time step size to aid with convergence within the crystal plasticity hardening model.
Specification(s): test_substep
Design: Finite Strain Crystal Plasticity Slip Rate Residual
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.22The system shall compute the stress and strain response of a single crystal using the Kalidindi constitutive equation for hardening as a function of slip rate on each slip system with the bisection line search method within the crystal plasticity hardening model to aid with convergence.
Specification(s): test_with_linesearch
Design: Finite Strain Crystal Plasticity Slip Rate Residual
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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
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: Compute Updated Euler Angle
- 8.41.41The system shall produce correct Euler angles during the crystal plastic simulation for single crystal oriented along (111).
Specification(s): update_euler_angle_111_orientation
Design: Compute Updated Euler AngleCompute Multiple Crystal Plasticity Stress
Issue(s): #19473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.42The system shall produce correct Euler angles during the crystal plastic simulation for single crystal oriented along (112).
Specification(s): update_euler_angle_112_orientation
Design: Compute Updated Euler AngleCompute Multiple Crystal Plasticity Stress
Issue(s): #19473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.43The system shall produce correct Euler angles during the crystal plastic simulation for single crystal oriented along (123).
Specification(s): update_euler_angle_123_orientation
Design: Compute Updated Euler AngleCompute Multiple Crystal Plasticity Stress
Issue(s): #19473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.46The system shall produce the initial Euler angles phi1=0, psi=54.7356103, and phi2=45 when supplied with the associated rotation matrix and shall calculate a relatively higher 2nd Piola Kirchoff stress in agreement with the low Schmid factor for this loading orientation.
Specification(s): rotation_matrix_update_euler_angle_111_orientation
Design: Compute Elasticity Tensor CPCompute Updated Euler Angle
Issue(s): #23451
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.47The system shall produce the initial Euler angles of phi1=45, psi=90, and phi2=45, which shall quickly update as the crystal rotates, when supplied with the associated rotation matrix. The system shall calculate a relatively low 2nd Piola Kirchoff stress in the z-direction in agreement with the high Schmid factor for this loading orientation
Specification(s): rotation_matrix_update_euler_angle_011_orientation
Design: Compute Elasticity Tensor CPCompute Updated Euler Angle
Issue(s): #23451
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.48The system shall produce the initial Euler angles of phi1=90, psi=30, and phi2=35, when supplied with the associated rotation matrix, and the updated Euler angles values as the crystal under goes rotation during deformation.
Specification(s): rotation_matrix_update_euler_angle_112_orientation
Design: Compute Elasticity Tensor CPCompute Updated Euler Angle
Issue(s): #23451
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: UserObject based Crystal Plasticity System
- 8.41.53The system shall provide a plug-in based extensible crystal plasticity system
Specification(s): test
Design: UserObject based Crystal Plasticity System
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.54The material-based crystal plasticity model shall compute the lagrangian stress, PK2 stress, and slip for an orientation not aligned with the Cartesian coordinate system.
Specification(s): user_object_011orientation
Design: UserObject based Crystal Plasticity System
Issue(s): #16064
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.41.55A constitutive failure shall trigger an exception leading to a cut time step rather than a failed solve
Specification(s): exception
Design: UserObject based Crystal Plasticity System
Issue(s): #10133
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.56The crystal plasticity system shall provide a function to read slip system parameters from files
Specification(s): fileread
Design: UserObject based Crystal Plasticity System
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.57The crystal plasticity system shall use pluggable user objects to dtermine the plasticity state variable evolution
Specification(s): user_object
Design: UserObject based Crystal Plasticity System
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.58The crystal plasticity system shall make local Euler angles at material points available for output
Specification(s): save_euler
Design: UserObject based Crystal Plasticity System
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.59The crystal plasticity system shall provide a substepping capability for improved convergence
Specification(s): substep
Design: UserObject based Crystal Plasticity System
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.60The crystal plasticity system shall implement a line search capability for accellerated internal Newton solves
Specification(s): linesearch
Design: UserObject based Crystal Plasticity System
Issue(s): #6097
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.41.65The system shall apply correct boundary condition after timestep being cut during substepping
Specification(s): use_substep_dt
Design: UserObject based Crystal Plasticity System
Issue(s): #17340
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Crystal Plasticity State Var Rate Component Voce
- 8.41.62The crystal plasticity system shall provide a plugin user object implementing the Voce hardening law
Specification(s): user_object_Voce_BCC
Design: Crystal Plasticity State Var Rate Component Voce
Issue(s): #11307
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
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
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
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
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
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
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
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
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: LinearNodalConstraint
- 8.44.3The LinearNodalConstraint class shall constrain the secondary nodes to move as a linear combination of the primary nodes.
Specification(s): linear_nodal_constraint
Design: LinearNodalConstraint
Issue(s): #5783
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: Composite Elasticity Tensor
- 8.47.1The system shall provide a method for assembling an elasticity tensor from multiple tensor contributions weighted by material properties.
Specification(s): composite
Design: Composite Elasticity Tensor
Issue(s): #5850
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Elasticity Tensor
- 8.47.2The system shall provide a method for rotating a tensor using a rotation matrix.
Specification(s): rotation_matrix_one_rotation
Design: Compute Elasticity Tensor
Issue(s): #16340
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.47.3The system shall provide a method for rotating a tensor using a rotation matrix requiring more than one rotation.
Specification(s): rotation_matrix_two_rotations
Design: Compute Elasticity Tensor
Issue(s): #16340
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.67.4The ComputeElasticityTensor class shall correctly compute the elasticity tensor for an isotropic axisymmetric problem.
Specification(s): axisymmetric_rz
Design: Compute Elasticity Tensor
Issue(s): #4783
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ComputeMultiPlasticityStress
- 8.49.3The ComputeMultiPlasticityStress class shall, when supplied with no plastic models, reduce to and produce the solely elastic stress solution for a finite strain fomulation, using the QuasiStatic SolidMechanics Physics.
Specification(s): fake_plastic
Design: ComputeMultiPlasticityStressVolumetric Locking Correction
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.49.4The ComputeMultiPlasticityStress class shall, when supplied with no plastic models, reduce to and produce the solely elastic stress solution for a finite strain fomulation, using the volumetric locking correction b-bar formulation.
Specification(s): fake_plastic_Bbar
Design: ComputeMultiPlasticityStressVolumetric Locking Correction
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: ReferenceResidualProblem
- 8.53.1The tensor mechanics action shall set up the mechanics kernels with the appropriate options to accumulate absolute values of the residual to a tag vector usable for relative convergence checks.
Specification(s): free_expansion_abs_ref
Design: Solid Mechanics QuasiStatic Physics SystemReferenceResidualProblem
Issue(s): #24246
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: MaterialVectorBodyForce
- 8.56.4The system shall provide a way to apply a vector valued body force density to a volume
Specification(s): material_vector_body_force
Design: MaterialVectorBodyForce
Issue(s): #13100
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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: AsymptoticExpansionHomogenizationKernel
- 8.57.1The system shall compute homogenized elastic constants using the asymptotic expansion homogenization approach and match values for the so-called long fiber problem
Specification(s): longFiber
Design: AsymptoticExpansionHomogenizationKernel
Issue(s): #6750
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.57.2The system shall compute homogenized elastic constants using the asymptotic expansion homogenization approach and match values for the so-called short fiber problem
Specification(s): shortFiber
Design: AsymptoticExpansionHomogenizationKernel
Issue(s): #6750
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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: PenaltyInclinedNoDisplacementBC
- 8.60.1The SolidMechanics module shall have the capabilty to enforce inclined boundary conditions on a 2D model using a penalty method.
Specification(s): 2D
Design: PenaltyInclinedNoDisplacementBCInclinedNoDisplacementBC Action
Issue(s): #13128
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.60.2The SolidMechanics module shall have the capabilty to enforce inclined boundary conditions on a 3D model using a penalty method.
Specification(s): 3D
Design: PenaltyInclinedNoDisplacementBCInclinedNoDisplacementBC Action
Issue(s): #13128
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.60.3The SolidMechanics module shall have the capabilty to enforce inclined boundary conditions while using automatic differentiation.
Specification(s): ad
Design: PenaltyInclinedNoDisplacementBCInclinedNoDisplacementBC Action
Issue(s): #24910
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: InclinedNoDisplacementBC Action
- 8.60.1The SolidMechanics module shall have the capabilty to enforce inclined boundary conditions on a 2D model using a penalty method.
Specification(s): 2D
Design: PenaltyInclinedNoDisplacementBCInclinedNoDisplacementBC Action
Issue(s): #13128
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.60.2The SolidMechanics module shall have the capabilty to enforce inclined boundary conditions on a 3D model using a penalty method.
Specification(s): 3D
Design: PenaltyInclinedNoDisplacementBCInclinedNoDisplacementBC Action
Issue(s): #13128
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.60.3The SolidMechanics module shall have the capabilty to enforce inclined boundary conditions while using automatic differentiation.
Specification(s): ad
Design: PenaltyInclinedNoDisplacementBCInclinedNoDisplacementBC Action
Issue(s): #24910
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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: ElementJacobianDamper
- 8.72.1The module shall be able to apply a damper on the displaced mesh to limit the element Jacobian change over nonlinear iterations.
Specification(s): damper_exodus
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.72.2The element Jacobian damper shall be able to apply a partial nonlinear update.
Specification(s): damper_verify
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.72.3The module shall be able to apply a damper on the undisplaced mesh to limit the element Jacobian change over nonlinear iterations.
Specification(s): ref_damper
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.72.4The module shall be able to apply a damper on certain blocks of the undisplaced mesh to limit the element Jacobian change over nonlinear iterations.
Specification(s): ref_damper_block_restricted
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ReferenceElementJacobianDamper
- 8.72.1The module shall be able to apply a damper on the displaced mesh to limit the element Jacobian change over nonlinear iterations.
Specification(s): damper_exodus
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.72.2The element Jacobian damper shall be able to apply a partial nonlinear update.
Specification(s): damper_verify
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.72.3The module shall be able to apply a damper on the undisplaced mesh to limit the element Jacobian change over nonlinear iterations.
Specification(s): ref_damper
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.72.4The module shall be able to apply a damper on certain blocks of the undisplaced mesh to limit the element Jacobian change over nonlinear iterations.
Specification(s): ref_damper_block_restricted
Design: ElementJacobianDamperReferenceElementJacobianDamper
Issue(s): #21397
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Tensor Mechanics Master Action
- 8.73.1Can run second order problem without stabilization
Specification(s): without_correction
Design: Tensor Mechanics Master Action
Issue(s): #20281
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.73.2Cannot run second order problem with stabilization
Specification(s): with_correction
Design: Tensor Mechanics Master Action
Issue(s): #20281
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.73.3Homogenization system can be block restricted
Specification(s): homogenization_block_restriction
Design: Tensor Mechanics Master Action
Issue(s): #21716
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.73.4Action produces identical results for small deformations/without stabilization in axisymmetric RZ coordinates
Specification(s): action_small_unstabilized
Design: Tensor Mechanics Master Action
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.5Action produces identical results for small deformations/with stabilization in axisymmetric RZ coordinates
Specification(s): action_small_stabilized
Design: Tensor Mechanics Master Action
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.6Action produces identical results for large deformations/without stabilization in axisymmetric RZ coordinates
Specification(s): action_large_unstabilized
Design: Tensor Mechanics Master Action
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.7Action produces identical results for large deformations/with stabilization in axisymmetric RZ coordinates
Specification(s): action_large_stabilized
Design: Tensor Mechanics Master Action
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.23Action produces identical results for large deformations/with stabilization
Specification(s): action_large_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.24Action produces identical results for large deformations/no stabilization
Specification(s): action_large_no_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.25Action produces identical results for small deformations/with stabilization
Specification(s): action_small_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.26Action produces identical results for small deformations/no stabilization
Specification(s): action_small_no_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.27Action produces identical results for 1D Cartesian problem
Specification(s): action_1D
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.69Action produces identical results for a 3D, large deformation problem with mixed constraints compared to a case where the components are specified manually.
Specification(s): compare_3d
Design: Tensor Mechanics Master Action
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.70Action produces identical results for a 2D, small deformation problem with mixed constraints compared to a case where the components are specific manually.
Specification(s): compare_2d
Design: Tensor Mechanics Master Action
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.128Action produces identical results for large deformations/with stabilization
Specification(s): action_large_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.129Action produces identical results for large deformations/no stabilization
Specification(s): action_large_no_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.130Action produces identical results for small deformations/with stabilization
Specification(s): action_small_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.131Action produces identical results for small deformations/no stabilization
Specification(s): action_small_no_stab
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.132Action produces identical results for 1D Cartesian problem
Specification(s): action_1D
Design: Tensor Mechanics Master Action
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.188Action produces identical results for small deformations/without stabilization in axisymmetric RZ coordinates
Specification(s): action_small_unstabilized
Design: Tensor Mechanics Master Action
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.189Action produces identical results for large deformations/without stabilization in axisymmetric RZ coordinates
Specification(s): action_large_unstabilized
Design: Tensor Mechanics Master Action
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: TotalLagrangianStressDivergenceAxisymmetricCylindrical
- 8.73.8Small strain solution in 2D axisymmetric RZ coordinates matches analytical solution
Specification(s): small
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.9Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs in 2D axisymmetric RZ coordinates
Specification(s): dirichlet_small_unstabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.10Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs in 2D axisymmetric RZ coordinates
Specification(s): dirichlet_small_stabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.11Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs in 2D axisymmetric RZ coordinates
Specification(s): dirichlet_large_unstabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.12Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs in 2D axisymmetric RZ coordinates
Specification(s): dirichlet_large_stabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.13Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs in 2D axisymmetric RZ coordinates
Specification(s): neumann_small_unstabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.14Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs in 2D axisymmetric RZ coordinates
Specification(s): neumann_small_stabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.15Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs in 2D axisymmetric RZ coordinates
Specification(s): neumann_large_unstabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.16Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neumann BCs in 2D axisymmetric RZ coordinates
Specification(s): neumann_large_stabilized
Design: TotalLagrangianStressDivergenceAxisymmetricCylindrical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.17Small strain uniaxial patch test in 2D axisymmetric RZ coordinates passes
Specification(s): small
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.18Large strain uniaxial patch test in 2D axisymmetric RZ coordinates passes
Specification(s): large
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.19Jacobian is exact with relative tolerance of 5e-6 for small displacements in 2D axisymmetric cylindrical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_small_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.20Jacobian is exact with relative tolerance of 5e-6 for large displacements in 2D axisymmetric cylindrical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_large_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.21Jacobian is exact with relative tolerance of 5e-6 for small displacements in 2D axisymmetric cylindrical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_small_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.22Jacobian is exact with relative tolerance of 5e-6 for large displacements in 2D axisymmetric cylindrical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_large_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.199Jacobian is exact with relative tolerance of 5e-6 for small displacements in 1D centrosymmetric spherical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_small_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.200Jacobian is exact with relative tolerance of 5e-6 for large displacements in 1D centrosymmetric spherical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_large_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.201Jacobian is exact with relative tolerance of 5e-6 for small displacements in 1D centrosymmetric spherical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_small_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.202Jacobian is exact with relative tolerance of 5e-6 for large displacements in 1D centrosymmetric spherical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_large_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: TotalLagrangianStressDivergenceCentrosymmetricSpherical
- 8.73.17Small strain uniaxial patch test in 2D axisymmetric RZ coordinates passes
Specification(s): small
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.18Large strain uniaxial patch test in 2D axisymmetric RZ coordinates passes
Specification(s): large
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.19Jacobian is exact with relative tolerance of 5e-6 for small displacements in 2D axisymmetric cylindrical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_small_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.20Jacobian is exact with relative tolerance of 5e-6 for large displacements in 2D axisymmetric cylindrical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_large_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.21Jacobian is exact with relative tolerance of 5e-6 for small displacements in 2D axisymmetric cylindrical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_small_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.22Jacobian is exact with relative tolerance of 5e-6 for large displacements in 2D axisymmetric cylindrical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_large_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.190Small strain solution in 1D centrosymmetric spherical coordinates matches analytical solution
Specification(s): small
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.191Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs in 1D centrosymmetric spherical coordinates
Specification(s): dirichlet_small_unstabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.192Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs in 1D centrosymmetric spherical coordinates
Specification(s): dirichlet_small_stabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.193Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs in 1D centrosymmetric spherical coordinates
Specification(s): dirichlet_large_unstabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.194Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs in 1D centrosymmetric spherical coordinates
Specification(s): dirichlet_large_stabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.195Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs in 1D centrosymmetric spherical coordinates
Specification(s): neumann_small_unstabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.196Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs in 1D centrosymmetric spherical coordinates
Specification(s): neumann_small_stabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.197Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs in 1D centrosymmetric spherical coordinates
Specification(s): neumann_large_unstabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.198Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neumann BCs in 1D centrosymmetric spherical coordinates
Specification(s): neumann_large_stabilized
Design: TotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.199Jacobian is exact with relative tolerance of 5e-6 for small displacements in 1D centrosymmetric spherical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_small_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.200Jacobian is exact with relative tolerance of 5e-6 for large displacements in 1D centrosymmetric spherical coordinates, no stabilization, including cross-terms
Specification(s): jacobian_large_no_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.201Jacobian is exact with relative tolerance of 5e-6 for small displacements in 1D centrosymmetric spherical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_small_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.202Jacobian is exact with relative tolerance of 5e-6 for large displacements in 1D centrosymmetric spherical coordinates, with stabilization, including cross-terms
Specification(s): jacobian_large_with_stab
Design: TotalLagrangianStressDivergenceAxisymmetricCylindricalTotalLagrangianStressDivergenceCentrosymmetricSpherical
Issue(s): #20712
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: TotalLagrangianStressDivergence
- 8.73.28Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.29Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs
Specification(s): neumann_small_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.30Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.31Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs
Specification(s): neumann_large_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.32Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.33Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs
Specification(s): neumann_small_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.34Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.35Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neurmann BCs
Specification(s): neumann_large_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.36Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.37Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs
Specification(s): neumann_small_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.38Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.39Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs
Specification(s): neumann_large_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.40Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.41Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs
Specification(s): neumann_small_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.42Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.43Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neurmann BCs
Specification(s): neumann_large_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.44Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.45Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs
Specification(s): neumann_small_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.46Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.47Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs
Specification(s): neumann_large_neither
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.48Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.49Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs
Specification(s): neumann_small_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.50Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.51Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neurmann BCs
Specification(s): neumann_large_right
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.52Quadratic convergence in 1D for DirichletBCs, SMP does better than FDP for this problem.
Specification(s): dirichlet
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.53Quadratic convergence in 1D for NeumannBCs, SMP does better than FDP for this problem.
Specification(s): neumann
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.54Quadratic convergence in 2D for DirichletBCs, SMP matches FDP.
Specification(s): dirichlet
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.55Quadratic convergence in 2D for NeumannBCs, SMP matches FDP.
Specification(s): neumann
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.56Quadratic convergence in 3D for DirichletBCs, SMP matches FDP.
Specification(s): dirichlet
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.57Quadratic convergence in 3D for NeumannBCs, SMP matches FDP.
Specification(s): neumann
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.58Quadratic convergence in 3D for PresetBCs on a complicated geometry, SMP matches FDP.
Specification(s): L-large
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.59Quadratic convergence in 3D for PresetBCs on a complicated geometry, SMP matches FDP.
Specification(s): L-small
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.98Small strain uniaxial patch test passes
Specification(s): small
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.99Large strain uniaxial patch test passes
Specification(s): large
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.100The new system shall produce the correct results if residual and jacobian are computed together.
Specification(s): residual_jacobian_together
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.119System still functions if you supply a base_name
Specification(s): base_name
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.120Stabilized solution matches Cook's solution for stabilized Q4 elements.
Specification(s): cook_small_updated
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.121Stabilized solution matches Cook's solution for stabilized Q4 elements.
Specification(s): cook_large_updated
Design: TotalLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeLagrangianWrappedStress
- 8.73.60Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and an elastic material
Specification(s): elastic_small_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.61Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and an elastic material
Specification(s): elastic_large_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.62Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and an elastic material
Specification(s): elastic_small_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.63Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and an elastic material
Specification(s): elastic_large_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.64Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and an plastic_j2 material
Specification(s): plastic_j2_small_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.65Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and an plastic_j2 material
Specification(s): plastic_j2_large_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.66Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and an plastic_j2 material
Specification(s): plastic_j2_small_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.67Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and an plastic_j2 material
Specification(s): plastic_j2_large_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.68Resulting flow curve matches analytic calculation
Specification(s): flow_curve
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.165Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and an elastic material
Specification(s): elastic_small_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.166Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and an elastic material
Specification(s): elastic_large_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.167Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and an elastic material
Specification(s): elastic_small_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.168Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and an elastic material
Specification(s): elastic_large_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.169Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and an plastic_j2 material
Specification(s): plastic_j2_small_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.170Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and an plastic_j2 material
Specification(s): plastic_j2_large_neither
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.171Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and an plastic_j2 material
Specification(s): plastic_j2_small_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.172Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and an plastic_j2 material
Specification(s): plastic_j2_large_right
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.173Resulting flow curve matches analytic calculation
Specification(s): flow_curve
Design: ComputeLagrangianWrappedStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.222The Lagrangian kernels can use a small strain elastic update with a large kinematics formulation
Specification(s): runs_with_small_strain_model
Design: ComputeLagrangianWrappedStress
Issue(s): #21720
Collection(s): FUNCTIONAL
Type(s): RunApp
- solid_mechanics: HomogenizationConstraintScalarKernel
- 8.73.71Jacobian is exact with rtol 1e-7 for small deformations, imposed strains, and no stabilization
Specification(s): sd-strain_no_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.72Jacobian is exact with rtol 1e-7 for small deformations, imposed stresses, and no stabilization
Specification(s): sd-stress_no_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.73Jacobian is exact with rtol 1e-7 for large deformations, imposed strains, and no stabilization
Specification(s): ld-strain_no_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.74Jacobian is exact with rtol 1e-7 for large deformations, imposed stresses, and no stabilization
Specification(s): ld-stress_no_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.75Jacobian is exact with rtol 1e-7 for small deformations, imposed strains, and stabilization on
Specification(s): sd-strain_right_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.76Jacobian is exact with rtol 1e-7 for small deformations, imposed stresses, and stabilization on
Specification(s): sd-stress_right_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.77Jacobian is exact with rtol 1e-6 for large deformations, imposed strains, and stabilization on
Specification(s): ld-strain_right_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.78Jacobian is exact with rtol 1e-7 for large deformations, imposed stresses, and stabilization on
Specification(s): ld-stress_right_stab
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.79Homogenized strain field hits the targets in 1D using large kinematics
Specification(s): 1d-strain
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.80Homogenized stress field hits the targets in 1D using large kinematics
Specification(s): 1d-stress
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.81Homogenization with strain constraints hits the targets in 2D using large kinematics
Specification(s): 2d-strain
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.82Homogenization with stress constraints hits the targets in 2D using large kinematics
Specification(s): 2d-stress
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.83Homogenization with strain constraints hits the targets in 3D using large kinematics
Specification(s): 3d-strain
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.84Homogenization with stress constraints hits the targets in 3D using large kinematics
Specification(s): 3d-stress
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.90Homogenized strain field hits the targets in 1D
Specification(s): 1d-strain
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.91Homogenized stress field hits the targets in 1D
Specification(s): 1d-stress
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.92Homogenization with strain constraints hits the targets in 2D
Specification(s): 2d-strain
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.93Homogenization with stress constraints hits the targets in 2D
Specification(s): 2d-stress
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.94Homogenization with mixed stress and strain constraints hits the targets in 2D
Specification(s): 2d-mixed
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.95Homogenization with strain constraints hits the targets in 3D
Specification(s): 3d-strain
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.96Homogenization with stress constraints hits the targets in 3D
Specification(s): 3d-stress
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.97Homogenization with mixed stress and strain constraints hits the targets in 3D
Specification(s): 3d-mixed
Design: HomogenizationConstraintScalarKernel
Issue(s): #17473
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: TotalLagrangianWeakPlaneStress
- 8.73.1012D generalized plane strain solution shall match the 3D results in the limit of infinite thickness.
Specification(s): 2D
Design: TotalLagrangianWeakPlaneStress
Issue(s): #21757
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.102Weak plane stress Jacobian is exact with relative tolerance of 1e-6 for small displacements without stabilization.
Specification(s): jacobian_small_unstabilized
Design: TotalLagrangianWeakPlaneStress
Issue(s): #21757
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.103Weak plane stress Jacobian is exact with relative tolerance of 1e-6 for small displacements with stabilization.
Specification(s): jacobian_small_stabilized
Design: TotalLagrangianWeakPlaneStress
Issue(s): #21757
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.104Weak plane stress Jacobian is exact with relative tolerance of 1e-6 for large displacements without stabilization.
Specification(s): jacobian_large_unstabilized
Design: TotalLagrangianWeakPlaneStress
Issue(s): #21757
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.105Weak plane stress Jacobian is exact with relative tolerance of 1e-6 for large displacements with stabilization.
Specification(s): jacobian_large_stabilized
Design: TotalLagrangianWeakPlaneStress
Issue(s): #21757
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.106Using weak plane stress,
- the 2D weak plane stress result should match
- the 3D result where the out-of-plane stress is zero.
Specification(s): correctness/2D, correctness/3D
Design: TotalLagrangianWeakPlaneStress
Issue(s): #21757
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeLagrangianObjectiveStress
- 8.73.107Classical Truesdell response to pure shear matches known solution
Specification(s): truesdell_shear
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.108Classical Jaumann response to pure shear matches known solution
Specification(s): jaumann_shear
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.109Classical Green-Naghdi response to pure shear matches known solution
Specification(s): green_naghdi_shear
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.110Classical Truesdell response to pure rotation matches known solution
Specification(s): truesdell_rotation
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.111Classical Jaumann response to pure rotation matches known solution
Specification(s): jaumann_rotation
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.112Classical Green-Naghdi response to pure rotation matches known solution
Specification(s): green_naghdi_rotation
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.113Treusdell tangent is exact within rtol of 1e-7
Specification(s): truesdell_jacobian
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.114Jaumann tangent is exact within rtol of 1e-7
Specification(s): jaumann_jacobian
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.115Green-Naghdi tangent is exact within rtol of 1e-7
Specification(s): green_naghdi_jacobian
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.116Stresses are being computed on the deformed volume
Specification(s): area_change
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.117Stress state correctly rotates from step 10 to the final step
Specification(s): rotate_stresses
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.118Classical demonstration that the shear stress/strain response remains linear for a Truesdell rate.
Specification(s): truesdell
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.176Stresses are being computed on the deformed volume
Specification(s): area_change
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.177Stress state correctly rotates from step 10 to the final step
Specification(s): rotate_stresses
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.178Classical demonstration that the shear stress/strain response remains linear for a Truesdell rate.
Specification(s): truesdell
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.179System still functions correctly if you supply a base_name
Specification(s): base_name
Design: ComputeLagrangianObjectiveStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: UpdatedLagrangianStressDivergence
- 8.73.122Strains are as-expected (0.1 total, 0 mechanical) for a free expansion
Specification(s): free
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.123Stresses and strain as expected for thermal expansion constrained in one direction
Specification(s): constrained
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.124Jacobian is exact with relative tolerance of 1e-7 for small displacements, no stabilization, including cross-terms
Specification(s): jacobian_small_no_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.125Jacobian is exact with relative tolerance of 1e-7 for large displacements, no stabilization, including cross-terms
Specification(s): jacobian_large_no_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.126Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, including cross-terms
Specification(s): jacobian_small_with_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.127Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, including cross-terms
Specification(s): jacobian_large_with_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.133Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.134Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs
Specification(s): neumann_small_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.135Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.136Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs
Specification(s): neumann_large_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.137Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.138Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs
Specification(s): neumann_small_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.139Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.140Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neurmann BCs
Specification(s): neumann_large_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.141Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.142Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs
Specification(s): neumann_small_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.143Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.144Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs
Specification(s): neumann_large_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.145Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.146Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs
Specification(s): neumann_small_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.147Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.148Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neurmann BCs
Specification(s): neumann_large_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.149Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.150Jacobian is exact with relative tolerance of 1e-7 for small displacements, without stabilization, and Neumann BCs
Specification(s): neumann_small_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.151Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.152Jacobian is exact with relative tolerance of 1e-7 for large displacements, without stabilization, and Neumann BCs
Specification(s): neumann_large_neither
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.153Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_small_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.154Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, and Neumann BCs
Specification(s): neumann_small_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.155Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Dirichlet BCs
Specification(s): dirichlet_large_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.156Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, and Neurmann BCs
Specification(s): neumann_large_right
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.157Quadratic convergence in 1D for DirichletBCs, SMP does better than FDP for this problem.
Specification(s): dirichlet
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.158Quadratic convergence in 1D for NeumannBCs, SMP does better than FDP for this problem.
Specification(s): neumann
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.159Quadratic convergence in 2D for DirichletBCs, SMP matches FDP.
Specification(s): dirichlet
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.160Quadratic convergence in 2D for NeumannBCs, SMP matches FDP.
Specification(s): neumann
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.161Quadratic convergence in 3D for DirichletBCs, SMP matches FDP.
Specification(s): dirichlet
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.162Quadratic convergence in 3D for NeumannBCs, SMP matches FDP.
Specification(s): neumann
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.163The system shall achieve quadratic convergence in 3D with preset Dirichlet displacement boundary conditions on a complicated geometry for small deformation, and the preconditioning for a single matrix shall match finite-difference preconditioning results.
Specification(s): L-large
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.164The system shall achieve quadratic convergence in 3D with preset Dirichlet displacement boundary conditions for large deformation, and the preconditioning for a single matrix shall match finite-difference preconditioning results.
Specification(s): L-small
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.174Small strain uniaxial patch test passes
Specification(s): small
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.175Large strain uniaxial patch test passes
Specification(s): large
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.182Strains are as-expected (0.1 total, 0 mechanical) for a free expansion
Specification(s): free
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.183Stresses and strain as expected for thermal expansion constrained in one direction
Specification(s): constrained
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.73.184Jacobian is exact with relative tolerance of 1e-7 for small displacements, no stabilization, including cross-terms
Specification(s): jacobian_small_no_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.185Jacobian is exact with relative tolerance of 1e-7 for large displacements, no stabilization, including cross-terms
Specification(s): jacobian_large_no_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.186Jacobian is exact with relative tolerance of 1e-7 for small displacements, with stabilization, including cross-terms
Specification(s): jacobian_small_with_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.187Jacobian is exact with relative tolerance of 1e-7 for large displacements, with stabilization, including cross-terms
Specification(s): jacobian_large_with_stab
Design: UpdatedLagrangianStressDivergence
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: ComputeLagrangianStrain
- 8.73.180Stabilized solution matches Cook's solution for stabilized Q4 elements for small deformations.
Specification(s): cook_small_total
Design: ComputeLagrangianStrain
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.181Stabilized solution matches Cook's solution for stabilized Q4 elements for large deformations.
Specification(s): cook_large_total
Design: ComputeLagrangianStrain
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeStVenantKirchhoffStress
- 8.73.203Throw an error if you do not provide an isotropic tensor to ComputeStVenantKirchhoffStress
Specification(s): stvenantkirchhoff
Design: ComputeStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.73.206Correct Jacobian coming from the material model for nonlinear kinematics with relative error less than 1e-6
Specification(s): pk_stvenant
Design: ComputeStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.207Correct Jacobian coming from the material model for linear kinematics with relative error less than 1e-6
Specification(s): pk_stvenant_small
Design: ComputeStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.210Correct Jacobian coming from the material model for nonlinear kinematics with relative error less than 1e-6
Specification(s): hypoelastic_stvenant
Design: ComputeStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.211Correct Jacobian coming from the material model for linear kinematics with relative error less than 1e-6
Specification(s): hypoelastic_stvenant_small
Design: ComputeStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.215Stress matches exact solution (xx=1.6144e3, rest zero)
Specification(s): stvenantkirchhoff
Design: ComputeStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.217Stress matches exact solution
Specification(s): stvenantkirchhoff_small_deformation
Design: ComputeStVenantKirchhoffStress
Issue(s): #22588
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeLagrangianLinearElasticStress
- 8.73.204Correct Jacobian coming from the material model for nonlinear kinematics with relative error less than 1e-6
Specification(s): cauchy_linear
Design: ComputeLagrangianLinearElasticStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.205Correct Jacobian coming from the material model for linear kinematics with relative error less than 1e-6
Specification(s): cauchy_linear_small
Design: ComputeLagrangianLinearElasticStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.214Stress matches elastic solution (xx=1e4, rest zero)
Specification(s): cauchy-elastic
Design: ComputeLagrangianLinearElasticStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeNeoHookeanStress
- 8.73.208Correct Jacobian coming from the material model for nonlinear kinematics with relative error less than 1e-6
Specification(s): neohookean
Design: ComputeNeoHookeanStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.209Correct Jacobian coming from the material model for linear kinematics with relative error less than 1e-6
Specification(s): neohookean_small
Design: ComputeNeoHookeanStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.216Stress matches exact analytic solution, rest zero
Specification(s): neohookean
Design: ComputeNeoHookeanStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.218Stress matches exact analytic solution, rest zero
Specification(s): neohookean_small_deformation
Design: ComputeNeoHookeanStress
Issue(s): #22588
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeSimoHughesJ2PlasticityStress
- 8.73.212Correct Jacobian for elastoplasticity with linear hardening with relative error less than 1e-6
Specification(s): elastoplastic_linear_hardening
Design: ComputeSimoHughesJ2PlasticityStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.213Correct Jacobian for elastoplasticity with power-law hardening with relative error less than 1e-6
Specification(s): elastoplastic_powerlaw_hardening
Design: ComputeSimoHughesJ2PlasticityStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.73.220Stress matches exact analytic solution for elastoplasticity with linear hardening
Specification(s): elastoplastic_linear_hardening
Design: ComputeSimoHughesJ2PlasticityStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.73.221Stress matches exact analytic solution for elastoplasticity with power-law hardening
Specification(s): elastoplastic_powerlaw_hardening
Design: ComputeSimoHughesJ2PlasticityStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: ComputeHypoelasticStVenantKirchhoffStress
- 8.73.219The hypoelastic equivalent of the St. Venant-Kirchhoff model gives the same result as its hyperelastic counterpart.
Specification(s): stvenantkirchhoff_hypoelastic
Design: ComputeHypoelasticStVenantKirchhoffStress
Issue(s): #17472
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Line Material Rank Two Sampler
- 8.74.1The system shall allow sampling of material properties derived from rank two tensors along a line and output those quantities via a vectorpostprocessor.
Specification(s): rank_two_sampler
Design: Line Material Rank Two Sampler
Issue(s): #4462
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Line Material Rank Two Scalar Sampler
- 8.74.2The system shall allow sampling of scalar material properties along a line and output those quantities via a vectorpostprocessor.
Specification(s): rank_two_scalar_sampler
Design: Line Material Rank Two Scalar Sampler
Issue(s): #4462
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Tensor Representation and Utility Classes
- 8.75.1The system shall solve the continuum mechanics equations in the small strain formulation
- with full tensors
- with symmetric Mandel notation tensors
Specification(s): small_strain/full_tensor_reference, small_strain/symmetric_tensor
Design: Tensor Representation and Utility Classes
Issue(s): #19000
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.75.2The system shall solve the continuum mechanics equations in the finite strain formulation
- with full tensors
- with symmetric Mandel notation tensors
Specification(s): finite_strain/full_tensor_reference, finite_strain/symmetric_tensor
Design: Tensor Representation and Utility Classes
Issue(s): #19000
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Material Time Step Postprocessor
- 8.76.1The system shall compute a timestep size that is limited by a power law creep model and a specified maximum inelastic strain increment.
Specification(s): test5a_lim
Design: Material Time Step Postprocessor
Issue(s): #8553
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.76.2The system shall not impose a limit on the time step during the initial evaluation when the creep limiting time step option is used.
Specification(s): test5a_lim_on_initial
Design: Material Time Step Postprocessor
Issue(s): #10382
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.76.4The ScalarMaterialDamage model shall be capable of informing the material-based time step calculation based on the number of elements changing damage state in a step
Specification(s): elements_damage_limit
Design: Scalar Material DamageMaterial Time Step Postprocessor
Issue(s): #11662
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.76.5The MaterialTimeStepPostprocessor model shall be capable of computing a time step based on both the material time step limited by damage evoluation and the number of elements changing damage state in a step
Specification(s): mixed_timestep_limit
Design: Scalar Material DamageMaterial Time Step Postprocessor
Issue(s): #11662
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.76.6The MaterialTimeStepPostprocessor shall generate an error if an unknown property is requested with the 'time_step_limit' parameter
Specification(s): elements_damage_limit_unknown_prop
Design: Material Time Step Postprocessor
Issue(s): #11662
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.76.7The MaterialTimeStepPostprocessor shall generate an error if neither the material time step limit nor the elements changed limit is specified.
Specification(s): e
Design: Material Time Step Postprocessor
Issue(s): #11662
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.76.8The system to limit the analysis time step based on material behavior shall correctly function when used with an isotropic plasticity model.
Specification(s): nl1_lim
Design: Material Time Step Postprocessor
Issue(s): #8553
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.76.9The system to limit the analysis time step based on material behavior shall correctly function when used with an isotropic plasticity model when the MaterialTimeStepPostprocessor is run at initialization.
Specification(s): nl1_lim_on_initial
Design: Material Time Step Postprocessor
Issue(s): #8553
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.76.10The ComputeMultipleInelasticStress model shall compute a time step equal to the maximum real number if no inelastic model is provided
Specification(s): no_inelastic_model_limit
Design: Scalar Material DamageMaterial Time Step Postprocessor
Issue(s): #13250
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.76.11The system shall compute a time step equal to a user input maximum real number if no inelastic model is provided
Specification(s): no_inelastic_model_limit_defined
Design: Material Time Step Postprocessor
Issue(s): #22604
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Scalar Material Damage
- 8.76.3The ScalarMaterialDamage model shall be capable of informing the material-based time step calculation based on the damage evolution
Specification(s): scalar_damage_material_limit
Design: Scalar Material Damage
Issue(s): #11662
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.76.4The ScalarMaterialDamage model shall be capable of informing the material-based time step calculation based on the number of elements changing damage state in a step
Specification(s): elements_damage_limit
Design: Scalar Material DamageMaterial Time Step Postprocessor
Issue(s): #11662
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.76.5The MaterialTimeStepPostprocessor model shall be capable of computing a time step based on both the material time step limited by damage evoluation and the number of elements changing damage state in a step
Specification(s): mixed_timestep_limit
Design: Scalar Material DamageMaterial Time Step Postprocessor
Issue(s): #11662
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.76.10The ComputeMultipleInelasticStress model shall compute a time step equal to the maximum real number if no inelastic model is provided
Specification(s): no_inelastic_model_limit
Design: Scalar Material DamageMaterial Time Step Postprocessor
Issue(s): #13250
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.1The system shall calculate the effect of damage on the stress of a elastic material.
Specification(s): scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.2The system shall calculate the effect of damage on the stress of a elastic material when using automatic differentiation.
Specification(s): ad_scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.3The system shall calculate damaged stress based on old damage index.
Specification(s): scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.4The system shall calculate damaged stress based on old damage index when using automatic differentiation.
Specification(s): ad_scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.5The system shall report an error when damage index is greater than 1.
Specification(s): scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.6The system shall report an error when damage index is greater than 1 also when using automatic differentiation.
Specification(s): ad_scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.7The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress
Specification(s): scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.8The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress when using automatic differentiation
Specification(s): ad_scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.9The system shall calculate the maximum value of the damage index comparing different damage models.
Specification(s): combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.10The system shall calculate the effective damage index from different damage models.
Specification(s): combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.11The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model
Specification(s): combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.12The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models.
Specification(s): combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.13The system shall calculate the maximum value of the damage index comparing different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.14The system shall calculate the effective damage index from different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.15The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.16The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.17The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the creep or plastic deformation.
Specification(s): scalar_damage_material_inelastic
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.18The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation.
Specification(s): scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.19The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation with automatic differentiation.
Specification(s): ad_scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.20The system shall provide a meaningful error if the user selects a material model that is not recognized by the automatic differentiation multiple stress object.
Specification(s): multiple_inelastic_bad_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #20722
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.21The system shall calculate the effect of damage on the stress of a nonlocal damage model.
Specification(s): nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.22The system shall calculate the effect of damage on the stress of a nonlocal damage model. When using automatic differentiation.
Specification(s): ad_nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Frequency Domain Analysis
- 8.79.1The module shall be able to perform modal analysis with the Eigenvalue Executioner.
Specification(s): modal
Design: Frequency Domain Analysis
Issue(s): #27295
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ADMultiplePowerLawCreepStressUpdate
- 8.82.1The AD multiple power law creep must reproduce the results of the AD single power law creep: Reference results.
Specification(s): powerlaw
Design: ADMultiplePowerLawCreepStressUpdate
Issue(s): #18850
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.82.2The AD multiple power law creep must reproduce the results of the AD single power law creep when a single stress increment is provided by the user.
Specification(s): multipowerlaw
Design: ADMultiplePowerLawCreepStressUpdate
Issue(s): #18850
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.82.3The AD multiple power law creep must reproduce the results of the AD single power law creep with multiple stress intervals with same power law material parameters.
Specification(s): multipowerlaw_two_intervals
Design: ADMultiplePowerLawCreepStressUpdate
Issue(s): #18850
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.82.4The AD multiple power law creep must avoid regression for a simple few-element problem whose solution has stress levels encompassing two different sets of power law parameters
Specification(s): multipowerlaw_two_intervals_no_continuity
Design: ADMultiplePowerLawCreepStressUpdate
Issue(s): #18850
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.82.5Stress thresholds must be provided in increasing order, otherwise an error will inform the user of such a requirement.
Specification(s): multipowerlaw_user_input_error
Design: ADMultiplePowerLawCreepStressUpdate
Issue(s): #18850
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: CauchyStressFromNEML2
- 8.84.1The system shall be capable of capturing errors occurring during the evaluation of a NEML2 model.
Specification(s): neml2_error
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): RunException
- 8.84.2The system shall throw an error upon instantiation of NEML2 interface objects if NEML2 is not available.
Specification(s): no_neml2
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): RunException
- 8.84.3The system shall be capable of modularly interfacing with the NEML2 library to perform constitutive update
- to solve an elasticity problem;
- to solve a perfect viscoplasticity problem;
- to solve a viscoplasticity problem with isotropic hardening;
- to solve a viscoplasticity problem with kinematic hardening;
- to solve a viscoplasticity problem with both isotropic and kinematic hardening;
- to solve a viscoplasticity problem with non-associative Chaboche hardening;
- to solve a viscoplasticity problem using radial return;
- to solve a rate-independent problem with perfect plasticity;
- to solve a rate-independent problem with isotropic hardening;
- to solve a rate-independent problem with kinematic hardening;
- to solve a rate-independent problem with both isotropic and kinematic hardening.
Specification(s): neml2_modular/elasticity, neml2_modular/viscoplasticity_perfect, neml2_modular/viscoplasticity_isoharden, neml2_modular/viscoplasticity_kinharden, neml2_modular/viscoplasticity_isokinharden, neml2_modular/viscoplasticity_chaboche, neml2_modular/viscoplasticity_radial_return, neml2_modular/rate_independent_plasticity_perfect, neml2_modular/rate_independent_plasticity_isoharden, neml2_modular/rate_independent_plasticity_kinharden, neml2_modular/rate_independent_plasticity_isokinharden
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Issue(s): #27493
Collection(s): SYSTEM
Type(s): Exodiff
- 8.84.4The system shall provide a modular way to transfer variables and/or real material property to NEML2 for use as model parameters.
Specification(s): moose_to_neml2_parameter
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.5The system shall error out while trying to set a parameter that does not exist.
Specification(s): moose_to_neml2_parameter_error
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.84.6The system shall provide for a modular way to compute NEML2 output with respect to specific model parameters and save that it as a MOOSE material property.
Specification(s): neml2_parameter_derivative
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.7The system shall provide for a modular way to transfer NEML2 results to material properties..
Specification(s): neml2_to_moose_material
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.8The system shall be capable of interfacing with the NEML2 library to perform constitutive update
- to solve an elasticity problem;
- to solve a perfect viscoplasticity problem;
- to solve a viscoplasticity problem with isotropic hardening;
- to solve a viscoplasticity problem with kinematic hardening;
- to solve a viscoplasticity problem with both isotropic and kinematic hardening;
- to solve a viscoplasticity problem with non-associative Chaboche hardening;
- to solve a viscoplasticity problem using radial return;
- to solve a rate-independent problem with perfect plasticity;
- to solve a rate-independent problem with isotropic hardening;
- to solve a rate-independent problem with kinematic hardening;
- to solve a rate-independent problem with both isotropic and kinematic hardening.
- in a batched fashion.
Specification(s): neml2_legacy/elasticity, neml2_legacy/viscoplasticity_perfect, neml2_legacy/viscoplasticity_isoharden, neml2_legacy/viscoplasticity_kinharden, neml2_legacy/viscoplasticity_isokinharden, neml2_legacy/viscoplasticity_chaboche, neml2_legacy/viscoplasticity_radial_return, neml2_legacy/rate_independent_plasticity_perfect, neml2_legacy/rate_independent_plasticity_isoharden, neml2_legacy/rate_independent_plasticity_kinharden, neml2_legacy/rate_independent_plasticity_isokinharden, neml2_legacy/batched
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): Exodiff
- solid_mechanics: CauchyStressFromNEML2UO
- 8.84.1The system shall be capable of capturing errors occurring during the evaluation of a NEML2 model.
Specification(s): neml2_error
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): RunException
- 8.84.2The system shall throw an error upon instantiation of NEML2 interface objects if NEML2 is not available.
Specification(s): no_neml2
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): RunException
- 8.84.3The system shall be capable of modularly interfacing with the NEML2 library to perform constitutive update
- to solve an elasticity problem;
- to solve a perfect viscoplasticity problem;
- to solve a viscoplasticity problem with isotropic hardening;
- to solve a viscoplasticity problem with kinematic hardening;
- to solve a viscoplasticity problem with both isotropic and kinematic hardening;
- to solve a viscoplasticity problem with non-associative Chaboche hardening;
- to solve a viscoplasticity problem using radial return;
- to solve a rate-independent problem with perfect plasticity;
- to solve a rate-independent problem with isotropic hardening;
- to solve a rate-independent problem with kinematic hardening;
- to solve a rate-independent problem with both isotropic and kinematic hardening.
Specification(s): neml2_modular/elasticity, neml2_modular/viscoplasticity_perfect, neml2_modular/viscoplasticity_isoharden, neml2_modular/viscoplasticity_kinharden, neml2_modular/viscoplasticity_isokinharden, neml2_modular/viscoplasticity_chaboche, neml2_modular/viscoplasticity_radial_return, neml2_modular/rate_independent_plasticity_perfect, neml2_modular/rate_independent_plasticity_isoharden, neml2_modular/rate_independent_plasticity_kinharden, neml2_modular/rate_independent_plasticity_isokinharden
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Issue(s): #27493
Collection(s): SYSTEM
Type(s): Exodiff
- 8.84.4The system shall provide a modular way to transfer variables and/or real material property to NEML2 for use as model parameters.
Specification(s): moose_to_neml2_parameter
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.5The system shall error out while trying to set a parameter that does not exist.
Specification(s): moose_to_neml2_parameter_error
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.84.6The system shall provide for a modular way to compute NEML2 output with respect to specific model parameters and save that it as a MOOSE material property.
Specification(s): neml2_parameter_derivative
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.7The system shall provide for a modular way to transfer NEML2 results to material properties..
Specification(s): neml2_to_moose_material
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.8The system shall be capable of interfacing with the NEML2 library to perform constitutive update
- to solve an elasticity problem;
- to solve a perfect viscoplasticity problem;
- to solve a viscoplasticity problem with isotropic hardening;
- to solve a viscoplasticity problem with kinematic hardening;
- to solve a viscoplasticity problem with both isotropic and kinematic hardening;
- to solve a viscoplasticity problem with non-associative Chaboche hardening;
- to solve a viscoplasticity problem using radial return;
- to solve a rate-independent problem with perfect plasticity;
- to solve a rate-independent problem with isotropic hardening;
- to solve a rate-independent problem with kinematic hardening;
- to solve a rate-independent problem with both isotropic and kinematic hardening.
- in a batched fashion.
Specification(s): neml2_legacy/elasticity, neml2_legacy/viscoplasticity_perfect, neml2_legacy/viscoplasticity_isoharden, neml2_legacy/viscoplasticity_kinharden, neml2_legacy/viscoplasticity_isokinharden, neml2_legacy/viscoplasticity_chaboche, neml2_legacy/viscoplasticity_radial_return, neml2_legacy/rate_independent_plasticity_perfect, neml2_legacy/rate_independent_plasticity_isoharden, neml2_legacy/rate_independent_plasticity_kinharden, neml2_legacy/rate_independent_plasticity_isokinharden, neml2_legacy/batched
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): Exodiff
- solid_mechanics: CauchyStressFromNEML2Receiver
- 8.84.1The system shall be capable of capturing errors occurring during the evaluation of a NEML2 model.
Specification(s): neml2_error
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): RunException
- 8.84.2The system shall throw an error upon instantiation of NEML2 interface objects if NEML2 is not available.
Specification(s): no_neml2
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): RunException
- 8.84.3The system shall be capable of modularly interfacing with the NEML2 library to perform constitutive update
- to solve an elasticity problem;
- to solve a perfect viscoplasticity problem;
- to solve a viscoplasticity problem with isotropic hardening;
- to solve a viscoplasticity problem with kinematic hardening;
- to solve a viscoplasticity problem with both isotropic and kinematic hardening;
- to solve a viscoplasticity problem with non-associative Chaboche hardening;
- to solve a viscoplasticity problem using radial return;
- to solve a rate-independent problem with perfect plasticity;
- to solve a rate-independent problem with isotropic hardening;
- to solve a rate-independent problem with kinematic hardening;
- to solve a rate-independent problem with both isotropic and kinematic hardening.
Specification(s): neml2_modular/elasticity, neml2_modular/viscoplasticity_perfect, neml2_modular/viscoplasticity_isoharden, neml2_modular/viscoplasticity_kinharden, neml2_modular/viscoplasticity_isokinharden, neml2_modular/viscoplasticity_chaboche, neml2_modular/viscoplasticity_radial_return, neml2_modular/rate_independent_plasticity_perfect, neml2_modular/rate_independent_plasticity_isoharden, neml2_modular/rate_independent_plasticity_kinharden, neml2_modular/rate_independent_plasticity_isokinharden
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Issue(s): #27493
Collection(s): SYSTEM
Type(s): Exodiff
- 8.84.4The system shall provide a modular way to transfer variables and/or real material property to NEML2 for use as model parameters.
Specification(s): moose_to_neml2_parameter
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.5The system shall error out while trying to set a parameter that does not exist.
Specification(s): moose_to_neml2_parameter_error
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.84.6The system shall provide for a modular way to compute NEML2 output with respect to specific model parameters and save that it as a MOOSE material property.
Specification(s): neml2_parameter_derivative
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.7The system shall provide for a modular way to transfer NEML2 results to material properties..
Specification(s): neml2_to_moose_material
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.84.8The system shall be capable of interfacing with the NEML2 library to perform constitutive update
- to solve an elasticity problem;
- to solve a perfect viscoplasticity problem;
- to solve a viscoplasticity problem with isotropic hardening;
- to solve a viscoplasticity problem with kinematic hardening;
- to solve a viscoplasticity problem with both isotropic and kinematic hardening;
- to solve a viscoplasticity problem with non-associative Chaboche hardening;
- to solve a viscoplasticity problem using radial return;
- to solve a rate-independent problem with perfect plasticity;
- to solve a rate-independent problem with isotropic hardening;
- to solve a rate-independent problem with kinematic hardening;
- to solve a rate-independent problem with both isotropic and kinematic hardening.
- in a batched fashion.
Specification(s): neml2_legacy/elasticity, neml2_legacy/viscoplasticity_perfect, neml2_legacy/viscoplasticity_isoharden, neml2_legacy/viscoplasticity_kinharden, neml2_legacy/viscoplasticity_isokinharden, neml2_legacy/viscoplasticity_chaboche, neml2_legacy/viscoplasticity_radial_return, neml2_legacy/rate_independent_plasticity_perfect, neml2_legacy/rate_independent_plasticity_isoharden, neml2_legacy/rate_independent_plasticity_kinharden, neml2_legacy/rate_independent_plasticity_isokinharden, neml2_legacy/batched
Design: CauchyStressFromNEML2CauchyStressFromNEML2UOCauchyStressFromNEML2Receiver
Collection(s): SYSTEM
Type(s): Exodiff
- solid_mechanics: Stresses in Solid Mechanics
- 8.86.1SolidMechanics shall be able to simulate the confined, uniaxial extension of a notched block which has constitutive law described by:
- unsmoothed capped-Mohr-Coulomb plasticity
- smoothed capped-Mohr-Coulomb plasticity, with smoothing performed by the novel MOOSE smoothing method described in Wilkins et al
- unsmoothed Mohr-Coulomb plasticity
- smoothed Mohr-Coulomb plasticity, with smoothing performed by the Abbo et al method
- smoothed Mohr-Coulomb plasticity, with smoothing performed by the novel MOOSE smoothing method described in Wilkins et al, using the cosine smoother
- smoothed Mohr-Coulomb plasticity, with smoothing performed by the novel MOOSE smoothing method described in Wilkins et al, using the poly1 smoother
- smoothed Mohr-Coulomb plasticity, with smoothing performed by the novel MOOSE smoothing method described in Wilkins et al, using the poly2 smoother
- smoothed Mohr-Coulomb plasticity, with smoothing performed by the novel MOOSE smoothing method described in Wilkins et al, using the poly3 smoother
Specification(s): confined_uniaxial/cmc_planar, confined_uniaxial/cmc_smooth, confined_uniaxial/biaxial_planar, confined_uniaxial/biaxial_abbo, confined_uniaxial/biaxial_smooth_cos, confined_uniaxial/biaxial_smooth_poly1, confined_uniaxial/biaxial_smooth_poly2, confined_uniaxial/biaxial_smooth_poly3
Design: Stresses in Solid Mechanics
Issue(s): #13766
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.110.1The mechanics system shall correctly compute the jacobian for 3D problems using small strain.
Specification(s): smallstrain_3D
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.2The mechanics system shall correctly compute the jacobian for 3D problems using incremental small strain.
Specification(s): incrementalstrain_3D
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.3The mechanics system shall correctly compute the jacobian for 3D problems using finite strain.
Specification(s): finitestrain_3D
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.7The mechanics system shall correctly compute the jacobian for RZ problems using small strain.
Specification(s): smallstrain_RZ
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.8The mechanics system shall correctly compute the jacobian for RZ problems using incremental small strain.
Specification(s): incrementalstrain_RZ
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.9The mechanics system shall correctly compute the jacobian for RZ problems using finite strain.
Specification(s): finitestrain_RZ
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.13The mechanics system shall correctly compute the jacobian for planestrain problems using small strain.
Specification(s): smallplanestrain
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.14The mechanics system shall correctly compute the jacobian for planestrain problems using incremental small strain.
Specification(s): incrementalplanestrain
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.15The mechanics system shall correctly compute the jacobian for planestrain problems using finite strain.
Specification(s): finiteplanestrain
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.19The mechanics system shall correctly compute the jacobian for spherical problems using small strain.
Specification(s): smallstrain_spherical
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.20The mechanics system shall correctly compute the jacobian for spherical problems using small, incremental strain.
Specification(s): incrementalstrain_spherical
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: WeakPlaneStress
- 8.88.1The system shall compute the correct Jacobian for plane stress conditions
Specification(s): weak_plane_stress_elastic_jacobian
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.88.2The system shall compute the correct Jacobian for plane stress conditions
Specification(s): ad_weak_plane_stress_elastic_jacobian
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.88.3The system shall compute plane stress conditions with small strains with input provided using the Master action
Specification(s): weak_plane_stress_small
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.88.4The system shall compute plane stress conditions with small strains
Specification(s): ad_weak_plane_stress_small
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.88.5The system shall compute plane stress conditions with incremental strains with input provided using the Master action
Specification(s): weak_plane_stress_incremental
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.88.6The system shall compute plane stress conditions with incremental strains with input provided using the Master action
Specification(s): ad_weak_plane_stress_incremental
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.88.7The system shall compute plane stress conditions with finite strains with input provided using the Master action
Specification(s): weak_plane_stress_finite
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.88.8The system shall compute plane stress conditions with finite strains with input provided using the Master action
Specification(s): ad_weak_plane_stress_finite
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.88.9The system shall compute the response of a 3D cube in uniaxial tension with finite strain to provide a benchmark for a 2D plane stress, finite strain model
Specification(s): 3D_finite_tension_pull
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.88.10The system shall compute the response of a cube in uniaxial tension using a 2D plane stress, finite strain model, and produce the same result as a 3D model
Specification(s): weak_plane_stress_finite_tension_pull
Design: WeakPlaneStress
Issue(s): #7902
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: PorosityFromStrain
- 8.90.1The system shall compute a Porosity material property from a strain tensor
- using traditional materials.
- using automatic differentiation materials.
Design: PorosityFromStrainADPorosityFromStrain
Issue(s): #15974
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.90.2The system shall handle a negative calculated porosity computed from a strain tensor
- by setting the porosity to zero.
- by setting the porosity to the initial condition.
- by throwing an exception.
Specification(s): negative/zero, negative/initial, negative/exception
Design: PorosityFromStrainADPorosityFromStrain
Issue(s): #15974
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 8.90.3The system shall handle a nan calcualted porosity computed from a strain tensor
- by throwing an exception.
Specification(s): nan/exception
Design: PorosityFromStrainADPorosityFromStrain
Issue(s): #15974
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: ADPorosityFromStrain
- 8.90.1The system shall compute a Porosity material property from a strain tensor
- using traditional materials.
- using automatic differentiation materials.
Design: PorosityFromStrainADPorosityFromStrain
Issue(s): #15974
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.90.2The system shall handle a negative calculated porosity computed from a strain tensor
- by setting the porosity to zero.
- by setting the porosity to the initial condition.
- by throwing an exception.
Specification(s): negative/zero, negative/initial, negative/exception
Design: PorosityFromStrainADPorosityFromStrain
Issue(s): #15974
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunExceptionCSVDiff
- 8.90.3The system shall handle a nan calcualted porosity computed from a strain tensor
- by throwing an exception.
Specification(s): nan/exception
Design: PorosityFromStrainADPorosityFromStrain
Issue(s): #15974
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: Side Reaction Postprocessor
- 8.91.1The system shall be able to compute the force on a sideset.
Specification(s): sideset_force
Design: Side Reaction Postprocessor
Issue(s): #15163
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Material Tensor Average
- 8.91.2The system shall be able to compute the volume average of rank two tensor component.
Specification(s): material_tensor_avg_test
Design: Material Tensor Average
Issue(s): #15424
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.91.3The system shall be able to compute the volume average of rank two tensor component, which was computed using automatic differentiation.
Specification(s): material_tensor_avg_AD_test
Design: Material Tensor Average
Issue(s): #15424
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: NormalBoundaryDisplacement
- 8.91.4The system shall compute normal displacements on a surface for checking correct application of penalty boundary conditions.
Specification(s): normal_displacement
Design: NormalBoundaryDisplacement
Issue(s): #16346
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: MooseException
- 8.92.1The system shall gracefully allow exceptions from the radial return mapping algorithm
- not using automatic differentiation methods.
- using automatic differentiation methods.
Specification(s): exception/non, exception/ad
Design: MooseException
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: RadialDisplacementCylinderAux
- 8.95.1The system shall compute the radial component of displacement for axisymmetric cylindrical models
Specification(s): cylinder_2d_axisymmetric
Design: RadialDisplacementCylinderAux
Issue(s): #7604
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.95.2The system shall compute the radial component of displacement for 2D Cartesian cylindrical models
Specification(s): cylinder_2d_cartesian
Design: RadialDisplacementCylinderAux
Issue(s): #7604
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.95.3The system shall compute the radial component of displacement for 3D Cartesian cylindrical models
Specification(s): cylinder_3d_cartesian
Design: RadialDisplacementCylinderAux
Issue(s): #7604
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.95.8The system shall report an error if "axis_vector" is supplied to RadialDisplacementCylinderAux and the model is not 3D Cartesian
Specification(s): cylinder_2d_axisymmetric_except_1
Design: RadialDisplacementCylinderAux
Issue(s): #7604
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.95.9The system shall report an error if "axis_vector" has length of zero
Specification(s): cylinder_3d_cartesian_except_1
Design: RadialDisplacementCylinderAux
Issue(s): #7604
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: RadialDisplacementSphereAux
- 8.95.4The system shall compute the radial component of displacement for 1D spherical models
Specification(s): sphere_1d_spherical
Design: RadialDisplacementSphereAux
Issue(s): #7604
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.95.5The system shall compute the radial component of displacement for axisymmetric spherical models
Specification(s): sphere_2d_axisymmetric
Design: RadialDisplacementSphereAux
Issue(s): #7604
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.95.6The system shall compute the radial component of displacement for 3D Cartesian spherical models
Specification(s): sphere_3d_cartesian
Design: RadialDisplacementSphereAux
Issue(s): #7604
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.95.7The system shall report an error if "origin" is supplied to RadialDisplacementSphereAux when the coordinate system is not Cartesian or axisymmetric
Specification(s): sphere_1d_spherical_except_1
Design: RadialDisplacementSphereAux
Issue(s): #7604
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: Combined Nonlinear Hardening Plasticity
- 8.96.1The system shall compute the J2 linear kinematic plasticity stress based on the imposed cyclic nonsymmetric strain
Specification(s): linear_kinharden_nonsymmetric_strain_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.2The system shall compute the J2 linear kinematic plasticity stress based on the imposedcyclic symmetric strain
Specification(s): linear_kinharden_symmetric_strain_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.3The system shall compute the J2 nonlinear isotropic plasticity stress based on the imposedcyclic symmetric strain
Specification(s): nonlin_isoharden_symmetric_strain_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.4The system shall compute the J2 nonlinear combined plasticity stress based on the imposed cyclic symmetric strain
Specification(s): nonlin_isokinharden_symmetric_strain_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.5The system shall compute the J2 nonlinear kinematic plasticity stress based on the imposed cyclic nonsymmetric strain
Specification(s): nonlin_kinharden_nonsymmetric_strain_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.6The system shall compute the J2 nonlinear kinematic plasticity stress based on the imposed cyclic nonsymmetric strain
Specification(s): nonlin_kinharden_symmetric_strain_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.7The system shall compute the J2 nonlinear kinematic plasticity strain based on the imposed cyclic nonsymmetric loading
Specification(s): 1D_ratcheting_nonlin_kinharden_stress_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.96.8The system shall compute the J2 linear kinematic plasticity strain based on the imposed cyclic nonsymmetric loading
Specification(s): linear_kinharden_nonsymmetric_stress_controlled
Design: Combined Nonlinear Hardening Plasticity
Issue(s): #28688
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Isotropic Plasticity Stress Update
- 8.97.1The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the small incremental strain formulation.
Specification(s): isotropic_plasticity_incremental
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.2The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the small incremental strain formulation while prescribing a base name for the isotropic plasticity material properties.
Specification(s): isotropic_plasticity_incremental_base_name
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.3The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the small incremental strain formulation and using the b-bar element volume correction.
Specification(s): isotropic_plasticity_incremental_Bbar
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.4The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the finite incremental strain formulation.
Specification(s): isotropic_plasticity_finite
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.5The system shall compute the J2 isotropic plasticity stress and plastic strain response under tensile loading within the finite incremental strain formulation and using the b-bar element volume correction.
Specification(s): isotropic_plasticity_finite_Bbar
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.7The system shall only allow the calculation of a J2 isotropic plasticity stress response with only one but not both of a hardening function or hardening constant specified to define the evolving yield surface.
Specification(s): isotropic_plasticity_error1
Design: Isotropic Plasticity Stress Update
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.97.8The system shall only calculate the J2 isotropic plasticity stress response when either a hardening function or a hardening constant is specified to define the evolving yield surface.
Specification(s): isotropic_plasticity_error2
Design: Isotropic Plasticity Stress Update
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.97.9The system shall only calculate the J2 isotropic plasticity stress response when either a constant yield stress or a yield stress function is specified to define the initial yield surface.
Specification(s): isotropic_plasticity_error3
Design: Isotropic Plasticity Stress Update
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.97.10The system shall return an error if a negative yield stress is supplied when calculating the J2 isotropic plasticity stress response.
Specification(s): isotropic_plasticity_error4
Design: Isotropic Plasticity Stress Update
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.97.11The system shall return an error if anisotropic elasticity tensor is supplied when the J2 isotropic plasticity stress response calculation is requested.
Specification(s): isotropic_plasticity_error5
Design: Isotropic Plasticity Stress Update
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.97.12The system shall calculate, with J2 isotropic plasticity, the transient stress eigenvalues with stationary eigenvectors verification test from K. Jamojjala, R. Brannon, A. Sadeghirad, J. Guilkey, Verification tests in solid mechanics, Engineering with Computers, Vol 31., p. 193-213.
Specification(s): affine_plasticity
Design: Isotropic Plasticity Stress UpdateCompute Multiple Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.97.13The system shall calculate, with J2 isotropic plasticity, the transient stress eigenvalues with stationary eigenvectors verification test from K. Jamojjala, R. Brannon, A. Sadeghirad, J. Guilkey, Verification tests in solid mechanics, Engineering with Computers, Vol 31., p. 193-213. This shall be done with a coupled creep and plasticity model where the creep model is inactive.
Specification(s): cp_affine_plasticity
Design: Isotropic Plasticity Stress UpdateCompute Creep and Plasticity Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Hyperbolic Viscoplasticity Stress Update
- 8.97.6The system shall compute the hyperbolic visoplastic stress response for a time-dependent linear strain hardening plasticity model in a small incremental strain formulation in a manner equivalent to the ABAQUS result.
Specification(s): uniaxial_viscoplasticity
Design: Hyperbolic Viscoplasticity Stress Update
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Compute Creep and Plasticity Inelastic Stress
- 8.97.13The system shall calculate, with J2 isotropic plasticity, the transient stress eigenvalues with stationary eigenvectors verification test from K. Jamojjala, R. Brannon, A. Sadeghirad, J. Guilkey, Verification tests in solid mechanics, Engineering with Computers, Vol 31., p. 193-213. This shall be done with a coupled creep and plasticity model where the creep model is inactive.
Specification(s): cp_affine_plasticity
Design: Isotropic Plasticity Stress UpdateCompute Creep and Plasticity Inelastic Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: LAROMANCE Stress Update with Automatic Differentiation
- 8.98.1The system shall compute a creep rate based on a reduced order model
- and evolve over time with an good finite difference width.
- and evolve over time with an poor finite difference width with more nonlinear iterations than with a good finite difference width.
- in 3D.
- with units of stress other than Pascal.
- in 2DRz.
- in 2DRz with a model loaded from a JSON data file.
- in isolation (i.e. without a full displacement solve), and match with code-to-code comparison with a small set of input parameters not using AD.
- in isolation (i.e. without a full displacement solve), and match with code-to-code comparison with a large set of input parameters not using AD.
- at the lower temperature limit.
- below the lower temperature limit and extrapolate correctly.
- but should error out below the lower temperature limit if requested by the user.
- but should error out above the upper temperature limit if requested by the user.
- when substepping is off and the time step size does not guarantee the most accurate results.
- when substepping is off and the time step size guarantees accurate results.
- when substepping is on and the numerical integration error selected by the user guarantees accurate results.
- when substepping is on and the numerical integration error selected by the user guarantees accurate results but substepping settings require a system-wise time step cut because the computed number of substeps exceeds the maximum_number_substeps parameter.
- for a variety of overlapping tiles and two overlapping partitions.
- for a variety of overlapping tiles and two overlapping partitions with a model loaded from a JSON data file.
- for a variety of overlapping tiles and two overlapping partitions with a model loaded from a JSON data file relative to the input.
- for a variety of overlapping tiles and two overlapping partitions, and be able to export the model data to a JSON file.
Specification(s): rom/3tile_strain, rom/3tile_strain_small_fd, rom/3d, rom/3d_MPA, rom/2drz, rom/2drz_json, rom/nonad_verification, rom/nonad_verification_heavy, rom/lower_limit, rom/lower_limit_extrapolated, rom/lower_limit_error, rom/upper_limit_error, rom/creep_ramp_sub_false, rom/creep_ramp_sub_false_more_steps, rom/creep_ramp_sub_true, rom/creep_ramp_sub_true_exception, rom/3tile, rom/3tile_json, rom/3tile_json_relative, rom/3tile_json_export
Design: LAROMANCE Stress Update with Automatic Differentiation
Issue(s): #14046#16520#17287#20827
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): JSONDiffRunExceptionRunAppCSVDiff
- 8.98.2The system shall compute a creep rate based on a reduced order model using AD
- in 3D.
- with units of stress other than Pascal.
- in 3D and compute a perfect Jacobian.
- in 2DRz.
- in 2DRz and compute a perfect Jacobian.
- in isolation (i.e. without a full displacement solve), and match with code-to-code comparison with a small set of input parameters using AD.
- in isolation (i.e. without a full displacement solve), and match with code-to-code comparison with a large set of input parameters using AD.
- at the lower temperature limit.
- below the lower temperature limit and extrapolate correctly.
Specification(s): ADrom/3d, ADrom/3d_MPA, ADrom/3d-jac, ADrom/2drz, ADrom/2drz-jac, ADrom/ad_verification, ADrom/ad_verification_heavy, ADrom/lower_limit, ADrom/lower_limit_extrapolated
Design: LAROMANCE Stress Update with Automatic Differentiation
Issue(s): #14046
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTesterCSVDiff
- solid_mechanics: Compute Damage Stress
- 8.99.1The system shall calculate the effect of damage on the stress of a elastic material.
Specification(s): scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.2The system shall calculate the effect of damage on the stress of a elastic material when using automatic differentiation.
Specification(s): ad_scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.3The system shall calculate damaged stress based on old damage index.
Specification(s): scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.4The system shall calculate damaged stress based on old damage index when using automatic differentiation.
Specification(s): ad_scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.5The system shall report an error when damage index is greater than 1.
Specification(s): scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.6The system shall report an error when damage index is greater than 1 also when using automatic differentiation.
Specification(s): ad_scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.7The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress
Specification(s): scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.8The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress when using automatic differentiation
Specification(s): ad_scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.9The system shall calculate the maximum value of the damage index comparing different damage models.
Specification(s): combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.10The system shall calculate the effective damage index from different damage models.
Specification(s): combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.11The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model
Specification(s): combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.12The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models.
Specification(s): combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.13The system shall calculate the maximum value of the damage index comparing different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.14The system shall calculate the effective damage index from different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.15The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.16The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.17The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the creep or plastic deformation.
Specification(s): scalar_damage_material_inelastic
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.18The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation.
Specification(s): scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.19The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation with automatic differentiation.
Specification(s): ad_scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.20The system shall provide a meaningful error if the user selects a material model that is not recognized by the automatic differentiation multiple stress object.
Specification(s): multiple_inelastic_bad_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #20722
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.21The system shall calculate the effect of damage on the stress of a nonlocal damage model.
Specification(s): nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.22The system shall calculate the effect of damage on the stress of a nonlocal damage model. When using automatic differentiation.
Specification(s): ad_nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: NonlocalDamage
- 8.99.1The system shall calculate the effect of damage on the stress of a elastic material.
Specification(s): scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.2The system shall calculate the effect of damage on the stress of a elastic material when using automatic differentiation.
Specification(s): ad_scalar_damage_material
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.3The system shall calculate damaged stress based on old damage index.
Specification(s): scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.4The system shall calculate damaged stress based on old damage index when using automatic differentiation.
Specification(s): ad_scalar_damage_material_old
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.5The system shall report an error when damage index is greater than 1.
Specification(s): scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.6The system shall report an error when damage index is greater than 1 also when using automatic differentiation.
Specification(s): ad_scalar_damage_material_out_of_bounds
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.7The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress
Specification(s): scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.8The system shall make sure that the damage model is derived from DamageBase and error out when incompatible damage model is used in conjunction with ComputeDamageStress when using automatic differentiation
Specification(s): ad_scalar_damage_incompatible_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.9The system shall calculate the maximum value of the damage index comparing different damage models.
Specification(s): combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.10The system shall calculate the effective damage index from different damage models.
Specification(s): combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.11The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model
Specification(s): combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.12The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models.
Specification(s): combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.13The system shall calculate the maximum value of the damage index comparing different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_max
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.14The system shall calculate the effective damage index from different damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_mult
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.15The system shall allow for damage to be limited to a user-defined value for an individual damage model that is combined with another damage model when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_sub
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.16The system shall allow for damage to be limited to a user-defined value for the combination of multiple damage models when using automatic differentiation.
Specification(s): ad_combined_scalar_damage_limit_combined
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.17The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the creep or plastic deformation.
Specification(s): scalar_damage_material_inelastic
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.18The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation.
Specification(s): scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.19The system shall calculate the effect of damage on the stress of a inelastic material in conjunction with the power law creep deformation with automatic differentiation.
Specification(s): ad_scalar_damage_material_creep_power
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #11041
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.20The system shall provide a meaningful error if the user selects a material model that is not recognized by the automatic differentiation multiple stress object.
Specification(s): multiple_inelastic_bad_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #20722
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.99.21The system shall calculate the effect of damage on the stress of a nonlocal damage model.
Specification(s): nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.99.22The system shall calculate the effect of damage on the stress of a nonlocal damage model. When using automatic differentiation.
Specification(s): ad_nonlocal_damage_model
Design: Compute Damage StressScalar Material DamageCompute Multiple Inelastic StressNonlocalDamage
Issue(s): #21786
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Shell elements
- 8.100.1The mechanics system shall accurately predict the dynamic behavior of a shell element with clamped-free-free-free conditions when
- the surface is on the XY plane
- the surface is at a 45 deg. angle w.r.t. the Y axis
- the surface is at a 45 deg. angle w.r.t. the Y axis and HHT input is provided
Specification(s): verification_tests/shell_dynamics_bending_moment_free, verification_tests/shell_dynamics_bending_moment_free_orientation_inclined, verification_tests/shell_dynamics_bending_moment_free_orientation_inclined_hht
Design: Shell elements
Issue(s): #15067
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.100.3The mechanics system shall accurately compute the deflection of a cantilever beam when it is modeled using shell elements.
Specification(s): beam_bending
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.4The mechanics system shall accurately compute the deflection of a rotated cantilever beam when it is modeled using shell elements.
Specification(s): rotated_beam_bending
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.5The mechanics system shall accurately compute the deflection of a cantilever beam when it is modeled using shell elements under large strain and rotations are included.
Specification(s): large_beam_bending
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.6The mechanics system shall accurately compute the Jacobian for a small strain quasi-static shell element.
Specification(s): beam_bending_jacobian
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.100.7The mechanics system shall accurately compute the Jacobian for a large strain quasi-static shell element.
Specification(s): large_beam_bending_jacobian
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.100.8The mechanics system shall accurately model the deflection of a simply supported under uniform loading.
Specification(s): plate_bending
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.9The mechanics system shall accurately model deflection of a plate with multiple force and moment boundary conditions.
Specification(s): plate_bending2
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.10The mechanics system shall converge to the analytic displacement of a cylinder modeled with shell elements, with point loading applied in the x direction.
Specification(s): pinched_cylinder
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.100.11The mechanics system shall converge to the analytic displacement of a cylinder modeled with shell elements, with point loading applied in the y direction.
Specification(s): pinched_cylinder_y
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.100.12The mechanics system shall accurately model the deflection of a inclined shell elements.
Specification(s): inclined_plane
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.13The mechanics system shall accurately compute the axial stress and strain of the shell elements.
Specification(s): straintest_axial
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.14The mechanics system shall accurately compute the axial stress and strain of the shell elements using the finite strain formulation.
Specification(s): finite_straintest_axial
Design: Shell elements
Issue(s): #25266
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.15The mechanics system shall accurately compute the stress and strain of the shell elements subjected to shear deformation.
Specification(s): straintest_shear
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.16The mechanics system shall accurately compute the stress and strain of the tapered shell elements.
Specification(s): tapered
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.100.17The system shall generate an error if the shell strain material is evaluated when the number of quadrature points does not equal 4.
Specification(s): qp_error
Design: Shell elements
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.100.18Shell elements should have compatible stresses even for unstructured meshes.
Specification(s): pinched_cylinder_symm_unstructured
Design: Shell elements
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: ADInertialForceShell
- 8.100.2The mechanics system shall accurately predict the dynamic behavior of a shell element.
Specification(s): shell_dynamics
Design: ADInertialForceShell
Issue(s): #15067
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Compute Smeared Cracking Stress
- 8.101.1The MOOSE SolidMechanics module shall simulate cracking on a specimen under tension in cartesian coordinates.
Specification(s): cracking
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.2The MOOSE SolidMechanics module shall simulate cracking on a specimen under tension in rz coordinates.
Specification(s): cracking_rz
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.3The MOOSE SolidMechanics module shall simulate cracking while the cracking strength is prescribed by an elemental AuxVariable.
Specification(s): cracking_function
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.4The MOOSE SolidMechanics module shall simulate exponential stress release.
Specification(s): exponential
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.5The MOOSE SolidMechanics module shall simulate exponential stress relase while using the rz coordinate system.
Specification(s): rz_exponential
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.6The MOOSE SolidMechanics module shall demonstrate softening using the power law for smeared cracking.
Specification(s): power
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.7The MOOSE SolidMechanics module shall demonstrate the prescribed softening laws in three directions, power law (x), exponential (y), and abrupt (z).
Specification(s): multiple_softening
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.8The MOOSE SolidMechanics module shall simulate smeared cracking in the x y and z directions.
Specification(s): xyz
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.9The MOOSE SolidMechanics module shall simulate smeared cracking under plane stress conditions.
Specification(s): plane_stress
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.10The MOOSE SolidMechanics module shall demonstrate that the smeared cracking model correctly handles finite rotation of cracked elements.
Specification(s): cracking_rotation
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.11The MOOSE SolidMechanics module shall demonstrate the finite rotation of cracked elements where the crack is prescribed in x.
Specification(s): cracking_rotation_pres_dir_x
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.12The MOOSE SolidMechanics module shall demonstrate the finite rotation of cracked elements where the crack is prescribed in z.
Specification(s): cracking_rotation_pres_dir_z
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.13The MOOSE SolidMechanics module shall demonstrate the finite rotation of cracked elements where two cracks are prescribed in x and z.
Specification(s): cracking_rotation_pres_dir_xz
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.101.14The ComputeSmearedCrackingStress model shall generate a warning if 'cracked_elasticity_type' is not specified
Specification(s): cracking_err_diagonal
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.101.15The ComputeSmearedCrackingStress model shall generate an error if an invalid number of softening models is specified
Specification(s): cracking_err_softening
Design: Compute Smeared Cracking Stress
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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
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
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
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
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
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: Compliance Sensitivity
- 8.104.3The system shall be able to create a compliance sensitivity material.
Specification(s): incr_model_sensitivity
Design: Compliance Sensitivity
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Strain Energy Rate Density
- 8.104.7The system shall be capable of calculating strain energy rate density with elastic stress and finite strain.
Specification(s): rate_model
Design: Strain Energy Rate Density
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.104.8The system shall be capable of calculating strain energy rate density when using small strain assumptions.
Specification(s): rate_model_small
Design: Strain Energy Rate Density
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.104.9The system shall be capable of calculating strain energy rate density when using automatic differentiation and weak plane stress.
Specification(s): ad_rate_model_weak_plane
Design: Strain Energy Rate Density
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.104.10The system shall be capable of calculating strain energy rate density when using hand-coded Jacobian and weak plane stress.
Specification(s): nonAD_rate_model_weak_plane
Design: Strain Energy Rate Density
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: Radial Return Stress Update with automatic differentiation
- 8.106.1The system shall report diverged return mapping solve due to large deformation imposed in one step using automatic differentiation
Specification(s): ad_power_law
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.106.2The system shall converge under large deformation owing to the help of substepping using automatic differentiation
Specification(s): ad_power_law_substepping
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.106.3The system shall converge under large deformation owing to the help of adaptive substepping using automatic differentiation with an increment based substepping criterion
Specification(s): ad_power_law_adaptive_substepping_increment
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.106.4The system shall converge under large deformation owing to the help of adaptive substepping using automatic differentiation with an error based substepping criterion
Specification(s): ad_power_law_adaptive_substepping_error
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.106.5The system shall report diverged return mapping solve due to large deformation imposed in one step
Specification(s): power_law
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.106.6The system shall converge under large deformation owing to the help of substepping
Specification(s): power_law_substepping
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.106.7The system shall converge under large deformation owing to the help of adaptive substepping with an increment based substepping criterion
Specification(s): power_law_adaptive_substepping_increment
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.106.8The system shall converge under large deformation owing to the help of adaptive substepping with an error based substepping criterion
Specification(s): power_law_adaptive_substepping_error
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.106.9The system shall output verbose information about radial return iterations.
Specification(s): output
Design: Radial Return Stress Update with automatic differentiation
Issue(s): #14757
Collection(s): FUNCTIONAL
Type(s): RunApp
- solid_mechanics: Temperature Dependent Hardening Stress Update
- 8.108.1The system shall compute the stress as a function of temperature and plastic strain from user-supplied hardening functions not using automatic differentiation.
Specification(s): test
Design: Temperature Dependent Hardening Stress Update
Issue(s): #7043
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.108.2The system shall compute the stress as a function of temperature and plastic strain from user-supplied hardening functions using automatic differentiation.
Specification(s): ADtest
Design: Temperature Dependent Hardening Stress Update
Issue(s): #18454
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Strain Formulations in Solid Mechanics
- 8.110.1The mechanics system shall correctly compute the jacobian for 3D problems using small strain.
Specification(s): smallstrain_3D
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.2The mechanics system shall correctly compute the jacobian for 3D problems using incremental small strain.
Specification(s): incrementalstrain_3D
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.3The mechanics system shall correctly compute the jacobian for 3D problems using finite strain.
Specification(s): finitestrain_3D
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.7The mechanics system shall correctly compute the jacobian for RZ problems using small strain.
Specification(s): smallstrain_RZ
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.8The mechanics system shall correctly compute the jacobian for RZ problems using incremental small strain.
Specification(s): incrementalstrain_RZ
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.9The mechanics system shall correctly compute the jacobian for RZ problems using finite strain.
Specification(s): finitestrain_RZ
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.13The mechanics system shall correctly compute the jacobian for planestrain problems using small strain.
Specification(s): smallplanestrain
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.14The mechanics system shall correctly compute the jacobian for planestrain problems using incremental small strain.
Specification(s): incrementalplanestrain
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.15The mechanics system shall correctly compute the jacobian for planestrain problems using finite strain.
Specification(s): finiteplanestrain
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.19The mechanics system shall correctly compute the jacobian for spherical problems using small strain.
Specification(s): smallstrain_spherical
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.110.20The mechanics system shall correctly compute the jacobian for spherical problems using small, incremental strain.
Specification(s): incrementalstrain_spherical
Design: Strain Formulations in Solid MechanicsStresses in Solid Mechanics
Issue(s): #8235
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Compute Thermal Expansion Eigenstrain
- 8.111.1The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion.
Specification(s): constant_expansion_coeff
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #7457
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.2The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion when restarting the simulation.
Specification(s): constant_expansion_coeff_restart
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #7457
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.3The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion with an initial strain due to the difference between the stress free temperature and initial temperature of the material.
Specification(s): constant_expansion_stress_free_temp
Design: Compute Thermal Expansion EigenstrainRank Two Aux
Issue(s): #8909
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.4The tensor mechanics module shall have the capability to combine multiple eigenstrains to correctly calculate an eigenstrain tensor resulting from isotropic thermal expansion.
Specification(s): multiple_thermal_eigenstrains
Design: Compute Thermal Expansion EigenstrainRank Two Aux
Issue(s): #7457
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.5The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion.
Specification(s): ad_constant_expansion_coeff
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #13091
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.6The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion using the previous timestep.
Specification(s): ad_constant_expansion_coeff_old
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #13091
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.7The Jacobian for the AD eigenstrain tensor resulting from isotropic thermal expansion shall be perfect
Specification(s): ad_constant_expansion_coeff-jac
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #13091
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- 8.111.8The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion with an initial strain due to the difference between the stress free temperature and initial temperature of the material.
Specification(s): ad_constant_expansion_stress_free_temp
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #13091
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.9The Jacobian for the AD eigenstrain tensor resulting from isotropic thermal expansion with an initial strain shall be perfect
Specification(s): ad_constant_expansion_stress_free_temp-jac
Design: Compute Thermal Expansion Eigenstrain
Issue(s): #13091
Collection(s): FUNCTIONAL
Type(s): PetscJacobianTester
- solid_mechanics: Rank Two Aux
- 8.111.3The tensor mechanics module shall have the capability to calculate the eigenstrain tensor resulting from isotropic thermal expansion with an initial strain due to the difference between the stress free temperature and initial temperature of the material.
Specification(s): constant_expansion_stress_free_temp
Design: Compute Thermal Expansion EigenstrainRank Two Aux
Issue(s): #8909
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.111.4The tensor mechanics module shall have the capability to combine multiple eigenstrains to correctly calculate an eigenstrain tensor resulting from isotropic thermal expansion.
Specification(s): multiple_thermal_eigenstrains
Design: Compute Thermal Expansion EigenstrainRank Two Aux
Issue(s): #7457
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 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
- 8.113.2The 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: PolarMomentOfInertia
- 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
- 8.113.2The 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: RotationAngle
- 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
- 8.113.2The 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: Torque Reaction
- 8.114.1The system shall compute the torque for an applied deformation at the end of a beam in 2D
Specification(s): torque_reaction_2D
Design: Torque Reaction
Issue(s): #6484
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.114.2The system shall compute the torque for an applied deformation at the end of a beam in 3D
Specification(s): torque_reaction_3D
Design: Torque Reaction
Issue(s): #6484
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.114.3The system shall compute the torque resulting from twisting applied using DisplacementAboutAxis to the end of an elastic cylinder
Specification(s): torque_reaction_cylinder
Design: Torque ReactionDisplacement About Axis
Issue(s): #6484
Collection(s): FUNCTIONAL
Type(s): Exodiff
- solid_mechanics: Displacement About Axis
- 8.114.3The system shall compute the torque resulting from twisting applied using DisplacementAboutAxis to the end of an elastic cylinder
Specification(s): torque_reaction_cylinder
Design: Torque ReactionDisplacement About Axis
Issue(s): #6484
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.114.4The system shall provide a boundary condition that applies pure finite rigid body rotation to a surface of an elastic body
Specification(s): disp_about_axis_motion
Design: Displacement About Axis
Issue(s): #15092
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.114.5The system shall provide a boundary condition that applies pure finite rigid body rotation to a surface of an elastic body incrementally
Specification(s): disp_about_axis_motion_incremental
Design: Displacement About Axis
Issue(s): #15388
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.114.6The system shall be able to use disaplcement about axis after applying an arbitraty deformation
Specification(s): disp_about_axis_axial_motion_delayed
Design: Displacement About Axis
Issue(s): #15388
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.114.7The system shall generate an error if the DisplacementAboutAxis boundary condition is applied to a component outside the range applicable for the dimensionality of the model
Specification(s): disp_about_axis_error1
Design: Displacement About Axis
Issue(s): #15092
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.114.8The system shall generate an error if the vector prescribed using the axis_direction parameter in the DisplacementAboutAxis boundary condition has a length of zero
Specification(s): disp_about_axis_error2
Design: Displacement About Axis
Issue(s): #15092
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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: LinearElasticTruss
- 8.116.1The mechanics system shall accurately model the axial response of 3D truss elements.
Specification(s): truss_3d
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.2The truss element shall work correctly when hex elements are also included in the same input or mesh file.
Specification(s): truss_hex
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.3The mechanics system shall accurately model the static response of a 2D frame modeled using truss elements.
Specification(s): truss_2d
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.4The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using 3D truss elements.
Specification(s): truss_3d_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.5The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using truss and hex elements.
Specification(s): truss_hex_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.6The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using 2D truss elements.
Specification(s): truss_2d_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.7The LineElementAction shall produce an error if
area
is not provided as input for truss elements.Specification(s): action_error_1
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.116.8The LineElementAction shall produce an error if rotational variables are provided as input for truss elements.
Specification(s): action_error_2
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: StressDivergenceTensorsTruss
- 8.116.1The mechanics system shall accurately model the axial response of 3D truss elements.
Specification(s): truss_3d
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.2The truss element shall work correctly when hex elements are also included in the same input or mesh file.
Specification(s): truss_hex
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.3The mechanics system shall accurately model the static response of a 2D frame modeled using truss elements.
Specification(s): truss_2d
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.4The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using 3D truss elements.
Specification(s): truss_3d_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.5The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using truss and hex elements.
Specification(s): truss_hex_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.6The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using 2D truss elements.
Specification(s): truss_2d_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.7The LineElementAction shall produce an error if
area
is not provided as input for truss elements.Specification(s): action_error_1
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.116.8The LineElementAction shall produce an error if rotational variables are provided as input for truss elements.
Specification(s): action_error_2
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: LineElement Action
- 8.116.1The mechanics system shall accurately model the axial response of 3D truss elements.
Specification(s): truss_3d
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.2The truss element shall work correctly when hex elements are also included in the same input or mesh file.
Specification(s): truss_hex
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.3The mechanics system shall accurately model the static response of a 2D frame modeled using truss elements.
Specification(s): truss_2d
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.4The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using 3D truss elements.
Specification(s): truss_3d_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.5The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using truss and hex elements.
Specification(s): truss_hex_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.6The LineElementAction shall correctly create the objects required for modeling the response of a mechanics system using 2D truss elements.
Specification(s): truss_2d_action
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.7The LineElementAction shall produce an error if
area
is not provided as input for truss elements.Specification(s): action_error_1
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.116.8The LineElementAction shall produce an error if rotational variables are provided as input for truss elements.
Specification(s): action_error_2
Design: LinearElasticTrussStressDivergenceTensorsTrussLineElement Action
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- solid_mechanics: Plastic Truss
- 8.116.9The system shall correctly model the plastic response of truss elements with a linear hardening model under tension.
Specification(s): tensile
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.10The system shall correctly model the plastic response of truss elements with perfect plasticity under tension.
Specification(s): tensile_nohardening
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.11The system shall correctly model the plastic response of truss elements with a user-defined hardening function model under tension.
Specification(s): tensile_hardeningfn
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.12The system shall correctly model the plastic response of truss elements with a linear hardening model under compression.
Specification(s): compressive
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.13The system shall correctly model the plastic response of truss elements with perfect plasticity under compression.
Specification(s): compressive_nohardening
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.14The system shall correctly model the plastic response of truss elements with a user-defined hardening function model under compression.
Specification(s): compressive_hardeningfn
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.116.15PlasticTruss material should produce error if neither the hardening constant nor a hardening function is provided.
Specification(s): error_nohardening
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.116.16PlasticTruss material should produce error if both hardening constant and hardening function are provided.
Specification(s): error_hardening
Design: Plastic Truss
Issue(s): #6789#2460#10313#14304
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 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: AbaqusUExternalDB
- 8.118.1The Abaqus UEXTERNALDB interface shall execute the UEXTERNALDB routine at the
- beginning of the simulation.
- beginning of each MOOSE time step.
- end of each MOOSE time step.
- end of the simulation.
Specification(s): execution/initial, execution/timestep_begin, execution/timestep_end, execution/final
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.118.2The Abaqus UEXTERNALDB interface shall interface with a general user object to obtain the proper loading step and pass it to the user routine.
Specification(s): steps
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.118.3The Abaqus UEXTERNALDB interface shall provide the Abaqus API to obtain the simulation output directory.
Specification(s): getoutdir
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.118.4The Abaqus UEXTERNALDB interface shall provide the Abaqus API to obtain the simulation job name.
Specification(s): getjobname
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.118.5The Abaqus UEXTERNALDB interface shall provide Abaqus compatible message routine supporting the
- info level.
- warning level.
- non-fatal error level.
- fatal error level.
Specification(s): messages/info, messages/warning, messages/non_fatal, messages/error
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunAppRunException
- 8.118.6The Abaqus UEXTERNALDB interface shall provide Abaqus compatible mutex management
- supporting single threaded execution.
- supporting at least 2 threads.
- supporting at least 4 threads.
Specification(s): mutex/single_thread, mutex/two_threads, mutex/four_threads
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONAL
Type(s): RunApp
- 8.118.7The Abaqus UEXTERNALDB interface shall provide the Abaqus API for accessing shared memory objects
- supporting single threaded execution.
- supporting two threaded execution.
- supporting four threaded execution.
Specification(s): sma_memory/single_thread, sma_memory/two_threads, sma_memory/four_threads
Design: AbaqusUExternalDB
Issue(s): #1
Collection(s): FUNCTIONAL
Type(s): RunApp
- 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: ComputeDeformGradBasedStress
- 8.121.1The ComputeDeformGradBasedStress class shall correctly compute the stress based on the lagrangian strain.
Specification(s): elastic
Design: ComputeDeformGradBasedStress
Issue(s): #6604
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.121.2The ComputeDeformGradBasedStress class shall correctly compute the stress from lagrangian strain when volumetric locking correction is used.
Specification(s): elastic_Bbar
Design: ComputeDeformGradBasedStressVolumetric Locking Correction
Issue(s): #6604
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 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
- solid_mechanics: VolumeDeformGradCorrectedStress
- 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
- solid_mechanics: Compute Volumetric Eigenstrain
- 8.122.1The system shall correctly compute an eigenstrain tensor that results in a solution that exactly recovers the specified volumetric expansion, and the reported volumetric strain computed by RankTwoScalarAux shall match the prescribed volumetric strain.
Specification(s): volumetric_eigenstrain
Design: Compute Volumetric EigenstrainRank Two Scalar Aux
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.122.3The volumetric strain computed using RankTwoScalarAux for a unit cube with imposed displacements shall be identical to that obtained by imposing an eigenstrain that causes the same deformation of that model.
Specification(s): volumetric_mechanical
Design: Compute Volumetric EigenstrainRank Two Scalar Aux
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: AD Compute Volumetric Eigenstrain
- 8.122.2The system shall correctly compute an eigenstrain using AD tensor that results in a solution that exactly recovers the specified volumetric expansion, and the reported volumetric strain computed by RankTwoScalarAux shall match the prescribed volumetric strain.
Specification(s): ad_volumetric_eigenstrain
Design: AD Compute Volumetric EigenstrainRank Two Scalar Aux
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: SolidMechanicsPlasticWeakPlaneShear
- 8.124.1The system shall not allow a weak plane shear friction angle less than the dilation angle.
Specification(s): except1
Design: SolidMechanicsPlasticWeakPlaneShear
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.124.2The system shall not allow a zero length transverse direction vector
Specification(s): except2
Design: SolidMechanicsPlasticWeakPlaneShear
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.124.4For the case of small deformations the system shall
- return a value of shear of 1 and a normal stress value of 0 when the apex of the shear envelope is (0,2);
- utlize the small smoother parameter under both pure tension and pure shear to solve;
- return the stress state to the yield surface under random loading;
- utilize the cap smoothing functionality under both pure tension and pure shear to solve the simulation.
Specification(s): small_deformations/small1, small_deformations/small2, small_deformations/small3, small_deformations/small4
Design: SolidMechanicsPlasticWeakPlaneShear
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.124.5For large deformation cases the system shall
- produce a solution without plasticity after the mesh is rotated by 90 degrees;
- return the stress state to the yield surface under pure tensile loading conditions after the mesh is rotated by 45 degrees;
- return the stress state to the yield surface under pseudo-random loading directions;
- return the stress state to the yield surface under pseudo-random loading while using the cap-tip yeild surface scheme.
Specification(s): large_deformation/large1, large_deformation/large2, large_deformation/large3, large_deformation/large4
Design: SolidMechanicsPlasticWeakPlaneShear
Collection(s): FUNCTIONAL
Type(s): ExodiffCSVDiff
- 8.124.6Under small deformation loading selected to induce cohesion hardening the system shall
- with repeated stretch loading;
- for pure tension and then pure shear to map out the yield function;
- with linearly increasing loading and an exponential hardening model;
- with a linearly increasing load and a cubic hardening model.
Specification(s): small_deformation_hardening/small_harden1, small_deformation_hardening/small_harden2, small_deformation_hardening/small_harden3, small_deformation_hardening/small_harden4
Design: SolidMechanicsPlasticWeakPlaneShear
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.124.7The system shall return the stress state to the yield surface under random large deformation loads.
Specification(s): large_harden3
Design: SolidMechanicsPlasticWeakPlaneShear
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- solid_mechanics: SolidMechanicsPlasticWeakPlaneTensile
- 8.125.1The system shall not allow a negative tensile strength value.
Specification(s): except1
Design: SolidMechanicsPlasticWeakPlaneTensile
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 8.125.2With a single element stretched by 1e-6m, for small deformation, the system shall
- return the stress state to the yield surface when the applied stress is above the yield surface tensile strength;
- return the stress state to the specified vector yield surface;
- not calculate a plastic solution because the applied stress is lower than the tension cutoff for the yield surface.
Specification(s): small_deformation/small1, small_deformation/small1N, small_deformation/small2
Design: SolidMechanicsPlasticWeakPlaneTensile
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 8.125.3Under large deformation loading the system shall
- calculate a solution without plasticity after the mesh is rotated by 90 degrees;
- return the stress state to the yield surface under pure tensile loading after the mesh is rotated by 45 degrees.
Specification(s): large_deformation/large1, large_deformation/large2
Design: SolidMechanicsPlasticWeakPlaneTensile
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 8.125.4Under small deformation loading selected to induce hardening the system shall
- the deformation shall produce increments of plastic strain in response to incremental loading steps;
- evolve the plastic internal state variable for an exponential hardening model;
- return the stress state to the evolving yield surface when loaded solely in the z-direction for an exponential hardening model;
- return the stress state to the evolving yield surface when loaded solely in the z-direction for an cubic hardening model;
Specification(s): small_deformation_hardening/small_hard1, small_deformation_hardening/small_hard2, small_deformation_hardening/small_hard3, small_deformation_hardening/small_hard_cubic
Design: SolidMechanicsPlasticWeakPlaneTensile
Collection(s): FUNCTIONAL
Type(s): CSVDiff