- inputThe mesh we want to modifyC++ Type:MeshGeneratorName Controllable:No Description:The mesh we want to modify 
BreakMeshByElementGenerator
Break all element-element interfaces in the specified subdomains.
Overview
The BreakMeshByElementGenerator is used to break all element-element interfaces in specified subdomains. All element-element interfaces are grouped into a boundary of user's choice.
Example input syntax
In this example input file, we break all element-element interfaces in subdomains 1 and 2.
[Mesh<<<{"href": "../../syntax/Mesh/index.html"}>>>]
  [gmg]
    type = GeneratedMeshGenerator<<<{"description": "Create a line, square, or cube mesh with uniformly spaced or biased elements.", "href": "GeneratedMeshGenerator.html"}>>>
    dim<<<{"description": "The dimension of the mesh to be generated"}>>> = 2
    xmax<<<{"description": "Upper X Coordinate of the generated mesh"}>>> = 2
    ymax<<<{"description": "Upper Y Coordinate of the generated mesh"}>>> = 2
    nx<<<{"description": "Number of elements in the X direction"}>>> = 4
    ny<<<{"description": "Number of elements in the Y direction"}>>> = 4
  []
  [add_subdomain_1]
    type = SubdomainBoundingBoxGenerator<<<{"description": "Changes the subdomain ID of elements either (XOR) inside or outside the specified box to the specified ID.", "href": "SubdomainBoundingBoxGenerator.html"}>>>
    input<<<{"description": "The mesh we want to modify"}>>> = gmg
    block_id<<<{"description": "Subdomain id to set for inside/outside the bounding box"}>>> = 1
    bottom_left<<<{"description": "The bottom left point (in x,y,z with spaces in-between)."}>>> = '1 0 0'
    top_right<<<{"description": "The bottom left point (in x,y,z with spaces in-between)."}>>> = '2 1 0'
  []
  [add_subdomain_2]
    type = SubdomainBoundingBoxGenerator<<<{"description": "Changes the subdomain ID of elements either (XOR) inside or outside the specified box to the specified ID.", "href": "SubdomainBoundingBoxGenerator.html"}>>>
    input<<<{"description": "The mesh we want to modify"}>>> = add_subdomain_1
    block_id<<<{"description": "Subdomain id to set for inside/outside the bounding box"}>>> = 2
    bottom_left<<<{"description": "The bottom left point (in x,y,z with spaces in-between)."}>>> = '1 1 0'
    top_right<<<{"description": "The bottom left point (in x,y,z with spaces in-between)."}>>> = '2 2 0'
  []
  [add_subdomain_3]
    type = SubdomainBoundingBoxGenerator<<<{"description": "Changes the subdomain ID of elements either (XOR) inside or outside the specified box to the specified ID.", "href": "SubdomainBoundingBoxGenerator.html"}>>>
    input<<<{"description": "The mesh we want to modify"}>>> = add_subdomain_2
    block_id<<<{"description": "Subdomain id to set for inside/outside the bounding box"}>>> = 3
    bottom_left<<<{"description": "The bottom left point (in x,y,z with spaces in-between)."}>>> = '0 1 0'
    top_right<<<{"description": "The bottom left point (in x,y,z with spaces in-between)."}>>> = '1 2 0'
  []
  [explode]
    type = BreakMeshByElementGenerator<<<{"description": "Break all element-element interfaces in the specified subdomains.", "href": "BreakMeshByElementGenerator.html"}>>>
    input<<<{"description": "The mesh we want to modify"}>>> = add_subdomain_3
    subdomains<<<{"description": "The list of subdomain IDs to explode.  Leave unset to explode all subdomains."}>>> = '1 2'
    interface_name<<<{"description": "The boundary name containing all broken element-element interfaces."}>>> = czm
  []
[]Input Parameters
- interface_nameelement_boundariesThe boundary name containing all broken element-element interfaces.Default:element_boundaries C++ Type:BoundaryName Controllable:No Description:The boundary name containing all broken element-element interfaces. 
- interface_sides1Whether to add no interface boundary, a 1-sided boundary (facing from lower to higher element id), or a 2-sided boundaryDefault:1 C++ Type:unsigned int Controllable:No Description:Whether to add no interface boundary, a 1-sided boundary (facing from lower to higher element id), or a 2-sided boundary 
- subdomainsThe list of subdomain IDs to explode. Leave unset to explode all subdomains.C++ Type:std::vector<unsigned short> Controllable:No Description:The list of subdomain IDs to explode. Leave unset to explode all subdomains. 
Optional Parameters
- enableTrueSet the enabled status of the MooseObject.Default:True C++ Type:bool Controllable:No Description:Set the enabled status of the MooseObject. 
- save_with_nameKeep the mesh from this mesh generator in memory with the name specifiedC++ Type:std::string Controllable:No Description:Keep the mesh from this mesh generator in memory with the name specified 
Advanced Parameters
- nemesisFalseWhether or not to output the mesh file in the nemesisformat (only if output = true)Default:False C++ Type:bool Controllable:No Description:Whether or not to output the mesh file in the nemesisformat (only if output = true) 
- outputFalseWhether or not to output the mesh file after generating the meshDefault:False C++ Type:bool Controllable:No Description:Whether or not to output the mesh file after generating the mesh 
- show_infoFalseWhether or not to show mesh info after generating the mesh (bounding box, element types, sidesets, nodesets, subdomains, etc)Default:False C++ Type:bool Controllable:No Description:Whether or not to show mesh info after generating the mesh (bounding box, element types, sidesets, nodesets, subdomains, etc)