26 std::size_t
const global_component_id);
32 std::size_t
const global_component_id);
37 std::size_t
const mesh_item_id,
45 std::vector<GlobalIndexType>& indices);
52 LocalToGlobalIndexMap
const& dof_table);
59template <
typename Functor>
71 std::fill(begin(output_vector), end(output_vector), 0);
73 int const n_components =
75 for (
int component = 0; component < n_components; ++component)
77 auto const& mesh_subset =
78 local_to_global_index_map.
getMeshSubset(variable_id, component);
82 auto const node_id = l.item_id;
84 l, variable_id, component);
85 double const value = input_vector[input_index];
95template <
typename Functor>
97 GlobalVector const& input_vector_on_bulk_mesh,
int const variable_id,
100 std::vector<std::size_t>
const& map_submesh_node_id_to_bulk_mesh_node_id,
101 Functor map_function)
109 std::fill(begin(output_vector_on_submesh), end(output_vector_on_submesh),
112 int const n_components =
114 for (
int component = 0; component < n_components; ++component)
116 auto const& mesh_subset =
117 local_to_global_index_map.
getMeshSubset(variable_id, component);
118 auto const mesh_id = mesh_subset.
getMeshID();
120 for (std::size_t submesh_node_id = 0;
121 submesh_node_id < map_submesh_node_id_to_bulk_mesh_node_id.size();
124 std::size_t
const bulk_node_id =
125 map_submesh_node_id_to_bulk_mesh_node_id[submesh_node_id];
128 auto const input_index = local_to_global_index_map.
getGlobalIndex(
129 l, variable_id, component);
138 double const value = input_vector_on_bulk_mesh[input_index];
140 output_vector_on_submesh.
getComponent(submesh_node_id, component) =
147 std::size_t
const mesh_item_id,
148 std::vector<NumLib::LocalToGlobalIndexMap const*>
const& dof_tables,
149 std::vector<GlobalVector*>
const& x);
Global vector based on Eigen vector.
std::size_t getMeshID() const
return this mesh ID
PROP_VAL_TYPE & getComponent(std::size_t tuple_index, int component)
Returns the value for the given component stored in the given tuple.
MathLib::RowColumnIndices< GlobalIndexType > RowColumnIndices
GlobalIndexType getGlobalIndex(MeshLib::Location const &l, int const variable_id, int const component_id) const
int getNumberOfVariableComponents(int variable_id) const
MeshLib::MeshSubset const & getMeshSubset(int const variable_id, int const component_id) const
static constexpr NUMLIB_EXPORT GlobalIndexType const nop
void setLocalAccessibleVector(PETScVector const &x)
auto meshLocations(Mesh const &mesh, MeshItemType const item_type)
void transformVariableFromGlobalVector(GlobalVector const &input_vector, int const variable_id, NumLib::LocalToGlobalIndexMap const &local_to_global_index_map, MeshLib::PropertyVector< double > &output_vector, Functor map_function)
double getNodalValue(GlobalVector const &x, MeshLib::Location const &location, NumLib::LocalToGlobalIndexMap const &dof_table, std::size_t const global_component_id)
std::vector< GlobalIndexType > getIndices(std::size_t const mesh_item_id, NumLib::LocalToGlobalIndexMap const &dof_table)
NumLib::LocalToGlobalIndexMap::RowColumnIndices getRowColumnIndices(std::size_t const id, NumLib::LocalToGlobalIndexMap const &dof_table, std::vector< GlobalIndexType > &indices)
Eigen::VectorXd getLocalX(std::size_t const mesh_item_id, std::vector< NumLib::LocalToGlobalIndexMap const * > const &dof_tables, std::vector< GlobalVector * > const &x)
double getNonGhostNodalValue(GlobalVector const &x, MeshLib::Location const &location, NumLib::LocalToGlobalIndexMap const &dof_table, std::size_t const global_component_id)
double norm(GlobalVector const &x, unsigned const global_component, MathLib::VecNormType norm_type, LocalToGlobalIndexMap const &dof_table)