本文整理汇总了C++中MeshBase::element_ptr_range方法的典型用法代码示例。如果您正苦于以下问题:C++ MeshBase::element_ptr_range方法的具体用法?C++ MeshBase::element_ptr_range怎么用?C++ MeshBase::element_ptr_range使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MeshBase
的用法示例。
在下文中一共展示了MeshBase::element_ptr_range方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: write_interior_elems
void UCDIO::write_interior_elems(std::ostream & out_stream,
const MeshBase & mesh)
{
// 1-based element number for UCD
unsigned int e=1;
// Write element information
for (const auto & elem : mesh.element_ptr_range())
{
libmesh_assert (out_stream.good());
// Look up the corresponding UCD element type in the static map.
const ElemType etype = elem->type();
std::map<ElemType, std::string>::iterator it = _writing_element_map.find(etype);
if (it == _writing_element_map.end())
libmesh_error_msg("Error: Unsupported ElemType " << etype << " for UCDIO.");
// Write the element's subdomain ID as the UCD "material_id".
out_stream << e++ << " " << elem->subdomain_id() << " " << it->second << "\t";
elem->write_connectivity(out_stream, UCD);
}
}