XFEM 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 XFEM module.
- Framework System Design Description
- sqa/tensor_mechanics_sdd.md
Introduction
The physics models in MOOSE typically represent spatially continuous behavior, for which the finite element method is well suited. However, discontinuities can arise in the physical systems being modeled, and representing those discontinuities can be challenging, especially when they move or grow, as is the case for moving material interfaces or propagating cracks. The MOOSE XFEM module provides capabilities to represent arbitrary, mesh-independent discontinuities in physical solutions using the extended finite element method. This module relies on MOOSE for solving its system of equations, and is designed to be flexible in its ability to introduce discontinuities to arbitrary physics models. This document describes the system design of the XFEM 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 XFEM 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 XFEM module. More information about the design documentation for MOOSE-based applications and like the XFEM module can be found in Documenting MOOSE.
System Scope
The MOOSE XFEM module provides capabilities for representing mesh-independent discontinuities in a finite-element model. This is done using the phantom-node variant of the extended finite element method, which introduces discontinuities by duplicating elements cut by the discontinuity, re-connecting those elements to the mesh in an appropriate way, and modifying the integration rule of these cut elements to reflect the fact that only part of the elements represent physical material.
This module provides all of the capabilities needed to use phantom-node-based XFEM. The core of this capability is the cutting algorithm, known as the element fragment algorithm (EFA). The EFA determines which elements should be deleted and added, and which nodes should be added. The XFEM module provides all the capabilities needed to store and use data about the elements that have been cut, and to modify the integration rules for those cut elements.
The XFEM module also provides capabilities for the user to define how the mesh is cut in a variety of ways, including based on primitive geometric objects, meshes, level set fields, or paths determined by stresses or fracture integrals. For crack propagation based on fracture integrals, the XFEM module can provide the information on crack geometry needed to compute those integrals, which are computed externally to this module.
In addition, the XFEM module contains tools to support the setup of models that use XFEM and outputting relevant data for use in visualizing results.
Dependencies and Limitations
The MOOSE XFEM module inherits the software dependencies of the MOOSE framework and Solid Mechanics module 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, XFEM 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 XFEM 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 XFEM module relies on MOOSE to solve the governing equations for arbitrary physics, and provides the additional capabilities needed to introduce spatial discontinuities in those physics models. Discontinuities are introduced using the phantom-node variant of the extended finite element method, which duplicates elements cut by the discontinuity, re-connects those elements to the mesh in an appropriate way, and modifies the integration rule of these cut elements to reflect the fact that only part of the elements represent physical material. The core of this capability is the cutting algorithm, known as the element fragment algorithm (EFA). The EFA determines which elements should be deleted and added, and which nodes should be added. The EFA is designed to have minimal dependencies on MOOSE, and uses its own simple mesh data structures. The EFA mesh is defined using information provided to it about the elements that make up the MOOSE finite element mesh used for the physics solution. Once the EFA identifies the changes to be made to the mesh, the XFEM module modifies the MOOSE mesh, and uses its own data structures to store data about the cut locations that is necessary for integration of the fields that are nonzero over only a portion of the element.
For integration of the fields on the cut elements, the XFEM module uses a moment-fitting method, which uses the original quadrature points, but modifies their weights using values that are obtained through a least-squares procedure. It also provides an option to simply multiply the original quadrature-point weights by the volume fraction of the cut element that represents physical material, which is a special case of the moment-fitting method.
The XFEM module provides the capability for the user to define how the mesh is cut in a variety of ways, including based on primitive geometric objects, meshes, level set fields, or paths determined by stresses or fracture integrals. A base class, based on the MOOSE ElementUserObject
, is provided in the XFEM module, which provides a way for cut elements to be identified and have those elements and the cut locations be conveyed to the EFA. A number of objects that derive from that base cut definition class are provided to define cuts in a variety of ways. For crack propagation based on fracture integrals, the XFEM module can provide the information on crack geometry needed to compute those integrals to the Solid Mechanics module, which computes those integrals. If those fracture integrals indicate that a crack should be extended, the cut definition is modified to reflect those changes. The design of MOOSE is based on the concept of modular code objects that define all of the aspects of the physics model. Although there are specialized capabilities in XFEM that fall outside the standard MOOSE base classes, wherever it is possible, 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.
System Structure
The MOOSE XFEM module relies on the MOOSE framework to provide the core functionality of solving multiphysics problems using the finite element method, and on other physics modules to solve for the continuous solutions that are enriched using the extended finite element method. Although the XFEM module is designed to operate with arbitrary physics, there are models specific to fracture propagation that are designed to operate specifically with the Solid Mechanics module. The structure of the XFEM module is based on defining C++ classes that derive from classes in the MOOSE framework to provide needed functionality wherever possible. 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 XFEM module is a command-line driven program. All interaction with the XFEM 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 XFEM 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 XFEM 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
- xfem: LevelSetCutUserObject
- 22.1.1The XFEM module shall have the capability to calculate mechanical response in two glued, layered materials with the interface location and material properties applied to on each side of the boundary determined by a level set function.
Specification(s): glued_bimaterial
Design: LevelSetCutUserObjectXFEMSingleVariableConstraint
Issue(s): #10421
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.1.2The XFEM module shall have the capability to calculate mechanical response in a composite material matrix with an inclusion with the location of the inclusion boundary and material properties applied to the matrix and inclusion determined by a prescribed level set function.
Specification(s): inclusion_bimaterial
Design: LevelSetCutUserObjectXFEMSingleVariableConstraint
Issue(s): #10421
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.5.3The XFEM Module shall have the capability to run 2D diffusion problems with a fixed position discontinuous interface defined by the location of the zero values of a level set function with the level set variable being a Moose Variable.
Specification(s): levelsetcut2d
Design: LevelSetCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.5.4The XFEM Module shall have the capability to run 2D diffusion problems with a fixed position discontinuous interface defined by the location of the zero values of a prescribed level set function with the level set variable being a Moose AuxVariable.
Specification(s): levelsetcut2d_aux
Design: LevelSetCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.5.5The XFEM Module shall have the capability to run 3D diffusion problems with a fixed position discontinuous interface defined by the location of the zero values of a prescribed level set function with the level set variable being a Moose AuxVariable.
Specification(s): levelsetcut3d
Design: LevelSetCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.1The XFEM module shall provide an ability to specify whether an XFEM cut surface should be healed independently for individual interfaces
Specification(s): moving_interface
Design: LineSegmentCutSetUserObjectLevelSetCutUserObject
Issue(s): #11259
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.10The XFEM module shall provide an ability to solve bi-material diffusion problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_diffusion
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceLevelSetCutUserObject
Issue(s): #11749
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.17The XFEM module shall accurately solve 1D, xy problems with homogeneous material properties with a moving interface determined by a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 1D_xy_homog1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.18The XFEM module shall accurately solve 1D, xy problems with material properties and a moving interface dependent on a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 1D_xy_lsdep1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.19The XFEM module shall accurately solve 1D, xy problems with a moving interface separating two discrete materials prescribed by a user defined level set function with problem results verified using the Method of Manufactured Solutions.
Specification(s): 1D_xy_discrete2mat
Design: LevelSetCutUserObjectXFEMSingleVariableConstraint
Issue(s): #13756
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.20The XFEM module shall accurately solve 1D, rz problems with homogeneous material properties with a moving interface determined by a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 1D_rz_homog1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.21The XFEM module shall accurately solve 1D, rz problems with material properties and a moving interface dependent on a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 1D_rz_lsdep1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.22The XFEM module shall accurately solve 2D, xy problems with homogeneous material properties with a moving interface determined by a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 2D_xy_homog1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.23The XFEM module shall accurately solve 2D, xy problems with material properties and a moving interface dependent on a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 2D_xy_lsdep1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.24The XFEM module shall accurately solve 2D, rz problems with homogeneous material properties with a moving interface determined by a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 2D_rz_homog1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.25The XFEM module shall accurately solve 2D, rz problems with material properties and a moving interface dependent on a user prescribed level set function, and problem results are verified using the Method of Manufactured Solutions.
Specification(s): 2D_rz_lsdep1mat
Design: LevelSetCutUserObject
Issue(s): #12833
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: XFEMSingleVariableConstraint
- 22.1.1The XFEM module shall have the capability to calculate mechanical response in two glued, layered materials with the interface location and material properties applied to on each side of the boundary determined by a level set function.
Specification(s): glued_bimaterial
Design: LevelSetCutUserObjectXFEMSingleVariableConstraint
Issue(s): #10421
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.1.2The XFEM module shall have the capability to calculate mechanical response in a composite material matrix with an inclusion with the location of the inclusion boundary and material properties applied to the matrix and inclusion determined by a prescribed level set function.
Specification(s): inclusion_bimaterial
Design: LevelSetCutUserObjectXFEMSingleVariableConstraint
Issue(s): #10421
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.6The XFEM module shall provide an ability to solve bi-material mechanics problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_bimaterials
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFourXFEMSingleVariableConstraint
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.8The XFEM module shall provide an ability to solve bi-material mechanics problems at finite strain where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_bimaterial_finite_strain
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFourXFEMSingleVariableConstraint
Issue(s): #15817
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.19The XFEM module shall accurately solve 1D, xy problems with a moving interface separating two discrete materials prescribed by a user defined level set function with problem results verified using the Method of Manufactured Solutions.
Specification(s): 1D_xy_discrete2mat
Design: LevelSetCutUserObjectXFEMSingleVariableConstraint
Issue(s): #13756
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.1The XFEM module shall provide an ability to apply a zero-jump, zero-flux-jump constraint across a propagating XFEM interface for one variable.
Specification(s): propagating_1field
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.2The XFEM module shall provide an ability to apply a zero-jump, zero-flux-jump constraint across a propagating XFEM interface for one variable in a problem with another variable that does not have a constraint across that interface.
Specification(s): propagating_2field_1constraint
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.3The XFEM module shall provide an ability to apply zero-jump, zero-flux-jump constraints across a propagating XFEM interface for two variables.
Specification(s): propagating_2field_2constraint
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.4The XFEM module shall provide an ability to apply a zero-jump, zero-flux-jump constraint on a stationary interface for one variable.
Specification(s): stationary_equal
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.5The XFEM module shall provide an ability to apply a zero-jump, nonzero-flux-jump (defined by a Real value) constraint on a stationary interface for one variable.
Specification(s): stationary_fluxjump
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.6The XFEM module shall provide an ability to apply a zero-jump, nonzero-flux-jump (defined by a function) constraint on a stationary interface for one variable.
Specification(s): stationary_fluxjump_func
Design: XFEMSingleVariableConstraint
Issue(s): #13756
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.7The XFEM module shall provide an ability to apply a nonzero-jump (defined by a Real value), zero-flux-jump constraint on a stationary interface for one variable.
Specification(s): stationary_jump
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.8The XFEM module shall provide an ability to apply a nonzero-jump (defined by a function), zero-flux-jump constraint on a stationary interface for one variable.
Specification(s): stationary_jump_func
Design: XFEMSingleVariableConstraint
Issue(s): #13756
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.9The XFEM module shall provide an ability to apply a nonzero-jump, nonzero-flux-jump constraint on a stationary interface for one variable.
Specification(s): stationary_jump_fluxjump
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.16.1The XFEM module shall provide an ability to apply a zero-jump, zero-flux-jump constraint across a stationary XFEM interface for one variable in 3D.
Specification(s): stationary_equal_3d
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.16.2The XFEM module shall provide an ability to apply a zero-jump, nonzero-flux-jump constraint across a stationary XFEM interface for one variable in 3D.
Specification(s): stationary_fluxjump_3d
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.16.3The XFEM module shall provide an ability to apply a nonzero-jump, zero-flux-jump constraint across a stationary XFEM interface for one variable in 3D.
Specification(s): stationary_jump_3d
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.16.4The XFEM module shall provide an ability to apply a nonzero-jump, nonzero-flux-jump constraint across a stationary XFEM interface for one variable in 3D.
Specification(s): stationary_jump_fluxjump_3d
Design: XFEMSingleVariableConstraint
Issue(s): #6572
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: LevelSetBiMaterialRankTwo
- 22.1.3The system shall have the capability to calculate the mechanical response in two glued, layered materials with the interface location and automatic differentiation material properties applied to on each side of the boundary determined by a level set function.
Specification(s): glued_ad_bimaterial
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFour
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.1.4The XFEM module shall have the capability to calculate mechanical response in a composite material matrix with an inclusion with the location of the inclusion boundary and material properties applied to the matrix and inclusion determined by a prescribed level set function using automatic differentiation.
Specification(s): inclusion_ad_bimaterial
Design: LevelSetBiMaterialRankTwo
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.6The XFEM module shall provide an ability to solve bi-material mechanics problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_bimaterials
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFourXFEMSingleVariableConstraint
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.7The XFEM module shall provide an ability to solve bi-material mechanics problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field, while using the automatic differentiation capability.
Specification(s): moving_ad_bimaterials
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFour
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.8The XFEM module shall provide an ability to solve bi-material mechanics problems at finite strain where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_bimaterial_finite_strain
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFourXFEMSingleVariableConstraint
Issue(s): #15817
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: LevelSetBiMaterialRankFour
- 22.1.3The system shall have the capability to calculate the mechanical response in two glued, layered materials with the interface location and automatic differentiation material properties applied to on each side of the boundary determined by a level set function.
Specification(s): glued_ad_bimaterial
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFour
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.6The XFEM module shall provide an ability to solve bi-material mechanics problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_bimaterials
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFourXFEMSingleVariableConstraint
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.7The XFEM module shall provide an ability to solve bi-material mechanics problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field, while using the automatic differentiation capability.
Specification(s): moving_ad_bimaterials
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFour
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.8The XFEM module shall provide an ability to solve bi-material mechanics problems at finite strain where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_bimaterial_finite_strain
Design: LevelSetBiMaterialRankTwoLevelSetBiMaterialRankFourXFEMSingleVariableConstraint
Issue(s): #15817
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: Checkpoint
- 22.2.1The XFEM module shall support outputting of checkpoint files.
Specification(s): checkpoint
Design: Checkpoint
Issue(s): #17063
Collection(s): FUNCTIONAL
Type(s): CheckFiles
- xfem: LineSegmentCutUserObject
- 22.3.1The XFEM module shall have the capability of cutting directly through multiple nodes of a single QUAD4 element in 2D.
Specification(s): corner_node_cut_twice
Design: LineSegmentCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.3.2The XFEM module shall be able to perform mesh cuts on any combination of the edges of elements and through elements including allowing cuts that go through the nodes on the same mesh.
Specification(s): corner_edge_cut
Design: LineSegmentCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.3.3The XFEM module shall have the capability of perfoming mesh cuts on the edges of elements such that only two new nodes are generated to separate the previously connected elements.
Specification(s): corner_node_cut
Design: LineSegmentCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.3.4The XFEM module shall be capable of propagating an existing crack front along a prescribed cut in 2D.
Specification(s): notch
Design: LineSegmentCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.4.1The XFEM module shall have the capability to include near-tip enrichment functions in 2D mechanics simulations.
Specification(s): crack_tip_enrichment_edge_2d
Design: LineSegmentCutUserObjectCrackTipEnrichmentStressDivergenceTensors
Issue(s): #10042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.5.1The XFEM Module shall have the capability to run 2D diffusion problems with prescribed values on the domain boundary (Dirichlet conditions) with a fixed position discontinuous interface through mesh elements.
Specification(s): diffusion_xfem
Design: LineSegmentCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.5.2The XFEM Module shall have the capability to run 2D diffusion problems with prescribed solution values on the domain boundary (Dirichlet conditions) and prescribed boundary flux values (Neumann conditions) with a fixed position discontinuous interface defined by a geometric cut user object.
Specification(s): diffusion_xfem_flux_bc
Design: LineSegmentCutUserObject
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: CrackTipEnrichmentStressDivergenceTensors
- 22.4.1The XFEM module shall have the capability to include near-tip enrichment functions in 2D mechanics simulations.
Specification(s): crack_tip_enrichment_edge_2d
Design: LineSegmentCutUserObjectCrackTipEnrichmentStressDivergenceTensors
Issue(s): #10042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.4.2The XFEM module shall have the capability to include near-tip enrichment functions in 3D mechanics simulations.
Specification(s): crack_tip_enrichment_penny_crack_3d
Design: CircleCutUserObjectCrackTipEnrichmentStressDivergenceTensors
Issue(s): #10042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: CircleCutUserObject
- 22.4.2The XFEM module shall have the capability to include near-tip enrichment functions in 3D mechanics simulations.
Specification(s): crack_tip_enrichment_penny_crack_3d
Design: CircleCutUserObjectCrackTipEnrichmentStressDivergenceTensors
Issue(s): #10042
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.17.6The XFEM system shall permit computation of fracture domain integrals in 3D mechanics problems where a stationary embedded circular crack is defined by a cutting plane geometry and points along the crack front for the the domain integral
- explicitly specified.
- are provided by a class that derives from CrackFrontPointsProvider.
Specification(s): penny_crack/explicit_points, penny_crack/CrackFrontPointsProvider
Design: DomainIntegral SystemCircleCutUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: XFEM
- 22.6.1The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 2D using TRI6 elements.
Specification(s): diffusion_2d_tri6
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.2The XFEM module shall permit modeling of discontinuities represented with XFEM with third-order elements in 2D using TRI7 elements.
Specification(s): diffusion_2d_tri7
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.3The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 2D using QUAD8 elements.
Specification(s): diffusion_2d_quad8
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.4The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 2D using QUAD9 elements.
Specification(s): diffusion_2d_quad9
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.5The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 2D using QUAD9 elements when the XFEM cutting plane is prescribed using a level set field.
Specification(s): diffusion_quad9_levelsetcut
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.6The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 3D using TET10 elements when the XFEM cutting plane is prescribed using a level set field.
Specification(s): diffusion_3d_tet10
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.7The XFEM module shall permit modeling of discontinuities represented with XFEM with third-order elements in 3D using TET14 elements when the XFEM cutting plane is prescribed using a level set field.
Specification(s): diffusion_3d_tet14
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.8The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 3D using HEX20 elements when the XFEM cutting plane is prescribed using a level set field.
Specification(s): diffusion_3d_hex20
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.9The XFEM module shall permit modeling of discontinuities represented with XFEM with second-order elements in 3D using HEX27 elements when the XFEM cutting plane is prescribed using a level set field.
Specification(s): diffusion_3d_hex27
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.10The XFEM module shall permit modeling of branching of discontinuities represented with XFEM by sequentially cutting second-order elements in 2D using QUAD8 elements.
Specification(s): square_branch_quad8_2d
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.11The XFEM module shall permit modeling of branching of discontinuities represented with XFEM by sequentially cutting second-order elements in 2D using QUAD9 elements.
Specification(s): square_branch_quad9_2d
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.12The XFEM module shall permit modeling of branching of discontinuities represented with XFEM by sequentially cutting second-order elements in 2D using TRI6 elements.
Specification(s): square_branch_tri6_2d
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.6.13The XFEM module shall permit modeling of branching of discontinuities represented with XFEM by sequentially cutting third-order elements in 2D using TRI7 elements.
Specification(s): square_branch_tri7_2d
Design: XFEM
Issue(s): #8709
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.7.1The XFEM module shall retain the values of auxiliary variables on child nodes and elements after running the cutting algorithm, and initialize solution variables on newly created nodes with values from parent nodes in parallel
Specification(s): init_solution_propagation
Design: XFEM
Issue(s): #8763
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.8.1The XFEM module shall permit applying a glued constraint across the XFEM interface for 2D solid mechanics problems.
Specification(s): glued_penalty
Design: XFEM
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.10.1The XFEM module shall permit the use of the moment fitting algorithm to compute integration point weights for partial elements on 2D solid mechanics problems
Specification(s): solid_mechanics_moment_fitting
Design: XFEM
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.10.2The XFEM module shall permit the use of the moment fitting algorithm to compute integration point weights for partial elements on 2D problems with a 4-point integration rule
Specification(s): diffusion_moment_fitting_four_points
Design: XFEM
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.10.3The XFEM module shall permit the use of the moment fitting algorithm to compute integration point weights for partial elements on 2D problems with a 6-point integration rule
Specification(s): diffusion_moment_fitting_six_points
Design: XFEM
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.2The XFEM module shall not output summary information on mesh changes when debug_output_level=0
Specification(s): moving_interface_debug_output_0
Design: XFEM
Issue(s): #13666
Collection(s): FUNCTIONAL
Type(s): RunApp
- 22.11.3The XFEM module shall output summary information on mesh changes when debug_output_level=1
Specification(s): moving_interface_debug_output_1
Design: XFEM
Issue(s): #13666
Collection(s): FUNCTIONAL
Type(s): RunApp
- 22.11.4The XFEM module shall output detailed information on mesh changes when debug_output_level=2
Specification(s): moving_interface_debug_output_2
Design: XFEM
Issue(s): #13666
Collection(s): FUNCTIONAL
Type(s): RunApp
- 22.11.5The XFEM module shall output detailed information on mesh changes when debug_output_level=3
Specification(s): moving_interface_debug_output_3
Design: XFEM
Issue(s): #13666
Collection(s): FUNCTIONAL
Type(s): RunApp
- 22.14.1The XFEM module shall properly integrate quantities on sides of cut elements that are intersected by the cutting plane in 2D
Specification(s): side_integral_xfem
Design: XFEM
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.14.2The XFEM module shall properly integrate quantities on sides of cut elements that are intersected by the cutting plane in 3D
Specification(s): side_integral_3d_xfem
Design: XFEM
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.17.8The XFEM system shall permit branched cracks to be represented in 2D by sequentially cutting a 4-noded quadrilateral element by two prescribed evolving cutting planes
Specification(s): square_branch_quad_2d
Design: XFEM
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.17.9The XFEM system shall permit branched cracks to be represented in 2D by sequentially cutting a 3-noded triangle element by two prescribed evolving cutting planes
Specification(s): square_branch_tri_2d
Design: XFEM
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.17.10The XFEM system shall provide an accessor function to the crack_tip_origin_direction_map
Specification(s): test_crack_counter
Design: XFEM
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- xfem: MeshCut2DFunctionUserObject
- 22.9.1The XFEM module shall represent a propagating crack in a 2D mechanics model with XFEM, where the crack is defined using a topologically defined surface cutting mesh by MeshCut2DFunctionUserObject
- and crack growth and direction is computed by a fracture integral.
- and crack growth and direction is computed by a fracture integral or maximum stress criterion.
- and crack growth is defined by a function. The average crack tip stress changes with crack orientation and properly accounts volume averaging near surfaces.
Specification(s): 2D/k_growth, 2D/k_stress_growth, 2D/stress_check
Design: MeshCut2DFunctionUserObject
Collection(s): FUNCTIONAL
Type(s): ExodiffCSVDiff
- xfem: LineSegmentCutSetUserObject
- 22.11.1The XFEM module shall provide an ability to specify whether an XFEM cut surface should be healed independently for individual interfaces
Specification(s): moving_interface
Design: LineSegmentCutSetUserObjectLevelSetCutUserObject
Issue(s): #11259
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: CutElementSubdomainModifier
- 22.11.9The XFEM module shall provide an ability to modify subdomain IDs based on an XFEM interface.
Specification(s): moving_bimaterial_finite_strain_esm
Design: CutElementSubdomainModifier
Issue(s): #15817
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: LevelSetBiMaterialReal
- 22.11.10The XFEM module shall provide an ability to solve bi-material diffusion problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_diffusion
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceLevelSetCutUserObject
Issue(s): #11749
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.11The XFEM module shall provide an ability to solve bi-material diffusion problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field, while using automatic differentiation.
Specification(s): moving_ad_diffusion
Design: LevelSetBiMaterialReal
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.12The XFEM module shall provide an ability to solve a simple 2d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_2d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut2DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.13The XFEM module shall provide an ability to solve a simple 3d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_3d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.14The XFEM module shall provide an ability to solve a 2d simple phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface using the automatic differentiation capability.
Specification(s): ad_phase_transition_2d
Design: LevelSetBiMaterialReal
Issue(s): #15437
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: XFEMEqualValueAtInterface
- 22.11.10The XFEM module shall provide an ability to solve bi-material diffusion problems where a moving material interface is defined by an XFEM surface, which is defined by a prescribed level set field.
Specification(s): moving_diffusion
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceLevelSetCutUserObject
Issue(s): #11749
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.12The XFEM module shall provide an ability to solve a simple 2d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_2d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut2DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.13The XFEM module shall provide an ability to solve a simple 3d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_3d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.15.10The XFEM module shall provide an ability to apply a two-sided equal value constraint on a stationary interface for one variable.
Specification(s): equal_value
Design: XFEMEqualValueAtInterface
Issue(s): #11750
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: MeshCutLevelSetAux
- 22.11.12The XFEM module shall provide an ability to solve a simple 2d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_2d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut2DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.13The XFEM module shall provide an ability to solve a simple 3d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_3d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: XFEMPhaseTransitionMovingInterfaceVelocity
- 22.11.12The XFEM module shall provide an ability to solve a simple 2d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_2d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut2DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.13The XFEM module shall provide an ability to solve a simple 3d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_3d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: NodeValueAtXFEMInterface
- 22.11.12The XFEM module shall provide an ability to solve a simple 2d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_2d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut2DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.13The XFEM module shall provide an ability to solve a simple 3d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_3d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: InterfaceMeshCut2DUserObject
- 22.11.12The XFEM module shall provide an ability to solve a simple 2d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_2d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut2DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.15The XFEM module shall provide an ability to cut one block with a moving circle surface mesh in 2D.
Specification(s): cut_mesh_2d
Design: InterfaceMeshCut2DUserObject
Issue(s): #17797
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: InterfaceMeshCut3DUserObject
- 22.11.13The XFEM module shall provide an ability to solve a simple 3d phase transition problem in which the phase boundary is defined by and XFEM surface and the interface velocity depends on the jump of variables and gradients across the interface.
Specification(s): phase_transition_3d
Design: LevelSetBiMaterialRealXFEMEqualValueAtInterfaceMeshCutLevelSetAuxXFEMPhaseTransitionMovingInterfaceVelocityNodeValueAtXFEMInterfaceInterfaceMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.11.16The XFEM module shall provide an ability to cut one block with a moving cylinder surface mesh in 3D.
Specification(s): cut_mesh_3d
Design: InterfaceMeshCut3DUserObject
Issue(s): #17797
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: MeshCut2DRankTwoTensorNucleation
- 22.12.1The system shall nucleate and grow edge and bulk cracks based on a nucleation threshold given by an auxvariable.
Specification(s): nucleateGrowCrack
Design: MeshCut2DRankTwoTensorNucleation
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 22.12.2The system shall not nucleate edge cracks within a nucleation_radius of other cracks.
Specification(s): filterNucleation
Design: MeshCut2DRankTwoTensorNucleation
Issue(s): #24714
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 22.12.3The system shall nucleate bulk and edge cracks that cut a single element if no nucleation length is given.
Specification(s): nucleateEdgeBulkCrack
Design: MeshCut2DRankTwoTensorNucleation
Issue(s): #27054
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 22.12.4The system shall error if the nucleation length is smaller than the element being cut.
Specification(s): errorSmallCut
Design: MeshCut2DRankTwoTensorNucleation
Issue(s): #27054
Collection(s): FUNCTIONALFAILURE_ANALYSIS
Type(s): RunException
- 22.12.5The system shall suppress the error if the nucleation length is smaller than the element being cut and nucleate a cut across the single element.
Specification(s): suppressErrorSmallCut
Design: MeshCut2DRankTwoTensorNucleation
Issue(s): #27054
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- xfem: XFEMPressure
- 22.13.1The XFEM module shall permit application of pressure boundary conditions to XFEM cut surfaces in 2D
Specification(s): edge_2d_pressure
Design: XFEMPressure
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.13.2The XFEM module shall permit application of pressure boundary conditions to XFEM cut surfaces in 3D
Specification(s): edge_3d_pressure
Design: XFEMPressure
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.13.3The XFEM module shall permit application of pressure boundary conditions to inclined XFEM cut surfaces in 2D
Specification(s): inclined_edge_2d_pressure
Design: XFEMPressure
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.13.4The XFEM module shall permit application of pressure boundary conditions to XFEM cut surfaces in 2D finite deformation simulations
Specification(s): 2d_pressure_displaced_mesh
Design: XFEMPressure
Issue(s): #6320
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: XFEMRankTwoTensorMarkerUserObject
- 22.17.1The XFEM module shall represent a propagating crack in a 2D mechanics problem in which crack growth occurs when the average stress in the element at the crack tip exceeds a critical value.
Specification(s): crack_propagation_ave
Design: XFEMRankTwoTensorMarkerUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.17.2The XFEM module shall represent a propagating crack in a 2D mechanics problem in which crack growth occurs when the average stress in the element at the crack tip exceeds a critical value defined by the value of a field variable.
Specification(s): crack_propagation_var
Design: XFEMRankTwoTensorMarkerUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.17.3The XFEM module shall represent a propagating crack in a 2D mechanics problem in which crack growth occurs when the stress at any of the quadrature points in the element at the crack tip exceeds a critical value defined by the value of a field variable.
Specification(s): crack_propagation_single_point
Design: XFEMRankTwoTensorMarkerUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: RectangleCutUserObject
- 22.17.4The XFEM module shall permit definition of a stationary crack in a 3D mechanics model with XFEM, where the crack is defined using a rectangular cutting plane by RectangleCutUserObject
Specification(s): edge_crack_3d
Design: RectangleCutUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: CrackMeshCut3DUserObject
- 22.17.5The XFEM module shall represent a propagating crack in a 3D mechanics model with XFEM, where the crack is defined using a topological surface cutting mesh by CrackMeshCut3DUserObject and allowed to propagate with
- growth speeds determined by the fatigue cracking Paris law, or
- growth directions determined by computing the maximum hoop stress law using interaction integrals, or
- growth directions determined by an parsed function.
Specification(s): mesh_cutter_3d/fatigue, mesh_cutter_3d/mhs, mesh_cutter_3d/function
Design: CrackMeshCut3DUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: DomainIntegral System
- 22.17.6The XFEM system shall permit computation of fracture domain integrals in 3D mechanics problems where a stationary embedded circular crack is defined by a cutting plane geometry and points along the crack front for the the domain integral
- explicitly specified.
- are provided by a class that derives from CrackFrontPointsProvider.
Specification(s): penny_crack/explicit_points, penny_crack/CrackFrontPointsProvider
Design: DomainIntegral SystemCircleCutUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: EllipseCutUserObject
- 22.17.7The XFEM module shall permit definition of a stationary crack in a 3D mechanics model with XFEM, where the crack is defined using an elliptical cutting plane by EllipseCutUserObject
Specification(s): elliptical_crack
Design: EllipseCutUserObject
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: XFEMCutSwitchingMaterial
- 22.18.1The XFEM module shall provide an ability to switch materials for one stationary cut.
Specification(s): one_cut_stationary
Design: XFEMCutSwitchingMaterialCutSubdomainIDAux
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.2The XFEM module shall provide an ability to switch materials for one moving cut.
Specification(s): one_cut_moving
Design: XFEMCutSwitchingMaterialCutSubdomainIDAux
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.3The XFEM module shall allow switching materials based on the side of an interface for a single moving cut defined using a mesh as the cutting object.
Specification(s): one_cut_moving_using_mesh_cut
Design: XFEMCutSwitchingMaterialCutSubdomainIDAux
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.4The XFEM module shall provide an ability to switch materials for two stationary cuts.
Specification(s): two_cuts_stationary
Design: XFEMCutSwitchingMaterialCutSubdomainIDAuxComboCutUserObject
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.5The XFEM module shall provide an ability to switch materials for two moving cuts.
Specification(s): two_cuts_moving
Design: XFEMCutSwitchingMaterialCutSubdomainIDAuxComboCutUserObject
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: CutSubdomainIDAux
- 22.18.1The XFEM module shall provide an ability to switch materials for one stationary cut.
Specification(s): one_cut_stationary
Design: XFEMCutSwitchingMaterialCutSubdomainIDAux
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.2The XFEM module shall provide an ability to switch materials for one moving cut.
Specification(s): one_cut_moving
Design: XFEMCutSwitchingMaterialCutSubdomainIDAux
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.3The XFEM module shall allow switching materials based on the side of an interface for a single moving cut defined using a mesh as the cutting object.
Specification(s): one_cut_moving_using_mesh_cut
Design: XFEMCutSwitchingMaterialCutSubdomainIDAux
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.4The XFEM module shall provide an ability to switch materials for two stationary cuts.
Specification(s): two_cuts_stationary
Design: XFEMCutSwitchingMaterialCutSubdomainIDAuxComboCutUserObject
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.5The XFEM module shall provide an ability to switch materials for two moving cuts.
Specification(s): two_cuts_moving
Design: XFEMCutSwitchingMaterialCutSubdomainIDAuxComboCutUserObject
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- xfem: ComboCutUserObject
- 22.18.4The XFEM module shall provide an ability to switch materials for two stationary cuts.
Specification(s): two_cuts_stationary
Design: XFEMCutSwitchingMaterialCutSubdomainIDAuxComboCutUserObject
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff
- 22.18.5The XFEM module shall provide an ability to switch materials for two moving cuts.
Specification(s): two_cuts_moving
Design: XFEMCutSwitchingMaterialCutSubdomainIDAuxComboCutUserObject
Issue(s): #17041
Collection(s): FUNCTIONAL
Type(s): Exodiff