https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SurfaceMeshBySubdomainBuilder.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12#include "BoundaryMeshBuilder.h"
13
14#include <unordered_map>
15
22{
23public:
26
27 virtual void initialSetup() override;
28
30 const std::unordered_map<subdomain_id_type, SurfaceElementSet> &
35
36protected:
40
41 std::unordered_map<subdomain_id_type, SurfaceElementSet> _sets_by_subdomain;
42};
const InputParameters & parameters() const
BoundaryMeshBuilder specialization that groups the surface elements by subdomain, building one Surfac...
const std::unordered_map< subdomain_id_type, SurfaceElementSet > & getSurfaceElementSetsBySubdomain() const
Per-subdomain SurfaceElementSets. Valid after initialSetup().
std::unordered_map< subdomain_id_type, SurfaceElementSet > _sets_by_subdomain
void buildSetsBySubdomain()
Builds one SurfaceElementSet per subdomain, independent of the base class's whole-mesh set.