MeshSideSetGenerator

Add lower dimensional elements along the faces contained in a side set to set up mixed dimensional problems

Overview

Element sides are not explicitly meshed in MOOSE/libMesh, i.e. no shape functions live on the lower dimensional sides. To run kernels on lower dimensional manifolds they need to be explicitly meshed. That can be accomplished in a mesh generation tool like Cubit, or using this MeshGenerator.

In 3D simulations, the appropriate 2D elements (for 2D simulations, 1D elements) will be meshed in at selected side sets (boundaries). The choice of lower dimensional side elements is dictated by the higher dimensional volume element types.

Coupling between side and volume meshes

The newly-generated lower dimensional side elements will share nodes with the higher dimensional volume's elements. Coupling to the variables from volume elements "just works".

Coupling in the other direction is not as straight forward. The lower dimensional variables exist on some nodes of the adjacent volume elements. The volume kernels will run on the volume quadrature points at which tapered off values from the adjacent edges can be found. Use at your own risk.

Input Parameters

  • block_idSubdomain id to set for the new elements along the boundary

    C++ Type:unsigned short

    Controllable:No

    Description:Subdomain id to set for the new elements along the boundary

  • boundariesThe names of the boundaries to mesh

    C++ Type:std::vector<BoundaryName>

    Controllable:No

    Description:The names of the boundaries to mesh

  • inputThe mesh we want to modify

    C++ Type:MeshGeneratorName

    Controllable:No

    Description:The mesh we want to modify

Required Parameters

  • block_nameSubdomain name to set for the new elements along the boundary (optional)

    C++ Type:SubdomainName

    Controllable:No

    Description:Subdomain name to set for the new elements along the boundary (optional)

  • 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)

Optional Parameters

  • control_tagsAdds user-defined labels for accessing object parameters via control logic.

    C++ Type:std::vector<std::string>

    Controllable:No

    Description:Adds user-defined labels for accessing object parameters via control logic.

  • enableTrueSet the enabled status of the MooseObject.

    Default:True

    C++ Type:bool

    Controllable:No

    Description:Set the enabled status of the MooseObject.

Advanced Parameters

Input Files