20 std::size_t bulk_property_number_of_components,
21 unsigned const integration_order)
23 DBUG(
"Create local balance assemblers.");
28 auto mesh_subset_all_nodes = std::make_unique<MeshLib::MeshSubset>(
29 boundary_mesh, boundary_mesh.
getNodes());
32 std::vector<MeshLib::MeshSubset> all_mesh_subsets;
33 std::generate_n(std::back_inserter(all_mesh_subsets),
34 bulk_property_number_of_components,
35 [&]() {
return *mesh_subset_all_nodes; });
38 auto dof_table = std::make_unique<NumLib::LocalToGlobalIndexMap const>(
41 auto const bulk_element_ids =
42 boundary_mesh.
getProperties().template getPropertyVector<std::size_t>(
45 auto const bulk_face_ids =
46 boundary_mesh.
getProperties().template getPropertyVector<std::size_t>(
58 std::vector<GlobalVector*>
const& x,
62 std::vector<std::size_t>
const& active_element_ids,
63 std::function<Eigen::Vector3d(
65 std::vector<GlobalVector*>
const&)>
const& getFlux)
67 DBUG(
"Integrate SurfaceFlux.");
71 active_element_ids, x, balance, t, bulk_mesh, getFlux);
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
bool isAxiallySymmetric() const
std::vector< Node * > const & getNodes() const
Get the nodes-vector for the mesh.
std::vector< Element * > const & getElements() const
Get the element-vector for the mesh.
unsigned getDimension() const
Returns the dimension of the mesh (determined by the maximum dimension over all elements).
Properties & getProperties()
virtual void integrate(std::size_t const element_id, std::vector< GlobalVector * > const &x, MeshLib::PropertyVector< double > &specific_flux, double const t, MeshLib::Mesh const &bulk_mesh, std::function< Eigen::Vector3d(std::size_t const, MathLib::Point3d const &, double const, std::vector< GlobalVector * > const &)>)=0
void integrate(std::vector< GlobalVector * > const &x, MeshLib::PropertyVector< double > &balance, double const t, MeshLib::Mesh const &bulk_mesh, std::vector< std::size_t > const &active_element_ids, std::function< Eigen::Vector3d(std::size_t const, MathLib::Point3d const &, double const, std::vector< GlobalVector * > const &)> const &getFlux)
SurfaceFlux(MeshLib::Mesh &boundary_mesh, std::size_t bulk_property_number_of_components, unsigned const integration_order)
std::vector< std::unique_ptr< SurfaceFluxLocalAssemblerInterface > > _local_assemblers
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
@ BY_LOCATION
Ordering data by spatial location.
void createLocalAssemblers(std::vector< MeshLib::Element * > const &mesh_elements, NumLib::LocalToGlobalIndexMap const &dof_table, std::vector< std::unique_ptr< LocalAssemblerInterface > > &local_assemblers, ProviderOrOrder const &provider_or_order, ExtraCtorArgs &&... extra_ctor_args)
static void executeSelectedMemberOnDereferenced(Method method, Container const &container, std::vector< std::size_t > const &active_container_ids, Args &&... args)