Main interface class to MOAB. More...
#include "moab/Interface.hpp"
Classes | |
class | HONodeAddedRemoved |
function object for recieving events from MB of higher order nodes added to entities More... | |
Public Types | |
enum | { INTERSECT , UNION } |
Enumerated type used in get_adjacencies() and other functions. More... | |
Interface | |
Interface () | |
constructor More... | |
virtual | ~Interface () |
destructor More... | |
virtual EntityHandle | get_root_set ()=0 |
return the entity set representing the whole mesh More... | |
virtual ErrorCode | query_interface_type (const std::type_info &iface_type, void *&iface)=0 |
Get a pointer to an internal MOAB interface. More... | |
template<class IFace > | |
ErrorCode | query_interface (IFace *&ptr) |
Get a pointer to an internal MOAB interface. More... | |
virtual ErrorCode | release_interface_type (const std::type_info &iface_type, void *iface)=0 |
Release reference to MB interface. More... | |
template<class IFace > | |
ErrorCode | release_interface (IFace *interface) |
constructor More... | |
virtual float | api_version (std::string *version_string=NULL) |
Release reference to MB interface. More... | |
virtual float | impl_version (std::string *version_string=NULL)=0 |
Returns the major.minor version number of the implementation. More... | |
Type and id | |
virtual EntityType | type_from_handle (const EntityHandle handle) const =0 |
Returns the entity type of an EntityHandle. More... | |
virtual EntityID | id_from_handle (const EntityHandle handle) const =0 |
Returns the id from an EntityHandle. More... | |
virtual int | dimension_from_handle (const EntityHandle handle) const =0 |
Returns the topological dimension of an entity. More... | |
virtual ErrorCode | handle_from_id (const EntityType type, const EntityID, EntityHandle &handle) const =0 |
Gets an entity handle from the data base, if it exists, according to type and id. More... | |
Mesh input/output | |
virtual ErrorCode | load_mesh (const char *file_name, const int *active_block_id_list=NULL, const int num_blocks=0)=0 |
Loads a mesh file into the database. More... | |
virtual ErrorCode | load_file (const char *file_name, const EntityHandle *file_set=0, const char *options=0, const char *set_tag_name=0, const int *set_tag_values=0, int num_set_tag_values=0)=0 |
Load or import a file. More... | |
virtual ErrorCode | write_mesh (const char *file_name, const EntityHandle *output_list=NULL, const int num_sets=0)=0 |
Writes mesh to a file. More... | |
virtual ErrorCode | write_file (const char *file_name, const char *file_type=0, const char *options=0, const EntityHandle *output_sets=0, int num_output_sets=0, const Tag *tag_list=0, int num_tags=0)=0 |
Write or export a file. More... | |
virtual ErrorCode | write_file (const char *file_name, const char *file_type, const char *options, const Range &output_sets, const Tag *tag_list=0, int num_tags=0)=0 |
Write or export a file. More... | |
virtual ErrorCode | delete_mesh ()=0 |
Deletes all mesh entities from this MB instance. More... | |
Coordinates and dimensions | |
virtual ErrorCode | get_vertex_coordinates (std::vector< double > &coords) const =0 |
Get blocked vertex coordinates for all vertices. More... | |
virtual ErrorCode | coords_iterate (Range::const_iterator iter, Range::const_iterator end, double *&xcoords_ptr, double *&ycoords_ptr, double *&zcoords_ptr, int &count)=0 |
get pointers to coordinate data More... | |
virtual ErrorCode | get_coords (const Range &entity_handles, double *coords) const =0 |
Gets xyz coordinate information for range of vertices. More... | |
virtual ErrorCode | get_coords (const EntityHandle *entity_handles, const int num_entities, double *coords) const =0 |
Gets xyz coordinate information for vector of vertices. More... | |
virtual ErrorCode | get_coords (const Range &entity_handles, double *x_coords, double *y_coords, double *z_coords) const =0 |
Get vertex coordinates in blocks by dimension. More... | |
virtual ErrorCode | set_coords (const EntityHandle *entity_handles, const int num_entities, const double *coords)=0 |
Sets the xyz coordinates for a vector of vertices. More... | |
virtual ErrorCode | set_coords (Range entity_handles, const double *coords)=0 |
Sets the xyz coordinates for a vector of vertices. More... | |
virtual ErrorCode | get_dimension (int &dim) const =0 |
Get overall geometric dimension. More... | |
virtual ErrorCode | set_dimension (const int dim)=0 |
Set overall geometric dimension. More... | |
Connectivity | |
virtual ErrorCode | connect_iterate (Range::const_iterator iter, Range::const_iterator end, EntityHandle *&connect, int &verts_per_entity, int &count)=0 |
get pointers to connectivity data More... | |
virtual ErrorCode | get_connectivity_by_type (const EntityType type, std::vector< EntityHandle > &connect) const =0 |
Get the connectivity array for all entities of the specified entity type. More... | |
virtual ErrorCode | get_connectivity (const EntityHandle *entity_handles, const int num_handles, Range &connectivity, bool corners_only=false) const =0 |
Gets the connectivity for a vector of elements. More... | |
virtual ErrorCode | get_connectivity (const Range &entity_handles, Range &connectivity, bool corners_only=false) const =0 |
Gets the connectivity for elements. More... | |
virtual ErrorCode | get_connectivity (const EntityHandle *entity_handles, const int num_handles, std::vector< EntityHandle > &connectivity, bool corners_only=false, std::vector< int > *offsets=NULL) const =0 |
Gets the connectivity for a vector of elements. More... | |
virtual ErrorCode | get_connectivity (const EntityHandle entity_handle, const EntityHandle *&connectivity, int &num_nodes, bool corners_only=false, std::vector< EntityHandle > *storage=0) const =0 |
Gets a pointer to constant connectivity data of entity_handle More... | |
virtual ErrorCode | set_connectivity (const EntityHandle entity_handle, EntityHandle *connect, const int num_connect)=0 |
Sets the connectivity for an EntityHandle. For non-element handles, return an error. More... | |
Adjacencies | |
virtual ErrorCode | get_adjacencies (const EntityHandle *from_entities, const int num_entities, const int to_dimension, const bool create_if_missing, std::vector< EntityHandle > &adj_entities, const int operation_type=Interface::INTERSECT)=0 |
Get the adjacencies associated with a vector of entities to entities of a specfied dimension. More... | |
virtual ErrorCode | get_adjacencies (const EntityHandle *from_entities, const int num_entities, const int to_dimension, const bool create_if_missing, Range &adj_entities, const int operation_type=Interface::INTERSECT)=0 |
Get the adjacencies associated with a vector of entities to entities of a specfied dimension. More... | |
virtual ErrorCode | get_adjacencies (const Range &from_entities, const int to_dimension, const bool create_if_missing, Range &adj_entities, const int operation_type=Interface::INTERSECT)=0 |
Get the adjacencies associated with a range of entities to entities of a specfied dimension. More... | |
virtual ErrorCode | add_adjacencies (const EntityHandle from_handle, const EntityHandle *to_handles, const int num_handles, bool both_ways)=0 |
Adds adjacencies between "from" and "to" entities. More... | |
virtual ErrorCode | add_adjacencies (const EntityHandle from_handle, Range &adjacencies, bool both_ways)=0 |
Adds adjacencies; same as vector-based, but with range instead. More... | |
virtual ErrorCode | remove_adjacencies (const EntityHandle from_handle, const EntityHandle *to_handles, const int num_handles)=0 |
Removes adjacencies between handles. More... | |
virtual ErrorCode | adjacencies_iterate (Range::const_iterator iter, Range::const_iterator end, const std::vector< EntityHandle > **&adjs_ptr, int &count)=0 |
Get a ptr to adjacency lists Get a pointer to adjacency lists. These lists are std::vector<EntityHandle>, which are pointed to by adjs[i]. Adjacencies are not guaranteed to be in order of increasing dimension. Only a const version of this function is given, because adjacency data is managed more carefully in MOAB and should be treated as read-only by applications. If adjacencies have not yet been initialized, adjs_ptr will be NULL (i.e. adjs_ptr == NULL). There may also be NULL entries for individual entities, i.e. adjs_ptr[i] == NULL. More... | |
Getting entities | |
virtual ErrorCode | get_entities_by_dimension (const EntityHandle meshset, const int dimension, Range &entities, const bool recursive=false) const =0 |
Retrieves all entities of a given topological dimension in the database or meshset. More... | |
virtual ErrorCode | get_entities_by_dimension (const EntityHandle meshset, const int dimension, std::vector< EntityHandle > &entities, const bool recursive=false) const =0 |
Retrieves all entities of a given topological dimension in the database or meshset. More... | |
virtual ErrorCode | get_entities_by_type (const EntityHandle meshset, const EntityType type, Range &entities, const bool recursive=false) const =0 |
Retrieve all entities of a given type in the database or meshset. More... | |
virtual ErrorCode | get_entities_by_type (const EntityHandle meshset, const EntityType type, std::vector< EntityHandle > &entities, const bool recursive=false) const =0 |
Retrieve all entities of a given type in the database or meshset. More... | |
virtual ErrorCode | get_entities_by_type_and_tag (const EntityHandle meshset, const EntityType type, const Tag *tag_handles, const void *const *values, const int num_tags, Range &entities, const int condition=Interface::INTERSECT, const bool recursive=false) const =0 |
Retrieve entities in the database or meshset which have any or all of the tag(s) and (optionally) value(s) specified. More... | |
virtual ErrorCode | get_entities_by_handle (const EntityHandle meshset, Range &entities, const bool recursive=false) const =0 |
Returns all entities in the data base or meshset, in a range (order not preserved) More... | |
virtual ErrorCode | get_entities_by_handle (const EntityHandle meshset, std::vector< EntityHandle > &entities, const bool recursive=false) const =0 |
Returns all entities in the data base or meshset, in a vector (order preserved) More... | |
virtual ErrorCode | get_number_entities_by_dimension (const EntityHandle meshset, const int dimension, int &num_entities, const bool recursive=false) const =0 |
Return the number of entities of given dimension in the database or meshset. More... | |
virtual ErrorCode | get_number_entities_by_type (const EntityHandle meshset, const EntityType type, int &num_entities, const bool recursive=false) const =0 |
Retrieve the number of entities of a given type in the database or meshset. More... | |
virtual ErrorCode | get_number_entities_by_type_and_tag (const EntityHandle meshset, const EntityType type, const Tag *tag_handles, const void *const *values, const int num_tags, int &num_entities, const int condition=Interface::INTERSECT, const bool recursive=false) const =0 |
Retrieve number of entities in the database or meshset which have any or all of the tag(s) and (optionally) value(s) specified. More... | |
virtual ErrorCode | get_number_entities_by_handle (const EntityHandle meshset, int &num_entities, const bool recursive=false) const =0 |
Returns number of entities in the data base or meshset. More... | |
Mesh modification | |
virtual ErrorCode | create_element (const EntityType type, const EntityHandle *connectivity, const int num_vertices, EntityHandle &element_handle)=0 |
Create an element based on the type and connectivity. More... | |
virtual ErrorCode | create_vertex (const double coordinates[3], EntityHandle &entity_handle)=0 |
Creates a vertex with the specified coordinates. More... | |
virtual ErrorCode | create_vertices (const double *coordinates, const int nverts, Range &entity_handles)=0 |
Create a set of vertices with the specified coordinates. More... | |
virtual ErrorCode | merge_entities (EntityHandle entity_to_keep, EntityHandle entity_to_remove, bool auto_merge, bool delete_removed_entity)=0 |
Merge two entities into a single entity. More... | |
virtual ErrorCode | delete_entities (const EntityHandle *entities, const int num_entities)=0 |
Removes entities in a vector from the data base. More... | |
virtual ErrorCode | delete_entities (const Range &entities)=0 |
Removes entities in a range from the data base. More... | |
Information | |
virtual ErrorCode | list_entities (const Range &entities) const =0 |
List entities to standard output. More... | |
virtual ErrorCode | list_entities (const EntityHandle *entities, const int num_entities) const =0 |
List entities, or number of entities in database, to standard output. More... | |
virtual ErrorCode | list_entity (const EntityHandle entity) const =0 |
List a single entity; no header printed. More... | |
virtual ErrorCode | get_last_error (std::string &info) const =0 |
Return information about the last error. More... | |
virtual std::string | get_error_string (const ErrorCode code) const =0 |
Return string representation of given error code. More... | |
virtual void | estimated_memory_use (const EntityHandle *ent_array=0, unsigned long num_ents=0, unsigned long long *total_storage=0, unsigned long long *total_amortized_storage=0, unsigned long long *entity_storage=0, unsigned long long *amortized_entity_storage=0, unsigned long long *adjacency_storage=0, unsigned long long *amortized_adjacency_storage=0, const Tag *tag_array=0, unsigned num_tags=0, unsigned long long *tag_storage=0, unsigned long long *amortized_tag_storage=0)=0 |
Calculate amount of memory used to store MOAB data. More... | |
virtual void | estimated_memory_use (const Range &ents, unsigned long long *total_storage=0, unsigned long long *total_amortized_storage=0, unsigned long long *entity_storage=0, unsigned long long *amortized_entity_storage=0, unsigned long long *adjacency_storage=0, unsigned long long *amortized_adjacency_storage=0, const Tag *tag_array=0, unsigned num_tags=0, unsigned long long *tag_storage=0, unsigned long long *amortized_tag_storage=0)=0 |
Calculate amount of memory used to store MOAB data. More... | |
Higher-order elements | |
virtual ErrorCode | convert_entities (const EntityHandle meshset, const bool mid_edge, const bool mid_face, const bool mid_region, HONodeAddedRemoved *function_object=0)=0 |
Convert entities to higher-order elements by adding mid nodes. More... | |
virtual ErrorCode | side_number (const EntityHandle parent, const EntityHandle child, int &side_number, int &sense, int &offset) const =0 |
Returns the side number, in canonical ordering, of child with respect to parent More... | |
virtual ErrorCode | high_order_node (const EntityHandle parent_handle, const EntityHandle *subfacet_conn, const EntityType subfacet_type, EntityHandle &high_order_node) const =0 |
Find the higher-order node on a subfacet of an entity. More... | |
virtual ErrorCode | side_element (const EntityHandle source_entity, const int dim, const int side_number, EntityHandle &target_entity) const =0 |
Return the handle of the side element of a given dimension and index. More... | |
Tags | |
virtual ErrorCode | tag_get_handle (const char *name, int size, DataType type, Tag &tag_handle, unsigned flags=0, const void *default_value=0, bool *created=0)=0 |
Get a tag handle, possibly creating the tag. More... | |
virtual ErrorCode | tag_get_handle (const char *name, int size, DataType type, Tag &tag_handle, unsigned flags=0, const void *default_value=0) const =0 |
same as non-const version, except that MB_TAG_CREAT flag is ignored. More... | |
virtual ErrorCode | tag_get_name (const Tag tag_handle, std::string &tag_name) const =0 |
Get the name of a tag corresponding to a handle. More... | |
virtual ErrorCode | tag_get_handle (const char *tag_name, Tag &tag_handle) const =0 |
Gets the tag handle corresponding to a name. More... | |
virtual ErrorCode | tag_get_bytes (const Tag tag, int &bytes_per_tag) const =0 |
Get the size of the specified tag in bytes. More... | |
virtual ErrorCode | tag_get_length (const Tag tag, int &length) const =0 |
Get the array length of a tag. More... | |
virtual ErrorCode | tag_get_type (const Tag tag, TagType &tag_type) const =0 |
Get the type of the specified tag. More... | |
virtual ErrorCode | tag_get_data_type (const Tag tag, DataType &type) const =0 |
Get data type of tag. More... | |
virtual ErrorCode | tag_get_default_value (const Tag tag, void *def_val) const =0 |
Get the default value of the specified tag. More... | |
virtual ErrorCode | tag_get_default_value (Tag tag, const void *&def_val, int &size) const =0 |
Get a tag handle, possibly creating the tag. More... | |
virtual ErrorCode | tag_get_tags (std::vector< Tag > &tag_handles) const =0 |
Get handles for all tags defined in the mesh instance. More... | |
virtual ErrorCode | tag_get_tags_on_entity (const EntityHandle entity, std::vector< Tag > &tag_handles) const =0 |
Get handles for all tags defined on this entity. More... | |
virtual ErrorCode | tag_get_data (const Tag tag_handle, const EntityHandle *entity_handles, int num_entities, void *tag_data) const =0 |
Get the value of the indicated tag on the specified entities in the specified vector. More... | |
virtual ErrorCode | tag_get_data (const Tag tag_handle, const Range &entity_handles, void *tag_data) const =0 |
Get the value of the indicated tag on the specified entities in the specified range. More... | |
virtual ErrorCode | tag_set_data (Tag tag_handle, const EntityHandle *entity_handles, int num_entities, const void *tag_data)=0 |
Set the value of the indicated tag on the specified entities in the specified vector. More... | |
virtual ErrorCode | tag_set_data (Tag tag_handle, const Range &entity_handles, const void *tag_data)=0 |
Set the value of the indicated tag on the specified entities in the specified range. More... | |
virtual ErrorCode | tag_get_by_ptr (const Tag tag_handle, const EntityHandle *entity_handles, int num_entities, const void **tag_data, int *tag_sizes=0) const =0 |
Get pointers to tag data. More... | |
virtual ErrorCode | tag_get_by_ptr (const Tag tag_handle, const Range &entity_handles, const void **tag_data, int *tag_sizes=0) const =0 |
Get pointers to tag data. More... | |
virtual ErrorCode | tag_set_by_ptr (Tag tag_handle, const EntityHandle *entity_handles, int num_entities, void const *const *tag_data, const int *tag_sizes=0)=0 |
Set tag data given an array of pointers to tag values. More... | |
virtual ErrorCode | tag_set_by_ptr (Tag tag_handle, const Range &entity_handles, void const *const *tag_data, const int *tag_sizes=0)=0 |
Set tag data given an array of pointers to tag values. More... | |
virtual ErrorCode | tag_clear_data (Tag tag_handle, const Range &entity_handles, const void *value, int value_size=0)=0 |
Set tag data given value. More... | |
virtual ErrorCode | tag_clear_data (Tag tag_handle, const EntityHandle *entity_handles, int num_entity_handles, const void *value, int value_size=0)=0 |
Set tag data given value. More... | |
virtual ErrorCode | tag_delete_data (Tag tag_handle, const EntityHandle *entity_handles, int num_handles)=0 |
Delete the data of a vector of entity handles and sparse tag. More... | |
virtual ErrorCode | tag_delete_data (Tag tag_handle, const Range &entity_range)=0 |
Delete the data of a range of entity handles and sparse tag. More... | |
virtual ErrorCode | tag_iterate (Tag tag_handle, Range::const_iterator begin, Range::const_iterator end, int &count, void *&data_ptr, bool allocate=true)=0 |
Access tag data via direct pointer into contiguous blocks. More... | |
virtual ErrorCode | tag_delete (Tag tag_handle)=0 |
Remove a tag from the database and delete all of its associated data. More... | |
Sets | |
virtual ErrorCode | create_meshset (const unsigned int options, EntityHandle &ms_handle, int start_id=0)=0 |
Create a new mesh set. More... | |
virtual ErrorCode | clear_meshset (const EntityHandle *ms_handles, const int num_meshsets)=0 |
Empty a vector of mesh set. More... | |
virtual ErrorCode | clear_meshset (const Range &ms_handles)=0 |
Empty a range of mesh set. More... | |
virtual ErrorCode | get_meshset_options (const EntityHandle ms_handle, unsigned int &options) const =0 |
Get the options of a mesh set. More... | |
virtual ErrorCode | set_meshset_options (const EntityHandle ms_handle, const unsigned int options)=0 |
Set the options of a mesh set. More... | |
virtual ErrorCode | subtract_meshset (EntityHandle meshset1, const EntityHandle meshset2)=0 |
Subtract meshsets. More... | |
virtual ErrorCode | intersect_meshset (EntityHandle meshset1, const EntityHandle meshset2)=0 |
Intersect meshsets. More... | |
virtual ErrorCode | unite_meshset (EntityHandle meshset1, const EntityHandle meshset2)=0 |
Unite meshsets. More... | |
virtual ErrorCode | add_entities (EntityHandle meshset, const Range &entities)=0 |
Add to a meshset entities in specified range. More... | |
virtual ErrorCode | add_entities (EntityHandle meshset, const EntityHandle *entities, const int num_entities)=0 |
Add to a meshset entities in specified vector. More... | |
virtual ErrorCode | remove_entities (EntityHandle meshset, const Range &entities)=0 |
Remove from a meshset entities in specified range. More... | |
virtual ErrorCode | remove_entities (EntityHandle meshset, const EntityHandle *entities, const int num_entities)=0 |
Remove from a meshset entities in specified vector. More... | |
virtual bool | contains_entities (EntityHandle meshset, const EntityHandle *entities, int num_entities, const int operation_type=Interface::INTERSECT)=0 |
Return whether a set contains entities. More... | |
virtual ErrorCode | replace_entities (EntityHandle meshset, const EntityHandle *old_entities, const EntityHandle *new_entities, int num_entities)=0 |
Replace entities in a set with other entities. More... | |
Set parents/children | |
virtual ErrorCode | get_parent_meshsets (const EntityHandle meshset, std::vector< EntityHandle > &parents, const int num_hops=1) const =0 |
Get parent mesh sets of a mesh set. More... | |
virtual ErrorCode | get_parent_meshsets (const EntityHandle meshset, Range &parents, const int num_hops=1) const =0 |
Get parent mesh sets of a mesh set. More... | |
virtual ErrorCode | get_child_meshsets (const EntityHandle meshset, std::vector< EntityHandle > &children, const int num_hops=1) const =0 |
Get child mesh sets of a mesh set. More... | |
virtual ErrorCode | get_child_meshsets (const EntityHandle meshset, Range &children, const int num_hops=1) const =0 |
Get child mesh sets of a mesh set. More... | |
virtual ErrorCode | get_contained_meshsets (const EntityHandle meshset, std::vector< EntityHandle > &contained, const int num_hops=1) const =0 |
Get mesh sets contained in a mesh set. More... | |
virtual ErrorCode | get_contained_meshsets (const EntityHandle meshset, Range &contained, const int num_hops=1) const =0 |
Get mesh sets contained in a mesh set. More... | |
virtual ErrorCode | num_parent_meshsets (const EntityHandle meshset, int *number, const int num_hops=1) const =0 |
Get the number of parent mesh sets of a mesh set. More... | |
virtual ErrorCode | num_child_meshsets (const EntityHandle meshset, int *number, const int num_hops=1) const =0 |
Get the number of child mesh sets of a mesh set. More... | |
virtual ErrorCode | num_contained_meshsets (const EntityHandle meshset, int *number, const int num_hops=1) const =0 |
Get the number of mesh sets contained in a mesh set. More... | |
virtual ErrorCode | add_parent_meshset (EntityHandle child_meshset, const EntityHandle parent_meshset)=0 |
Add a parent mesh set to a mesh set. More... | |
virtual ErrorCode | add_parent_meshsets (EntityHandle child_meshset, const EntityHandle *parent_meshsets, int num_parent_meshsets)=0 |
Add a parent mesh sets to a mesh set. More... | |
virtual ErrorCode | add_child_meshset (EntityHandle parent_meshset, const EntityHandle child_meshset)=0 |
Add a child mesh set to a mesh set. More... | |
virtual ErrorCode | add_child_meshsets (EntityHandle parent_meshset, const EntityHandle *child_meshsets, int num_child_meshsets)=0 |
Add a child mesh sets to a mesh set. More... | |
virtual ErrorCode | add_parent_child (EntityHandle parent, EntityHandle child)=0 |
Add parent and child links between mesh sets. More... | |
virtual ErrorCode | remove_parent_child (EntityHandle parent, EntityHandle child)=0 |
Remove parent and child links between mesh sets. More... | |
virtual ErrorCode | remove_parent_meshset (EntityHandle child_meshset, const EntityHandle parent_meshset)=0 |
Remove a parent mesh set from a mesh set. More... | |
virtual ErrorCode | remove_child_meshset (EntityHandle parent_meshset, const EntityHandle child_meshset)=0 |
Remove a child mesh set from a mesh set. More... | |
virtual Tag | globalId_tag ()=0 |
Get parent mesh sets of a mesh set. More... | |
Set iterators | |
virtual ErrorCode | create_set_iterator (EntityHandle meshset, EntityType ent_type, int ent_dim, int chunk_size, bool check_valid, SetIterator *&set_iter)=0 |
Create an iterator over the set Create a new iterator that iterates over entities with the specified type or dimension. Only one of ent_type or dim can be set; use dim=-1 or ent_type=MBMAXTYPE for the other. Iterators for list-type (ordered) sets are stable over set modification, unless entity removed or deleted is the one at the current position of the iterator. If the check_valid parameter is passed as true, entities are checked for validity before being passed back by get_next_entities function (checking entity validity can have a non-negligible cost). More... | |
Sequence Option controllers | |
virtual double | get_sequence_multiplier () const =0 |
Interface to control memory allocation for sequences Provide a factor that controls the size of the sequence that gets allocated. This is typically useful in the parallel setting when a-priori, the number of ghost entities and the memory required for them within the same sequence as the owned entities are unknown. The default factor is 1.0 but this can be appropriately updated at runtime so that we do not have broken sequences. More... | |
virtual void | set_sequence_multiplier (double factor)=0 |
Interface to control memory allocation for sequences Provide a factor that controls the size of the sequence that gets allocated. This is typically useful in the parallel setting when a-priori, the number of ghost entities and the memory required for them within the same sequence as the owned entities are unknown. The default factor is 1.0 but this can be appropriately updated at runtime so that we do not have broken sequences. More... | |
Additional Inherited Members | |
Public Member Functions inherited from moab::UnknownInterface | |
virtual int | QueryInterface (const MBuuid &, UnknownInterface **)=0 |
virtual | ~UnknownInterface () |
Main interface class to MOAB.
Definition at line 95 of file Interface.hpp.
anonymous enum |
Enumerated type used in get_adjacencies() and other functions.
Enumerator | |
---|---|
INTERSECT | |
UNION |
Definition at line 700 of file Interface.hpp.
|
inline |
|
inlinevirtual |
|
pure virtual |
Adds adjacencies between "from" and "to" entities.
from_handle | Entities on which the adjacencies are placed |
to_handles | Vector of entities referenced by new adjacencies added to from_handle |
num_handles | Number of entities in to_handles |
both_ways | If true, add the adjacency information in both directions; if false, adjacencies are added only to from_handle |
Referenced by moab::DualTool::atomic_pillow(), moab::DualTool::check_dual_equiv_edges(), moab::DualTool::face_shrink(), make_atomic_pillow(), make_chord_push(), moab::ReadHDF5::read_adjacencies(), moab::DualTool::rev_face_shrink(), moab::MeshTopoUtil::split_entities_manifold(), and moab::MeshTopoUtil::split_entity_nonmanifold().
|
pure virtual |
Adds adjacencies; same as vector-based, but with range instead.
|
pure virtual |
Add a child mesh set to a mesh set.
Make child_meshset a new child of parent_meshset. This function does not add a corresponding parent link to child_meshset.
parent_meshset | The parent mesh set being given a new child. |
child_meshset | The child being added to parent_meshset |
Implemented in moab::Core.
Referenced by moab::OrientedBoxTreeTool::build_sets(), moab::OrientedBoxTreeTool::build_tree(), moab::BVHTree::convert_tree(), and moab::ParallelComm::unpack_sets().
|
pure virtual |
Add a child mesh sets to a mesh set.
Make child_meshset a new child of parent_meshset. This function does not add a corresponding parent link to child_meshset.
parent_meshset | The parent mesh set being given a new child. |
child_meshset | The child being added to parent_meshset |
Implemented in moab::Core.
Referenced by moab::ReadHDF5::read_set_data().
|
pure virtual |
Add to a meshset entities in specified vector.
Add to a meshset entities in specified vector. If meshset has MESHSET_TRACK_OWNER option set, adjacencies are also added to entities in entities.
meshset | Mesh set being added to |
entities | 1d vector of entities being added to meshset |
num_entities | Number of entities in 1d vector |
Implemented in moab::Core.
|
pure virtual |
Add to a meshset entities in specified range.
Add to a meshset entities in specified range. If meshset has MESHSET_TRACK_OWNER option set, adjacencies are also added to entities in entities.
meshset | Mesh set being added to |
entities | Range of entities being added to meshset |
Implemented in moab::Core.
Referenced by moab::ReadABAQUS::add_entity_set(), moab::GeomTopoTool::add_geo_set(), MetisPartitioner::assemble_taggedents_graph(), moab::ParallelComm::assign_entities_part(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::MeshGeneration::BrickInstance(), moab::ReadRTT::build_moab(), moab::OrientedBoxTreeTool::build_tree(), moab::AdaptiveKDTree::build_tree(), moab::BVHTree::build_tree(), moab::FBEngine::chain_two_edges(), moab::ParallelComm::check_clean_iface(), moab::Skinner::classify_2d_boundary(), moab::ScdInterface::construct_box(), moab::GeomTopoTool::construct_obb_tree(), moab::TempestRemapper::ConstructCoveringSet(), moab::TempestRemapper::convert_tempest_mesh_private(), moab::BVHTree::convert_tree(), moab::ReadMCNP5::create_elements(), moab::ReadIDEAS::create_elements(), moab::NCHelperMPAS::create_gather_set_cells(), moab::NCHelperGCRM::create_gather_set_edges(), moab::NCHelperMPAS::create_gather_set_edges(), moab::NCHelperGCRM::create_gather_set_vertices(), moab::NCHelperMPAS::create_gather_set_vertices(), moab::ReadABAQUS::create_instance_of_part(), moab::ParallelComm::create_interface_sets(), moab::NCHelperESMF::create_local_cells(), moab::NCHelperMPAS::create_local_cells(), moab::NCHelperGCRM::create_local_edges(), moab::NCHelperMPAS::create_local_edges(), moab::NCHelperESMF::create_local_vertices(), moab::NCHelperGCRM::create_local_vertices(), moab::NCHelperMPAS::create_local_vertices(), moab::ReadNASTRAN::create_materials(), moab::ScdNCHelper::create_mesh(), moab::NCHelperDomain::create_mesh(), moab::NCHelperHOMME::create_mesh(), moab::NCHelperScrip::create_mesh(), moab::FBEngine::create_new_gedge(), moab::NCHelperGCRM::create_padded_gather_set_cells(), moab::NCHelperMPAS::create_padded_gather_set_cells(), moab::NCHelperESMF::create_padded_local_cells(), moab::NCHelperGCRM::create_padded_local_cells(), moab::NCHelperMPAS::create_padded_local_cells(), moab::ParallelComm::create_part(), moab::ScdInterface::create_scd_sequence(), moab::ReadCGNS::create_sets(), moab::ReadGmsh::create_sets(), moab::ReadTemplate::create_sets(), moab::ReadMCNP5::create_vertices(), moab::GeomTopoTool::duplicate_model(), moab::ParallelComm::exchange_ghost_cells(), moab::Skinner::find_skin(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::GeomTopoTool::geometrize_surface_set(), iMOAB_CreateElements(), iMOAB_CreateVertices(), ZoltanPartitioner::include_closure(), moab::ReadParallel::load_file(), moab::ReadCCMIO::load_file(), moab::ReadOBJ::load_file(), moab::ReadTemplate::load_file(), moab::ReadSms::load_file_impl(), main(), moab::AdaptiveKDTree::merge_leaf(), moab::BSPTree::merge_leaf(), moab::DualTool::order_chord(), ZoltanPartitioner::partition_inferred_mesh(), moab::Tqdcfr::process_sideset_10(), moab::Tqdcfr::process_sideset_11(), moab::Tqdcfr::put_into_set(), moab::ReadTetGen::read_elem_file(), moab::ReadABAQUS::read_element_list(), moab::ReadABAQUS::read_element_set(), moab::ReadNCDF::read_elements(), moab::Tqdcfr::read_elements(), moab::ReadCCMIO::read_faces(), moab::ReadCCMIO::read_gids_and_types(), moab::ReadABAQUS::read_node_list(), moab::ReadABAQUS::read_node_set(), moab::Tqdcfr::read_nodes(), moab::ReadNCDF::read_nodesets(), moab::ReadHDF5::read_set_data(), moab::ReadNCDF::read_sidesets(), moab::ParCommGraph::receive_mesh(), replace_surface(), moab::ParallelComm::resolve_shared_ents(), moab::FBEngine::separate(), moab::ParallelComm::set_partitioning(), moab::ReadRTT::setup_group_data(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_edge_at_mesh_node(), moab::FBEngine::split_quads(), moab::FBEngine::split_surface(), moab::DualTool::traverse_hyperplane(), moab::ParallelComm::unpack_sets(), moab::FBEngine::weave_lateral_face_from_edges(), MetisPartitioner::write_aggregationtag_partition(), moab::WriteNCDF::write_file(), MetisPartitioner::write_partition(), and ZoltanPartitioner::write_partition().
|
pure virtual |
Add parent and child links between mesh sets.
Makes child_meshset a new child of parent_meshset, and vica versa.
parent | The parent mesh set being given a new child, and the new parent |
child | The child being given a new parent, and the new child |
Implemented in moab::Core.
Referenced by moab::FBEngine::chain_two_edges(), moab::DualTool::construct_hp_parent_child(), moab::ParallelComm::create_iface_pc_links(), moab::FBEngine::create_new_gedge(), moab::ReadOBJ::create_new_object(), moab::FBEngine::create_volume_with_direction(), moab::GeomTopoTool::duplicate_model(), moab::GeomTopoTool::generate_implicit_complement(), moab::ReadRTT::generate_parent_child_links(), moab::GeomTopoTool::geometrize_surface_set(), moab::GeomTopoTool::insert_in_tree(), ZoltanPartitioner::partition_inferred_mesh(), moab::FBEngine::redistribute_boundary_edges_to_faces(), moab::GeomTopoTool::restore_topology_from_adjacency(), moab::GeomTopoTool::restore_topology_from_geometric_inclusion(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_edge_at_mesh_node(), moab::FBEngine::split_surface(), and moab::FBEngine::weave_lateral_face_from_edges().
|
pure virtual |
Add a parent mesh set to a mesh set.
Make parent_meshset a new parent of child_meshset. This function does not add a corresponding child link to parent_meshset.
child_meshset | The child mesh set being given a new parent. |
parent_meshset | The parent being added to child_meshset |
Implemented in moab::Core.
Referenced by moab::ParallelComm::unpack_sets().
|
pure virtual |
Add a parent mesh sets to a mesh set.
Make parent_meshset a new parent of child_meshset. This function does not add a corresponding child link to parent_meshset.
child_meshset | The child mesh set being given a new parent. |
parent_meshset | The parent being added to child_meshset |
Implemented in moab::Core.
Referenced by moab::ReadHDF5::read_set_data().
|
pure virtual |
Get a ptr to adjacency lists Get a pointer to adjacency lists. These lists are std::vector<EntityHandle>, which are pointed to by adjs[i]. Adjacencies are not guaranteed to be in order of increasing dimension. Only a const version of this function is given, because adjacency data is managed more carefully in MOAB and should be treated as read-only by applications. If adjacencies have not yet been initialized, adjs_ptr will be NULL (i.e. adjs_ptr == NULL). There may also be NULL entries for individual entities, i.e. adjs_ptr[i] == NULL.
iter | Iterator to beginning of entity range desired |
end | End iterator for which adjacencies are requested |
adjs_ptr | Pointer to pointer to const std::vector<EntityHandle>; each member of that array is the vector of adjacencies for this entity |
count | Number of entities in the contiguous chunk starting from *iter |
Implemented in moab::Core.
Referenced by main().
|
inlinevirtual |
Release reference to MB interface.
Returns the major.minor version number of the interface
version_string | If non-NULL, will be filled in with a string, possibly containing implementation-specific information |
Definition at line 2052 of file Interface.hpp.
References MOAB_API_VERSION, and MOAB_API_VERSION_STRING.
|
pure virtual |
Empty a vector of mesh set.
Empty a mesh set.
ms_handles | 1d vector of handles of sets being emptied |
num_meshsets | Number of entities in 1d vector |
Implemented in moab::Core.
Referenced by moab::Skinner::classify_2d_boundary(), moab::NCHelperScrip::create_mesh(), MetisPartitioner::write_aggregationtag_partition(), MetisPartitioner::write_partition(), and ZoltanPartitioner::write_partition().
Empty a range of mesh set.
Empty a mesh set.
ms_handles | Range of handles of sets being emptied |
Implemented in moab::Core.
|
pure virtual |
get pointers to connectivity data
BEWARE, THIS GIVES ACCESS TO MOAB'S INTERNAL STORAGE, USE WITH CAUTION! This function returns a pointer to MOAB's internal storage for entity connectivity. For each contiguous sub-range of entities, those entities are guaranteed to have the same number of vertices (since they're in the same ElementSequence). Count is given in terms of entities, not elements of the connectivity array. Access is similar to tag_iterate, see documentation for that function for details about arguments and a coding example.
iter | Iterator to first entity you want coordinates for |
end | Iterator to last entity you want coordinates for |
connect | Pointer to connectivity storage for these entities |
verts_per_entity | Number of vertices per entity in this block of entities |
count | Number of entities for which returned pointers are valid/contiguous |
Implemented in moab::Core.
Referenced by moab::SpectralMeshTool::convert_to_coarse(), moab::NCHelperHOMME::create_mesh(), main(), and moab::WriteDamsel::write_entities().
|
pure virtual |
Return whether a set contains entities.
Return whether a set contains entities. Returns true only if ALL entities are contained
meshset | Mesh set being queried |
entities | Entities being queried |
num_entities | Number of entities |
Implemented in moab::Core.
Referenced by moab::ParallelComm::augment_default_sets_with_ghosts(), moab::GeomTopoTool::check_model(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::GeomTopoTool::dimension(), moab::FBEngine::find_vertex_set_for_node(), moab::GeomTopoTool::get_senses(), moab::GeomTopoTool::global_id(), and moab::FBEngine::weave_lateral_face_from_edges().
|
pure virtual |
Convert entities to higher-order elements by adding mid nodes.
This function causes MB to create mid-nodes on all edges, faces, and element interiors for all entities in meshset. Higher order nodes appear in an element's connectivity array according to the algorithm described in the documentation for Mesh. If HONodeAddedRemoved function is input, this function is called to notify the application of nodes being added/removed from the mesh.
meshset | The set of entities being converted |
mid_edge | If true, mid-edge nodes are created |
mid_face | If true, mid-face nodes are created |
mid_region | If true, mid-element nodes are created |
function_object | If non-NULL, the node_added or node_removed functions on this object are called when nodes are added or removed from an entity, respectively |
Implemented in moab::Core.
|
pure virtual |
get pointers to coordinate data
BEWARE, THIS GIVES ACCESS TO MOAB'S INTERNAL STORAGE, USE WITH CAUTION! This function returns pointers to MOAB's internal storage for vertex coordinates. Access is similar to tag_iterate, see documentation for that function for details about arguments and a coding example.
iter | Iterator to first entity you want coordinates for |
end | Iterator to last entity you want coordinates for |
xcoords_ptr | Pointer to x coordinate storage for these entities |
ycoords_ptr | Pointer to y coordinate storage for these entities |
zcoords_ptr | Pointer to z coordinate storage for these entities |
count | Number of entities for which returned pointers are valid/contiguous |
Implemented in moab::Core.
Referenced by main(), and moab::WriteDamsel::write_vertices().
|
pure virtual |
Create an element based on the type and connectivity.
Create a new element in the database. Vertices composing this element must already exist, and connectivity must be specified in canonical order for the given element type. If connectivity vector is not correct for EntityType type (ie, a vector with 3 vertices is passed in to make an MBQUAD), the function returns MB_FAILURE.
type | Type of element to create. (MBTET, MBTRI, MBKNIFE, etc.) |
connectivity | 1d vector containing connectivity of element to create. |
num_vertices | Number of vertices in element |
element_handle | Handle representing the newly created element in the database. |
Example:
Implemented in moab::Core.
Referenced by moab::DualTool::atomic_pillow(), moab::FBEngine::BreakTriangle2(), moab::ReadRTT::build_moab(), moab::Skinner::classify_2d_boundary(), moab::DualTool::construct_dual_cells(), moab::DualTool::construct_dual_edges(), moab::DualTool::construct_dual_faces(), moab::TempestRemapper::convert_tempest_mesh_private(), moab::ReadCCMIO::create_cell_from_faces(), moab::ReadIDEAS::create_elements(), moab::ReadABAQUS::create_instance_of_part(), moab::ReadOBJ::create_new_face(), moab::FBEngine::create_new_gedge(), moab::ReadNCDF::create_sideset_element(), moab::ReadOBJ::create_tri_faces(), moab::FBEngine::divide_triangle(), moab::DualTool::face_shrink(), moab::Skinner::find_skin_noadj(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::ScdBox::get_adj_edge_or_face(), moab::ReadSms::load_file_impl(), make_atomic_pillow(), make_chord_push(), make_face_shrink(), moab::ReadCCMIO::make_faces(), moab::OrientedBox::make_hex(), make_triple_chord_push(), moab::ReadNASTRAN::read_element(), moab::ReadNCDF::read_elements(), moab::ReadHDF5::read_poly(), moab::ReadNCDF::read_polyhedra_faces(), moab::DualTool::rev_face_shrink(), moab::MeshTopoUtil::split_entities_manifold(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::FBEngine::split_internal_edge(), moab::FBEngine::split_quads(), moab::ParallelComm::unpack_entities(), moab::ReadVtk::vtk_read_polygons(), moab::ReadVtk::vtk_read_unstructured_grid(), and moab::FBEngine::weave_lateral_face_from_edges().
|
pure virtual |
Create a new mesh set.
Create a new mesh set. Meshsets can store entities ordered or unordered. A set can include entities at most once (MESHSET_SET) or more than once. Meshsets can optionally track its members using adjacencies (MESHSET_TRACK_OWNER); if set, entities are deleted from tracking meshsets before being deleted. This adds data to mesh entities, which can be expensive.
options | Options bitmask for the new meshset, possible values defined above |
ms_handle | Handle for the meshset created |
Implemented in moab::Core.
Referenced by moab::ReadABAQUS::add_entity_set(), MetisPartitioner::assemble_taggedents_graph(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::MeshGeneration::BrickInstance(), moab::ReadRTT::build_moab(), moab::OrientedBoxTreeTool::build_sets(), moab::OrientedBoxTreeTool::build_tree(), moab::ParallelComm::check_clean_iface(), moab::DualTool::construct_new_hyperplane(), moab::TempestRemapper::ConstructCoveringSet(), moab::ScdInterface::create_box_set(), moab::ReadIDEAS::create_elements(), moab::ReadRTT::create_group(), moab::ParallelComm::create_interface_sets(), moab::ReadNASTRAN::create_materials(), moab::FBEngine::create_new_gedge(), moab::ReadOBJ::create_new_group(), moab::ReadOBJ::create_new_object(), moab::ParallelComm::create_part(), moab::Tree::create_root(), moab::Tqdcfr::create_set(), moab::ReadCGNS::create_sets(), moab::ReadGmsh::create_sets(), moab::ReadTemplate::create_sets(), moab::BSPTree::create_tree(), moab::FBEngine::create_volume_with_direction(), moab::GeomTopoTool::duplicate_model(), moab::GeomTopoTool::generate_implicit_complement(), moab::ReadRTT::generate_topology(), moab::GeomTopoTool::geometrize_surface_set(), moab::ReadSms::get_set(), iMOAB_CreateElements(), iMOAB_RegisterApplication(), moab::TempestRemapper::initialize(), moab::ReadParallel::load_file(), moab::ReadABAQUS::load_file(), moab::ReadOBJ::load_file(), moab::ReadNC::load_file(), moab::ReadMCNP5::load_one_file(), main(), ZoltanPartitioner::partition_inferred_mesh(), moab::ReadTetGen::read_elem_file(), moab::ReadNCDF::read_elements(), moab::ReadCCMIO::read_faces(), DeformMeshRemap::read_file(), moab::ReadCCMIO::read_gids_and_types(), moab::ReadNCDF::read_nodesets(), moab::ReadNCDF::read_sidesets(), moab::GeomTopoTool::restore_topology_from_geometric_inclusion(), moab::FBEngine::separate(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_edge_at_mesh_node(), moab::AdaptiveKDTree::split_leaf(), moab::BSPTree::split_leaf(), moab::FBEngine::split_surface(), moab::ParallelComm::unpack_sets(), moab::FBEngine::weave_lateral_face_from_edges(), MetisPartitioner::write_aggregationtag_partition(), moab::WriteNCDF::write_file(), MetisPartitioner::write_partition(), and ZoltanPartitioner::write_partition().
|
pure virtual |
Create an iterator over the set Create a new iterator that iterates over entities with the specified type or dimension. Only one of ent_type or dim can be set; use dim=-1 or ent_type=MBMAXTYPE for the other. Iterators for list-type (ordered) sets are stable over set modification, unless entity removed or deleted is the one at the current position of the iterator. If the check_valid parameter is passed as true, entities are checked for validity before being passed back by get_next_entities function (checking entity validity can have a non-negligible cost).
Iterators returned by this function can be deleted using the normal C++ delete function. After creating the iterator through this function, further interactions are through methods on the SetIterator class.
meshset | The entity set associated with this iterator (use 0 for whole instance) |
ent_type | Entity type associated with this iterator |
ent_dim | Dimension associated with this iterator |
chunk_size | Chunk size of the iterator |
check_valid | If true, entities are checked for validity before being returned |
Implemented in moab::Core.
|
pure virtual |
Creates a vertex with the specified coordinates.
coordinates | Array that has 3 doubles in it. |
entity_handle | EntityHandle representing the newly created vertex in the database. |
Example:
Implemented in moab::Core.
Referenced by moab::DualTool::atomic_pillow(), moab::ReadRTT::build_moab(), moab::DualTool::construct_dual_vertex(), moab::ReadOBJ::create_new_vertex(), moab::DualTool::face_shrink(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), make_atomic_pillow(), make_chord_push(), make_face_shrink(), moab::OrientedBox::make_hex(), make_triple_chord_push(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::FBEngine::split_surface_with_direction(), and moab::ParallelComm::unpack_entities().
|
pure virtual |
Create a set of vertices with the specified coordinates.
coordinates | Array that has 3*n doubles in it. |
nverts | Number of vertices to create |
entity_handles | Range passed back with new vertex handles |
Implemented in moab::Core.
Referenced by iMOAB_CreateVertices().
|
pure virtual |
Removes entities in a vector from the data base.
If any of the entities are contained in any meshsets, it is removed from those meshsets which were created with MESHSET_TRACK_OWNER option bit set. Tags for entity are removed as part of this function.
entities | 1d vector of entities to delete |
num_entities | Number of entities in 1d vector |
Implemented in moab::Core.
Referenced by MetisPartitioner::assemble_taggedsets_graph(), moab::DualTool::atomic_pillow(), moab::FBEngine::chain_two_edges(), moab::ParallelComm::check_clean_iface(), create_mesh_with_holes(), moab::ParallelComm::create_part(), moab::BSPTree::create_tree(), moab::DualTool::delete_dual_entities(), moab::ParallelComm::delete_entities(), moab::ReadHDF5::delete_non_side_elements(), moab::ReadParallel::delete_nonlocal_entities(), moab::GeomTopoTool::delete_obb_tree(), moab::BSPTree::delete_tree(), moab::OrientedBoxTreeTool::delete_tree(), moab::Tree::delete_tree_sets(), moab::DualTool::delete_whole_dual(), moab::ParallelComm::destroy_part(), moab::DualTool::face_shrink(), moab::Skinner::find_skin_noadj(), moab::DualTool::foc_delete_dual(), iMOAB_DeregisterApplication(), moab::ReadABAQUS::load_file(), main(), moab::OrientedBox::make_hex(), moab::MergeMesh::merge_higher_dimensions(), moab::AdaptiveKDTree::merge_leaf(), moab::BSPTree::merge_leaf(), moab::MergeMesh::perform_merge(), replace_surface(), moab::DualTool::rev_atomic_pillow(), moab::DualTool::rev_face_shrink(), moab::AdaptiveKDTree::split_leaf(), moab::BSPTree::split_leaf(), moab::FBEngine::split_surface(), moab::ReadNCDF::update(), MetisPartitioner::write_aggregationtag_partition(), MetisPartitioner::write_partition(), and ZoltanPartitioner::write_partition().
Removes entities in a range from the data base.
If any of the entities are contained in any meshsets, it is removed from those meshsets which were created with MESHSET_TRACK_OWNER option bit set. Tags for entity are removed as part of this function.
entities | Range of entities to delete |
Implemented in moab::Core.
|
pure virtual |
Deletes all mesh entities from this MB instance.
Implemented in moab::Core.
|
pure virtual |
Returns the topological dimension of an entity.
Returns the topological dimension of an entity.
handle | The EntityHandle you want to find the dimension of. |
Example:
Implemented in moab::Core.
Referenced by moab::SpatialLocator::add_elems(), MetisPartitioner::assemble_taggedsets_graph(), moab::ScdBox::box_dimension(), moab::ParallelComm::create_iface_pc_links(), moab::ParallelComm::create_interface_sets(), moab::DataCoupler::DataCoupler(), moab::MeshTopoUtil::equivalent_entities(), moab::ParallelComm::exchange_owned_meshs(), moab::DualTool::face_shrink(), DeformMeshRemap::find_other_sets(), moab::DualTool::foc_delete_dual(), moab::ParallelComm::gather_data(), moab::DualTool::get_graphics_points(), moab::ScdBox::get_params(), moab::ParallelComm::get_pstatus_entities(), ZoltanPartitioner::include_closure(), moab::MeshTopoUtil::opposite_entity(), ZoltanPartitioner::partition_owned_cells(), moab::LloydSmoother::perform_smooth(), print_vertex_fields(), DeformMeshRemap::read_file(), moab::ParallelComm::resolve_shared_ents(), moab::DualTool::rev_face_shrink(), moab::ElemEvaluator::set_ent_handle(), moab::ParallelComm::set_pstatus_entities(), moab::SpatialLocator::SpatialLocator(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::MeshTopoUtil::star_entities(), moab::MeshTopoUtil::star_entities_nonmanifold(), moab::MeshTopoUtil::star_next_entity(), moab::ParallelMergeMesh::TagSharedElements(), and moab::DualTool::traverse_hyperplane().
|
pure virtual |
Calculate amount of memory used to store MOAB data.
This function calculates the amount of memory used to store MOAB data.
There are two possible values for each catagory of memory use. The exact value and the amortized value. The exact value is the amount of memory used to store the data for the specified entities. The amortized value includes the exact value and an amortized estimate of the memory consumed in overhead for storing the values (indexing structures, access structures, etc.)
Note: If ent_array is NULL and total_amortized_storage is not NULL, the total memory used by MOAB for storing data all will be returned in the address pointed to by total_amortized_storage.
ent_array | Array of entities for which to estimate the memory use. If NULL, estimate is done for all entities. |
num_ents | The length of ent_array. Not used if ent_rray is NULL. |
total_(amortized_)storage | The sum of the memory entity, adjacency, and all tag storage. |
(amortized_)entity_storage | The storage for the entity definitions (connectivity arrays for elements, coordinates for vertices, list storage within sets, etc.) |
(amortized_)adjacency_storage | The storage for adjacency data. |
tag_array | An array of tags for which to calculate the memory use. |
num_tags | The lenght of tag_array |
(amortized_)tag_storage | If tag_array is not NULL, then one value for each tag specifying the memory used for storing that tag. If tag_array is NULL and this value is not, the location at which to store the total memory used for all tags. |
Implemented in moab::Core.
Referenced by moab::AdaptiveKDTree::print().
|
pure virtual |
Calculate amount of memory used to store MOAB data.
This function calculates the amount of memory used to store MOAB data.
There are two possible values for each catagory of memory use. The exact value and the amortized value. The exact value is the amount of memory used to store the data for the specified entities. The amortized value includes the exact value and an amortized estimate of the memory consumed in overhead for storing the values (indexing structures, access structures, etc.)
ents | Entities for which to estimate the memory use. |
total_(amortized_)storage | The sum of the memory entity, adjacency, and all tag storage. |
(amortized_)entity_storage | The storage for the entity definitions (connectivity arrays for elements, coordinates for vertices, list storage within sets, etc.) |
(amortized_)adjacency_storage | The storage for adjacency data. |
tag_array | An array of tags for which to calculate the memory use. |
num_tags | The lenght of tag_array |
(amortized_)tag_storage | If tag_array is not NULL, then one value for each tag specifying the memory used for storing that tag. If tag_array is NULL and this value is not, the location at which to store the total memory used for all tags. |
Implemented in moab::Core.
|
pure virtual |
Get the adjacencies associated with a vector of entities to entities of a specfied dimension.
Identical to vector-based get_adjacencies function, except results are returned in a range instead of a vector.
Implemented in moab::Core.
|
pure virtual |
Get the adjacencies associated with a vector of entities to entities of a specfied dimension.
from_entities | Vector of EntityHandle to get adjacencies of. |
num_entities | Number of entities in from_entities |
to_dimension | Dimension of desired adjacencies |
create_if_missing | If true, MB will create any entities of the specfied dimension which have not yet been created (only useful when to_dimension < dim(*from_entities)) |
adj_entities | STL vector to which adjacent entities are appended. |
operation_type | Enum of INTERSECT or UNION. Defines whether to take the intersection or union of the set of adjacencies recovered for the from_entities. |
The adjacent entities in vector adjacencies are not in any particular order.
Example:
Implemented in moab::Core.
Referenced by moab::ParallelComm::add_verts(), moab::area_coordinates(), moab::DualTool::atomic_pillow(), moab::AdaptiveKDTree::best_subdivision_snap_plane(), moab::AdaptiveKDTree::best_vertex_median_plane(), moab::AdaptiveKDTree::best_vertex_sample_plane(), moab::MeshGeneration::BrickInstance(), moab::OrientedBoxTreeTool::build_sets(), moab::AxisBox::calculate(), moab::DualTool::check_dual_adjs(), moab::DualTool::check_dual_equiv_edges(), moab::GeomTopoTool::check_model(), moab::MeshTopoUtil::common_entity(), moab::OrientedBox::compute_from_2d_cells(), moab::FBEngine::compute_intersection_points(), moab::MeshTopoUtil::construct_aentities(), moab::DualTool::construct_dual(), moab::DualTool::construct_dual_cells(), moab::DualTool::construct_dual_edges(), moab::DualTool::construct_dual_faces(), moab::DualTool::construct_hp_parent_child(), moab::GeomTopoTool::construct_vertex_ranges(), moab::ReadCCMIO::create_cell_from_faces(), moab::ParallelComm::create_iface_pc_links(), moab::ParallelComm::create_interface_sets(), moab::ScdNCHelper::create_mesh(), create_mesh_no_holes(), moab::FBEngine::create_new_gedge(), moab::ReadNCDF::create_sideset_element(), moab::Intx2Mesh::createTags(), DeformMeshRemap::deform_master(), moab::DualTool::delete_dual_entities(), moab::ReadHDF5::delete_non_side_elements(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::FBEngine::divide_triangle(), moab::MeshTopoUtil::equivalent_entities(), moab::DualTool::face_shrink(), moab::SmoothFace::find_edges_orientations(), moab::ParallelComm::find_existing_entity(), moab::Skinner::find_inferred_edges(), moab::Skinner::find_skin(), moab::Skinner::find_skin_vertices_1D(), moab::DualTool::foc_delete_dual(), moab::DualTool::foc_get_addl_ents(), moab::DualTool::foc_get_ents(), moab::DualTool::fs_get_quad_loops(), moab::DualTool::fs_get_quads(), moab::DualTool::fsr_get_fourth_quad(), moab::WriteHDF5::gather_mesh_info(), moab::GeomTopoTool::geometrize_surface_set(), moab::ScdBox::get_adj_edge_or_face(), moab::MeshTopoUtil::get_average_position(), moab::MeshTopoUtil::get_bridge_adjacencies(), moab::DualTool::get_cell_points(), moab::DualTool::get_dual_entities(), moab::DualTool::get_dual_hyperplane(), moab::ParallelComm::get_ghosted_entities(), moab::DualTool::get_graphics_points(), moab::MeshTopoUtil::get_manifold(), moab::ReadABAQUS::get_set_nodes(), moab::WriteSLAC::get_valid_sides(), moab::WriteTemplate::get_valid_sides(), moab::WriteNCDF::get_valid_sides(), iMOAB_DeregisterApplication(), iMOAB_GetMeshInfo(), iMOAB_GetPointerToSurfaceBC(), ZoltanPartitioner::include_closure(), moab::SmoothFace::init_gradient(), moab::LloydSmoother::initialize(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::DualTool::is_blind(), moab::ReadSms::load_file_impl(), moab::WriteGMV::local_write_mesh(), main(), moab::MergeMesh::merge_higher_dimensions(), moab::DualTool::next_loop_vertex(), moab::DualTool::order_chord(), moab::LloydSmoother::perform_smooth(), moab::Tqdcfr::read_block(), moab::FBEngine::redistribute_boundary_edges_to_faces(), moab::ParallelComm::resolve_shared_ents(), moab::GeomTopoTool::restore_topology_from_adjacency(), moab::DualTool::rev_atomic_pillow(), moab::DualTool::rev_face_shrink(), moab::ParCommGraph::send_mesh_parts(), moab::FBEngine::separate(), moab::ParallelComm::set_pstatus_entities(), moab::Skinner::skin_box(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::MeshTopoUtil::split_entities_manifold(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::FBEngine::split_internal_edge(), moab::DualTool::split_pair_nonmanifold(), moab::MeshTopoUtil::star_entities(), moab::MeshTopoUtil::star_entities_nonmanifold(), moab::MeshTopoUtil::star_next_entity(), moab::ParallelMergeMesh::TagSharedElements(), moab::ReadNCDF::update(), moab::ReadVtk::vtk_read_unstructured_grid(), moab::WriteCCMIO::write_cells_and_faces(), moab::WriteCCMIO::write_external_faces(), moab::WriteGmsh::write_file(), and DeformMeshRemap::write_to_coords().
|
pure virtual |
Get the adjacencies associated with a range of entities to entities of a specfied dimension.
Identical to vector-based get_adjacencies function, except "from" entities specified in a range instead of a vector.
Implemented in moab::Core.
|
pure virtual |
Get child mesh sets of a mesh set.
If num_hops is 1, only immediate children are returned. If num_hops is zero, all ancenstors are returned. Otherwise, num_hops specifies the maximum number of generations to traverse.
meshset | The mesh set whose children are being queried |
children | Range holding the children returned by this function |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
|
pure virtual |
Get child mesh sets of a mesh set.
If num_hops is 1, only immediate children are returned. If num_hops is zero, all ancenstors are returned. Otherwise, num_hops specifies the maximum number of generations to traverse.
meshset | The mesh set whose children are being queried |
children | STL vector holding the children returned by this function |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
Referenced by moab::BSPTreeIter::calculate_polyhedron(), moab::GeomTopoTool::check_model(), moab::OrientedBoxTreeTool::closest_to_location(), moab::WriteHDF5Parallel::communicate_shared_set_data(), moab::GeomTopoTool::construct_obb_tree(), moab::FBEngine::create_volume_with_direction(), moab::GeomTopoTool::delete_obb_tree(), moab::BSPTree::delete_tree(), moab::OrientedBoxTreeTool::delete_tree(), moab::Tree::delete_tree_sets(), moab::AdaptiveKDTree::distance_search(), moab::BSPTreeIter::down(), moab::BSPTreeBoxIter::down(), moab::GeomTopoTool::duplicate_model(), moab::AdaptiveKDTree::find_close_triangle(), moab::BVHTree::find_point(), moab::WriteVtk::gather_mesh(), moab::WriteHDF5::gather_mesh_info(), moab::GeomTopoTool::get_ct_children_by_dimension(), moab::AdaptiveKDTreeIter::get_neighbors(), moab::BSPTreeBoxIter::get_neighbors(), moab::FBEngine::get_vert_edges(), moab::SmoothCurve::is_periodic(), moab::AdaptiveKDTreeIter::is_sibling(), moab::BSPTreeIter::is_sibling(), moab::BSPTree::leaf_containing_point(), moab::GeomQueryTool::measure_volume(), moab::AdaptiveKDTree::merge_leaf(), moab::BSPTree::merge_leaf(), obbstat_write(), obbvis_create(), moab::BSPTreePlaneIter::operator++(), moab::GeomTopoTool::other_entity(), moab::ParallelComm::pack_sets(), moab::GeomQueryTool::point_in_volume_slow(), moab::AdaptiveKDTree::point_search(), moab::OrientedBoxTreeTool::preorder_traverse(), moab::AdaptiveKDTree::print(), moab::AdaptiveKDTree::ray_intersect_triangles(), moab::OrientedBoxTreeTool::recursive_stats(), moab::FBEngine::redistribute_boundary_edges_to_faces(), moab::ParallelComm::resolve_shared_sets(), moab::AdaptiveKDTreeIter::sibling_is_forward(), moab::BSPTreeIter::sibling_is_forward(), moab::AdaptiveKDTreeIter::sibling_side(), moab::OrientedBoxTreeTool::sphere_intersect_triangles(), moab::AdaptiveKDTreeIter::step(), moab::BSPTreeIter::step(), moab::BSPTreeBoxIter::step(), moab::AdaptiveKDTreeIter::step_to_first_leaf(), moab::BSPTreeIter::step_to_first_leaf(), moab::BSPTreeBoxIter::step_to_first_leaf(), moab::TreeStats::traverse(), and moab::FBEngine::weave_lateral_face_from_edges().
|
pure virtual |
Gets the connectivity for a vector of elements.
Same as vector-based version except range is returned (unordered!)
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::A_is_in_B(), moab::Skinner::add_adjacency(), moab::ParallelComm::add_verts(), moab::VerdictWrapper::all_quality_measures(), moab::SmoothFace::area(), moab::area_coordinates(), moab::WriteSTL::ascii_write_triangles(), moab::WriteHDF5::assign_ids(), moab::DualTool::atomic_pillow(), moab::WriteSTL::binary_write_triangles(), moab::GeomQueryTool::boundary_case(), moab::FBEngine::boundary_nodes_on_face(), moab::FBEngine::BreakTriangle2(), moab::Util::centroid(), moab::FBEngine::chain_able_edge(), moab::DualTool::check_1d_loop_edge(), moab::DualTool::check_dual_equiv_edges(), moab::ParallelComm::check_local_shared(), moab::GeomTopoTool::check_model(), moab::Skinner::classify_2d_boundary(), moab::OrientedBoxTreeTool::closest_to_location(), compute_area(), moab::SmoothCurve::compute_control_points_on_boundary_edges(), moab::SmoothFace::compute_internal_control_points_on_facets(), moab::FBEngine::compute_intersection_points(), moab::SmoothFace::compute_tangents_for_each_edge(), moab::Intx2MeshInPlane::computeIntersectionBetweenTgtAndSrc(), moab::Intx2MeshOnSphere::computeIntersectionBetweenTgtAndSrc(), moab::IntxRllCssphere::computeIntersectionBetweenTgtAndSrc(), moab::BVHTree::construct_element_vec(), moab::TempestRemapper::ConstructCoveringSet(), moab::TempestRemapper::convert_mesh_to_tempest_private(), moab::TempestRemapper::convert_overlap_mesh_sorted_by_source(), moab::OrientedBox::covariance_data_from_tris(), moab::ReadCCMIO::create_cell_from_faces(), moab::ReadABAQUS::create_instance_of_part(), moab::ScdNCHelper::create_mesh(), moab::NCHelperDomain::create_mesh(), moab::NCHelperScrip::create_mesh(), moab::FBEngine::create_new_gedge(), moab::ReadNCDF::create_sideset_element(), moab::ReadNCDF::create_ss_elements(), moab::Intx2Mesh::createTags(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::FBEngine::divide_triangle(), moab::SmoothCurve::end_coordinates(), moab::MeshTopoUtil::equivalent_entities(), moab::ParallelComm::estimate_ents_buffer_size(), moab::SmoothFace::eval_bezier_patch(), moab::SmoothFace::eval_bezier_patch_normal(), moab::SmoothFace::evaluate_smooth_edge(), moab::SmoothCurve::evaluate_smooth_edge(), moab::SmoothFace::facet_area_coordinate(), moab::SmoothFace::find_edges_orientations(), moab::Skinner::find_match(), moab::Skinner::find_skin_noadj(), moab::Skinner::find_skin_vertices_1D(), moab::GeomQueryTool::find_volume(), moab::Intx2Mesh::FindMaxEdgesInSet(), moab::DualTool::foc_get_ents(), moab::DualTool::fs_get_quads(), moab::WriteVtk::gather_mesh(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::GeomTopoTool::geometrize_surface_set(), moab::MeshTopoUtil::get_average_position(), moab::MeshTopoUtil::get_bridge_adjacencies(), moab::DualTool::get_cell_points(), moab::WriteCGNS::get_conn_table(), moab::DualTool::get_graphics_points(), moab::Coupler::get_group_integ_vals(), moab::FBEngine::get_nodes_from_edge(), moab::GeomQueryTool::get_normal(), moab::DualTool::get_opposite_verts(), moab::ParallelComm::get_proc_nvecs(), moab::DualTool::get_radial_dverts(), iMOAB_DeregisterApplication(), iMOAB_GetBlockElementConnectivities(), iMOAB_GetBlockInfo(), iMOAB_GetElementConnectivity(), moab::SmoothFace::init_bezier_edge(), moab::SmoothFace::init_gradient(), moab::WriteNCDF::initialize_exodus_file(), moab::WriteHDF5::initialize_mesh(), moab::Coupler::initialize_tree(), moab::Coupler::interp_field(), moab::AdaptiveKDTree::intersect_children_with_elems(), moab::Intx2Mesh::intersect_meshes(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::SmoothFace::is_at_vertex(), moab::WriteGMV::local_write_mesh(), moab::Coupler::locate_points(), main(), moab::GeomQueryTool::measure_area(), moab::GeomQueryTool::measure_volume(), moab::MergeMesh::merge_all(), moab::MergeMesh::merge_higher_dimensions(), moab::Coupler::nat_param(), moab::Util::normal(), moab::DualTool::order_chord(), moab::ParallelComm::pack_entity_seq(), moab::LloydSmoother::perform_smooth(), moab::GeomQueryTool::poly_solid_angle(), moab::DualTool::print_cell(), moab::FBEngine::print_debug_triangle(), print_vertex_fields(), moab::SmoothFace::project_to_facet(), moab::VerdictWrapper::quality_measure(), moab::AdaptiveKDTree::ray_intersect_triangles(), moab::OrientedBoxTreeTool::ray_intersect_triangles(), moab::Skinner::remove_adjacency(), moab::GeomTopoTool::restore_topology_from_adjacency(), moab::ElemEvaluator::set_ent_handle(), moab::Intx2MeshInPlane::setup_tgt_cell(), moab::Intx2MeshOnSphere::setup_tgt_cell(), moab::IntxRllCssphere::setup_tgt_cell(), moab::FBEngine::smooth_new_intx_points(), moab::OrientedBoxTreeTool::sphere_intersect_triangles(), moab::AdaptiveKDTree::sphere_intersect_triangles(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_boundary(), moab::split_box(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::FBEngine::split_internal_edge(), moab::FBEngine::split_quads(), moab::FBEngine::split_surface_with_direction(), moab::SmoothCurve::start_coordinates(), moab::ExoIIUtil::static_get_element_type(), moab::SmoothCurve::u_from_position(), moab::WriteCCMIO::write_cells_and_faces(), moab::WriteNCDF::write_elementblocks(), moab::WriteVtk::write_elems(), moab::WriteCCMIO::write_external_faces(), moab::WriteAns::write_file(), moab::WriteGmsh::write_file(), moab::WriteSmf::write_file(), moab::WriteSLAC::write_matsets(), moab::WriteTemplate::write_matsets(), and moab::WriteNCDF::write_poly_faces().
|
pure virtual |
Gets the connectivity for a vector of elements.
Corner vertices or all vertices (including higher-order nodes, if any) are returned. For non-element handles (ie, MB_MeshSets), returns an error. Connectivity data is copied from the database into the vector. Connectivity of a vertex is the same vertex. The nodes in connectivity are properly ordered according to that element's canonical ordering.
entity_handles | Vector of element handles to get connectivity of. |
num_handles | Number of entity handles in entity_handles |
connectivity | Vector in which connectivity of entity_handles is returned. |
corners_only | If true, returns only corner vertices, otherwise returns all of them (including any higher-order vertices) |
offsets | If non-NULL, offsets->[i] stores the index of the start of entity i's connectivity, with the last value in offsets one beyond the last entry |
Implemented in moab::Core.
|
pure virtual |
Gets a pointer to constant connectivity data of entity_handle
Sets number_nodes equal to the number of nodes of the entity_handle . Faster then the other get_connectivity function because no data is copied. The nodes in 'connectivity' are properly ordered according to the element's canonical ordering.
Example:
Example2:
entity_handle | EntityHandle to get connectivity of. |
connectivity | Array in which connectivity of entity_handle is returned. |
num_nodes | Number of MeshVertices in array connectivity. |
corners_only | If true, returns only corner vertices, otherwise returns all of them (including any higher-order vertices) |
storage | Some elements (e.g. structured mesh) may not have an explicit connectivity list. This function will normally return MB_NOT_IMPLEMENTED for such elements. However, if the caller passes in a non-null value for this argument, space will be allocated in this vector for the connectivity data and the connectivity pointer will be set to the data in this vector. |
Implemented in moab::Core.
|
pure virtual |
Gets the connectivity for elements.
Same as vector-based version except range is returned (unordered!)
Implemented in moab::Core.
|
pure virtual |
Get the connectivity array for all entities of the specified entity type.
This function returns the connectivity of just the corner vertices, no higher order nodes
type | The entity type of elements whose connectivity is to be returned |
connect | an STL vector used to return connectivity array (in the form of entity handles) |
Implemented in moab::Core.
|
pure virtual |
Get mesh sets contained in a mesh set.
If num_hops is 1, only immediate contents are returned. Otherwise a recursive query of all contained sets is performed, returning every visted set. The value of num_hops limites the depth of the search, with zero indicating no depth limit.
meshset | The mesh set whose contents are being queried |
contained | The result list. |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
|
pure virtual |
Get mesh sets contained in a mesh set.
If num_hops is 1, only immediate contents are returned. Otherwise a recursive query of all contained sets is performed, returning every visted set. The value of num_hops limites the depth of the search, with zero indicating no depth limit.
meshset | The mesh set whose contents are being queried |
contained | The result list. |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
|
pure virtual |
Gets xyz coordinate information for vector of vertices.
Identical to range-based function, except entity handles are specified using a 1d vector and vector length.
Implemented in moab::Core.
|
pure virtual |
Gets xyz coordinate information for range of vertices.
Length of 'coords' should be at least 3*entity_handles.size() before making call.
entity_handles | Range of vertex handles (error if not of type MBVERTEX) |
coords | Array used to return x, y, and z coordinates. |
Example:
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::A_is_in_B(), moab::VerdictWrapper::all_quality_measures(), moab::SmoothFace::area(), moab::area_coordinates(), moab::WriteSTL::ascii_write_triangles(), moab::DualTool::atomic_pillow(), moab::AdaptiveKDTree::best_subdivision_snap_plane(), moab::AdaptiveKDTree::best_vertex_median_plane(), moab::AdaptiveKDTree::best_vertex_sample_plane(), moab::WriteSTL::binary_write_triangles(), moab::GeomQueryTool::boundary_case(), moab::box_from_axes(), moab::AxisBox::calculate(), moab::Util::centroid(), moab::FBEngine::chain_able_edge(), moab::OrientedBoxTreeTool::closest_to_location(), compute_area(), moab::SmoothCurve::compute_control_points_on_boundary_edges(), moab::OrientedBox::compute_from_vertices(), moab::SmoothFace::compute_internal_control_points_on_facets(), moab::FBEngine::compute_intersection_points(), moab::SmoothFace::compute_tangents_for_each_edge(), moab::Intx2MeshInPlane::computeIntersectionBetweenTgtAndSrc(), moab::Intx2MeshOnSphere::computeIntersectionBetweenTgtAndSrc(), moab::IntxRllCssphere::computeIntersectionBetweenTgtAndSrc(), moab::BVHTree::construct_element_vec(), moab::TempestRemapper::ConstructCoveringSet(), moab::TempestRemapper::convert_mesh_to_tempest_private(), moab::TempestRemapper::convert_overlap_mesh_sorted_by_source(), moab::OrientedBox::covariance_data_from_tris(), moab::ReadABAQUS::create_instance_of_part(), DeformMeshRemap::deform_master(), moab::SmoothCurve::end_coordinates(), moab::SmoothFace::eval_bezier_patch(), moab::SmoothFace::evaluate_smooth_edge(), moab::SmoothCurve::evaluate_smooth_edge(), moab::DualTool::face_shrink(), moab::SmoothFace::facet_area_coordinate(), moab::MergeMesh::find_merged_to(), moab::GeomQueryTool::find_volume(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::TempestRemapper::GenerateMeshMetadata(), moab::MeshTopoUtil::get_average_position(), moab::Coupler::get_group_integ_vals(), moab::GeomQueryTool::get_normal(), iMOAB_GetVisibleVerticesCoordinates(), moab::SmoothFace::init_bezier_edge(), moab::SmoothFace::init_gradient(), moab::Coupler::initialize_tree(), moab::AdaptiveKDTree::intersect_children_with_elems(), moab::Intx2Mesh::intersect_meshes(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::SmoothFace::is_at_vertex(), moab::ParallelComm::list_entities(), moab::SpatialLocator::locate_points(), moab::Coupler::locate_points(), main(), moab::GeomQueryTool::measure_area(), moab::GeomQueryTool::measure_volume(), moab::Coupler::nat_param(), moab::Util::normal(), moab::ParallelComm::pack_entities(), ZoltanPartitioner::partition_inferred_mesh(), ZoltanPartitioner::partition_owned_cells(), moab::LloydSmoother::perform_smooth(), moab::GeomQueryTool::poly_solid_angle(), moab::ParallelMergeMesh::PopulateMyTup(), moab::FBEngine::print_debug_triangle(), moab::SmoothFace::project_to_facet(), moab::putElementField(), moab::putSpectralElementField(), moab::putVertexField(), moab::VerdictWrapper::quality_measure(), moab::AdaptiveKDTree::ray_intersect_triangles(), moab::OrientedBoxTreeTool::ray_intersect_triangles(), moab::ElemEvaluator::set_ent_handle(), moab::ParallelComm::settle_intersection_points(), moab::Intx2MeshInPlane::setup_tgt_cell(), moab::Intx2MeshOnSphere::setup_tgt_cell(), moab::IntxRllCssphere::setup_tgt_cell(), moab::FBEngine::smooth_new_intx_points(), moab::OrientedBoxTreeTool::sphere_intersect_triangles(), moab::AdaptiveKDTree::sphere_intersect_triangles(), moab::split_box(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::FBEngine::split_quads(), moab::FBEngine::split_surface_with_direction(), moab::SmoothCurve::start_coordinates(), moab::SmoothCurve::u_from_position(), moab::ReadNCDF::update(), moab::FBEngine::weave_lateral_face_from_edges(), moab::WriteCGNS::write_coord_cgns(), moab::WriteAns::write_file(), moab::WriteGmsh::write_file(), moab::WriteSmf::write_file(), moab::WriteVtk::write_nodes(), and DeformMeshRemap::write_to_coords().
|
pure virtual |
Get vertex coordinates in blocks by dimension.
Get the X, Y, and Z coordinates of a group of vertices. Coordinates are returned in separate arrays, one for each dimension. Each coordinate array must be of sufficient length to hold the coordinate value for each vertex. Array pointers may be NULL if coordinates in the the respective dimension are not desired.
entity_handles | The group of vertex handles for which to get the coordiantes. |
x_coords | Output: the X coordinate of each vertex. May be NULL. |
y_coords | Output: the Y coordinate of each vertex. May be NULL. |
z_coords | Output: the Z coordinate of each vertex. May be NULL. |
Implemented in moab::Core.
|
pure virtual |
Get overall geometric dimension.
Implemented in moab::Core.
Referenced by moab::ParallelMergeMesh::PerformMerge(), moab::ReadHDF5::read_nodes(), moab::WriteNCDF::write_file(), moab::WriteGMV::write_file(), moab::WriteHDF5::write_file_impl(), and moab::WriteHDF5::write_nodes().
|
pure virtual |
Retrieves all entities of a given topological dimension in the database or meshset.
Appends entities to list passed in.
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
dimension | Topological dimension of entities desired. |
entities | Range in which entities of dimension dimension are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves if true. |
Example:
Implemented in moab::Core.
Referenced by MetisPartitioner::assemble_graph(), ZoltanPartitioner::assemble_graph(), MetisPartitioner::assemble_taggedents_graph(), moab::ParallelComm::assign_global_ids(), moab::TempestRemapper::assign_vertex_element_IDs(), moab::FBEngine::boundary_mesh_edges_on_face(), moab::FBEngine::boundary_nodes_on_face(), moab::MeshGeneration::BrickInstance(), moab::OrientedBoxTreeTool::build_sets(), moab::NCHelperGCRM::check_existing_mesh(), moab::NCHelperHOMME::check_existing_mesh(), moab::NCHelperMPAS::check_existing_mesh(), moab::GeomTopoTool::check_model(), moab::OrientedBoxTreeTool::closest_to_location(), moab::NCWriteGCRM::collect_mesh_info(), moab::ScdNCWriteHelper::collect_mesh_info(), moab::NCWriteHOMME::collect_mesh_info(), moab::NCWriteMPAS::collect_mesh_info(), moab::TempestRemapper::ComputeOverlapMesh(), moab::DualTool::construct_dual(), moab::GeomTopoTool::construct_obb_tree(), moab::TempestRemapper::ConstructCoveringSet(), moab::TempestRemapper::convert_mesh_to_tempest_private(), moab::TempestRemapper::convert_overlap_mesh_sorted_by_source(), moab::ReadABAQUS::create_instance_of_part(), moab::ParallelComm::create_interface_sets(), moab::NCHelperDomain::create_mesh(), moab::NCHelperScrip::create_mesh(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::Intx2Mesh::FindMaxEdgesInSet(), moab::WriteHDF5::gather_all_mesh(), moab::ParallelComm::gather_data(), moab::WriteCCMIO::gather_matset_info(), moab::WriteHDF5::gather_mesh_info(), moab::WriteCCMIO::gather_neuset_info(), moab::GeomTopoTool::geometrize_surface_set(), moab::WriteCGNS::get_cell_entities(), moab::WriteCGNS::get_edge_entities(), moab::WriteCGNS::get_face_entities(), moab::ParallelComm::get_ghosted_entities(), moab::ParallelComm::get_iface_entities(), get_imesh_mesh(), moab::ParallelComm::get_part_entities(), moab::ParallelComm::get_pstatus_entities(), moab::ReadABAQUS::get_set_elements(), moab::ReadABAQUS::get_set_nodes(), moab::WriteCGNS::get_vertex_entities(), iMOAB_GetMeshInfo(), iMOAB_GetPointerToSurfaceBC(), iMOAB_GetPointerToVertexBC(), iMOAB_UpdateMeshInfo(), moab::Intx2Mesh::intersect_meshes(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::OrientedBoxTreeTool::join_trees(), moab::ReadABAQUS::load_file(), main(), moab::GeomQueryTool::measure_area(), moab::GeomQueryTool::measure_volume(), moab::Coupler::nat_param(), moab::DualTool::order_chord(), ZoltanPartitioner::partition_inferred_mesh(), ZoltanPartitioner::partition_mesh_and_geometry(), moab::GeomQueryTool::point_in_volume_slow(), moab::ParallelMergeMesh::PopulateMySkinEnts(), moab::AdaptiveKDTree::print(), moab::putElementField(), moab::putSpectralElementField(), moab::ReadABAQUS::read_element_list(), moab::ScdNCHelper::read_scd_variables_to_nonset_allocate(), moab::NCHelperGCRM::read_ucd_variables_to_nonset_allocate(), moab::NCHelperHOMME::read_ucd_variables_to_nonset_allocate(), moab::NCHelperMPAS::read_ucd_variables_to_nonset_allocate(), moab::FBEngine::redistribute_boundary_edges_to_faces(), moab::ParallelComm::resolve_shared_ents(), moab::GeomTopoTool::restore_topology_from_adjacency(), run_local_smoother(), moab::ScdBox::ScdBox(), moab::FBEngine::separate(), moab::FBEngine::smooth_new_intx_points(), moab::FBEngine::split_boundary(), moab::ScdInterface::tag_shared_vertices(), moab::Intx2MeshOnSphere::update_tracer_data(), moab::WriteNCDF::write_file(), and moab::WriteGmsh::write_file().
|
pure virtual |
Retrieves all entities of a given topological dimension in the database or meshset.
Appends entities to list passed in.
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
dimension | Topological dimension of entities desired. |
entities | Range in which entities of dimension dimension are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves if true. |
Example:
Implemented in moab::Core.
|
pure virtual |
Returns all entities in the data base or meshset, in a range (order not preserved)
Appends entities to list passed in.
meshset | Meshset whose entities are being queried (zero if query is for the entire mesh). |
entities | Range in which entities are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves if true. |
Example:
Implemented in moab::Core.
Referenced by MetisPartitioner::assemble_taggedsets_graph(), moab::AdaptiveKDTree::best_subdivision_plane(), moab::AdaptiveKDTree::best_subdivision_snap_plane(), moab::AdaptiveKDTree::best_vertex_median_plane(), moab::AdaptiveKDTree::best_vertex_sample_plane(), moab::AxisBox::calculate(), moab::GeomTopoTool::check_model(), moab::WriteHDF5Parallel::communicate_shared_set_data(), moab::DualTool::construct_hp_parent_child(), moab::GeomTopoTool::construct_vertex_ranges(), moab::SpectralMeshTool::convert_to_coarse(), moab::WriteHDF5::count_set_size(), moab::ParallelComm::create_iface_pc_links(), moab::ReadParallel::delete_nonlocal_entities(), moab::GeomTopoTool::duplicate_model(), moab::ParallelComm::estimate_sets_buffer_size(), moab::DualTool::face_shrink(), moab::ElemEvaluator::find_containing_entity(), moab::Skinner::find_geometric_skin(), moab::MergeMesh::find_merged_to(), DeformMeshRemap::find_other_sets(), moab::BVHTree::find_point(), moab::DualTool::foc_delete_dual(), moab::DualTool::fs_get_quads(), moab::WriteVtk::gather_mesh(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::DualTool::get_dual_entities(), moab::ParallelComm::get_ghosted_entities(), moab::DualTool::get_graphics_points(), moab::ParallelComm::get_iface_entities(), moab::Coupler::get_matching_entities(), moab::WriteCCMIO::get_neuset_elems(), moab::WriteSLAC::get_neuset_elems(), moab::WriteTemplate::get_neuset_elems(), moab::DualTool::get_opposite_verts(), moab::ParallelComm::get_part_entities(), moab::ParallelComm::get_pstatus_entities(), moab::WriteNCDF::get_sideset_elems(), iMOAB_DeregisterApplication(), iMOAB_GetBlockElementConnectivities(), iMOAB_GetBlockInfo(), iMOAB_GetElementID(), iMOAB_GetElementOwnership(), iMOAB_GetVisibleElementsInfo(), ZoltanPartitioner::include_closure(), moab::DualTool::is_blind(), moab::GeomTopoTool::is_owned_set(), moab::ReadParallel::load_file(), moab::ReadNCDF::load_file(), moab::Tqdcfr::load_file(), main(), moab::MergeMesh::merge_all(), moab::AdaptiveKDTree::merge_leaf(), moab::BSPTree::merge_leaf(), moab::Coupler::normalize_mesh(), moab::ParallelComm::pack_sets(), moab::OrientedBoxTreeTool::ray_intersect_triangles(), DeformMeshRemap::read_file(), moab::ReadNCDF::read_nodesets(), moab::FBEngine::redistribute_boundary_edges_to_faces(), remove_entities_from_sets(), moab::ParallelComm::resolve_shared_ents(), moab::ParallelComm::resolve_shared_sets(), moab::DualTool::rev_face_shrink(), moab::ParallelComm::set_partitioning(), moab::OrientedBoxTreeTool::sphere_intersect_triangles(), moab::ParallelComm::tag_iface_entities(), moab::ParallelMergeMesh::TagSharedElements(), moab::TreeStats::traverse(), MetisPartitioner::write_aggregationtag_partition(), moab::WriteAns::write_file(), moab::WriteGmsh::write_file(), and moab::WriteDamsel::write_sets().
|
pure virtual |
Returns all entities in the data base or meshset, in a vector (order preserved)
Appends entities to list passed in.
meshset | Meshset whose entities are being queried (zero if query is for the entire mesh). |
entities | STL vector in which entities are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves if true. |
Example:
Implemented in moab::Core.
|
pure virtual |
Retrieve all entities of a given type in the database or meshset.
Appends entities to list passed in.
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
type | Type of entities to be returned |
entities | Range in which entities of type type are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves. Specifying both recursive=true and type=MBENTITYSET is an error, as it would always result in an empty list. |
Example:
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::A_is_in_B(), moab::ParallelComm::add_verts(), moab::ReadMCNP5::average_with_existing_tally(), moab::FBEngine::chain_able_edge(), moab::DualTool::check_dual_adjs(), moab::GeomTopoTool::check_model(), moab::OrientedBoxTreeTool::closest_to_location(), moab::SmoothCurve::compute_control_points_on_boundary_edges(), moab::SmoothCurve::compute_tangents_for_each_edge(), moab::ScdNCHelper::create_quad_coordinate_tag(), moab::AdaptiveKDTree::find_close_triangle(), moab::WriteHDF5::gather_all_mesh(), moab::WriteHDF5::gather_mesh_info(), moab::DualTool::get_dual_entities(), get_imesh_mesh(), moab::Tqdcfr::get_mesh_entities(), moab::ReadABAQUS::get_nodes_by_id(), moab::FBEngine::get_nodes_from_edge(), moab::WriteSTL::get_triangles(), iMOAB_DeregisterApplication(), iMOAB_UpdateMeshInfo(), ZoltanPartitioner::include_closure(), moab::SmoothFace::init_gradient(), moab::Skinner::initialize(), TriStats::leaf(), moab::DualTool::list_entities(), moab::ReadParallel::load_file(), moab::WriteGMV::local_write_mesh(), main(), moab::GeomQueryTool::measure_area(), moab::GeomQueryTool::measure_volume(), moab::DualTool::next_loop_vertex(), moab::AdaptiveKDTree::print(), moab::TreeNodePrinter::print_contents(), moab::putVertexField(), moab::AdaptiveKDTree::ray_intersect_triangles(), moab::OrientedBoxTreeTool::ray_intersect_triangles(), moab::Tqdcfr::read_block(), moab::Tqdcfr::read_nodes(), moab::ReadNCDF::read_sidesets(), remove_entities_from_sets(), replace_surface(), moab::ParallelComm::resolve_shared_sets(), moab::FBEngine::separate(), moab::FBEngine::smooth_new_intx_points(), moab::OrientedBoxTreeTool::sphere_intersect_triangles(), moab::AdaptiveKDTree::sphere_intersect_triangles(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_edge_at_mesh_node(), moab::FBEngine::split_quads(), moab::FBEngine::split_surface(), moab::ScdInterface::tag_shared_vertices(), moab::ReadNCDF::update(), moab::WriteAns::write_file(), moab::WriteSmf::write_file(), and moab::Tqdcfr::~Tqdcfr().
|
pure virtual |
Retrieve all entities of a given type in the database or meshset.
Appends entities to list passed in.
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
type | Type of entities to be returned |
entities | Range in which entities of type type are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves. Specifying both recursive=true and type=MBENTITYSET is an error, as it would always result in an empty list. |
Example:
Implemented in moab::Core.
|
pure virtual |
Retrieve entities in the database or meshset which have any or all of the tag(s) and (optionally) value(s) specified.
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
type | Type of entities to be returned |
tag_handles | Vector of tag handles entities must have |
values | Vector of pointers to values of tags in tag_handles |
num_tags | Number of tags and values in tag_handles and values |
entities | Range in which entities are returned. |
condition | Boolean condition, either Interface::UNION or Interface::INTERSECT |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves. Specifying both recursive=true and type=MBENTITYSET is an error, as it would always result in an empty list. |
If Interface::UNION is specified as the condition, entities with any of the tags and values specified are returned. If Interface::INTERSECT is specified, only entities with all of the tags/values are returned.
If values is NULL, entities with the specified tags and any corresponding values are returned. Note that if values is non-NULL, it is a vector of pointers to tag values.
Example:
Implemented in moab::Core.
Referenced by MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::DualTool::atomic_pillow(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::ReadMCNP5::average_with_existing_tally(), moab::ParallelComm::check_global_ids(), moab::Tqdcfr::convert_nodesets_sidesets(), moab::ReadIDEAS::create_elements(), moab::ReadABAQUS::create_instance_of_part(), moab::ReadParallel::create_partition_sets(), moab::ReadGmsh::create_sets(), moab::Skinner::deinitialize(), moab::ReadParallel::delete_nonlocal_entities(), moab::DualTool::delete_whole_dual(), moab::GeomTopoTool::entity_by_id(), moab::ParallelComm::exchange_tags(), moab::BSPTree::find_all_trees(), moab::Tree::find_all_trees(), moab::ScdInterface::find_boxes(), moab::Skinner::find_geometric_skin(), moab::GeomTopoTool::find_geomsets(), DeformMeshRemap::find_other_sets(), moab::FBEngine::find_vertex_set_for_node(), moab::DualTool::get_dual_entities(), moab::DualTool::get_dual_hyperplanes(), moab::GeomTopoTool::get_gsets_by_dimension(), moab::ParallelData::get_interface_sets(), moab::Coupler::get_matching_entities(), moab::ParallelData::get_partition_sets(), moab::ReadABAQUS::get_set_by_name(), moab::WriteCCMIO::get_sets(), moab::WriteHDF5::get_sparse_tagged_entities(), moab::FBEngine::getNumOfType(), iMOAB_CreateElements(), iMOAB_GetMeshInfo(), iMOAB_UpdateMeshInfo(), moab::Coupler::initialize_spectral_elements(), moab::ReadABAQUS::load_file(), moab::ReadMCNP5::load_one_file(), main(), merge_input_surfs(), ZoltanPartitioner::partition_inferred_mesh(), moab::WriteHDF5Parallel::print_shared_sets(), DeformMeshRemap::read_file(), moab::ParallelComm::reduce_tags(), moab::ParallelComm::resolve_shared_sets(), moab::GeomTopoTool::setup_implicit_complement(), moab::ParallelComm::unpack_sets(), moab::ReadNCDF::update(), moab::TreeNodePrinter::visit(), MetisPartitioner::write_aggregationtag_partition(), moab::WriteNCDF::write_file(), moab::WriteAns::write_file(), moab::WriteGmsh::write_file(), moab::WriteSLAC::write_file(), moab::WriteTemplate::write_file(), MetisPartitioner::write_partition(), ZoltanPartitioner::write_partition(), moab::WriteCCMIO::write_problem_description(), and moab::WriteVtk::write_tags().
|
pure virtual |
Return string representation of given error code.
code | Error code for which string is wanted |
Implemented in moab::Core.
|
pure virtual |
Return information about the last error.
info | std::string into which information on the last error is written. |
Implemented in moab::Core.
Referenced by chkerr(), moab::ReadHDF5::load_file(), and main().
|
pure virtual |
Get the options of a mesh set.
Get the options of a mesh set.
ms_handle | Handle for mesh set being queried |
options | Bit mask in which mesh set options are returned |
Implemented in moab::Core.
Referenced by moab::WriteHDF5Parallel::communicate_shared_set_data(), moab::ParallelComm::estimate_sets_buffer_size(), moab::WriteHDF5::get_set_info(), moab::ParallelComm::pack_sets(), and moab::WriteDamsel::write_sets().
|
pure virtual |
Return the number of entities of given dimension in the database or meshset.
meshset | Meshset whose entities are being queried (zero if query is for the entire mesh). |
dimension | Dimension of entities desired. |
num_entities | Number of entities of the given dimension |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves if true. |
Implemented in moab::Core.
Referenced by moab::ScdNCHelper::check_existing_mesh(), moab::Skinner::find_skin_vertices(), and moab::AdaptiveKDTree::print().
|
pure virtual |
Returns number of entities in the data base or meshset.
Identical to get-entities_by_handle, except number instead of entities are returned
meshset | Meshset whose entities are being queried (zero if query is for the entire mesh). |
num_entities | Range in which num_entities are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves if true. |
Implemented in moab::Core.
Referenced by moab::AdaptiveKDTree::build_tree(), moab::ParallelComm::check_clean_iface(), moab::AdaptiveKDTree::compute_depth(), moab::ParallelComm::estimate_sets_buffer_size(), moab::DualTool::foc_delete_dual(), moab::WriteHDF5::get_set_info(), moab::AdaptiveKDTree::print(), moab::OrientedBoxTreeTool::recursive_stats(), MetisPartitioner::write_aggregationtag_partition(), MetisPartitioner::write_partition(), and ZoltanPartitioner::write_partition().
|
pure virtual |
Retrieve the number of entities of a given type in the database or meshset.
Identical to get_entities_by_dimension, except returns number instead of entities
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
type | Type of entities to be returned |
num_entities | Number of entities of type type |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves. Specifying both recursive=true and type=MBENTITYSET is an error, as it would always result in an empty list. |
Implemented in moab::Core.
Referenced by moab::DualTool::construct_dual_hyperplanes(), TriCounter::leaf(), moab::TreeNodePrinter::print_counts(), and moab::FBEngine::split_quads().
|
pure virtual |
Retrieve number of entities in the database or meshset which have any or all of the tag(s) and (optionally) value(s) specified.
Identical to get_entities_by_type_and_tag, except number instead of entities are returned
meshset | Meshset whose entities are being queried (zero if query is for entire mesh). |
type | Type of entities to be returned |
tag_handles | Vector of tag handles entities must have |
values | Vector of pointers to values of tags in tag_handles |
num_tags | Number of tags and values in tag_handles and values |
num_entities | Range in which number of entities are returned. |
recursive | If true, meshsets containing meshsets are queried recursively. Returns the contents of meshsets, but not the meshsets themselves. Specifying both recursive=true and type=MBENTITYSET is an error, as it would always result in an empty list. |
Implemented in moab::Core.
Referenced by moab::WriteCGNS::get_set_entities().
|
pure virtual |
Get parent mesh sets of a mesh set.
If num_hops is 1, only immediate parents are returned. If num_hops is zero, all ancenstors are returned. Otherwise, num_hops specifies the maximum number of generations to traverse.
meshset | The mesh set whose parents are being queried |
parents | Range holding the parents returned by this function |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
|
pure virtual |
Get parent mesh sets of a mesh set.
If num_hops is 1, only immediate parents are returned. If num_hops is zero, all ancenstors are returned. Otherwise, num_hops specifies the maximum number of generations to traverse.
meshset | The mesh set whose parents are being queried |
parents | STL vector holding the parents returned by this function |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
Referenced by moab::FBEngine::chain_able_edge(), moab::FBEngine::chain_two_edges(), moab::GeomTopoTool::check_model(), moab::WriteHDF5Parallel::communicate_shared_set_data(), moab::DualTool::foc_delete_dual(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::GeomTopoTool::generate_implicit_complement(), moab::GeomTopoTool::next_vol(), moab::GeomTopoTool::other_entity(), moab::ParallelComm::pack_sets(), moab::GeomQueryTool::ray_fire(), and moab::FBEngine::weave_lateral_face_from_edges().
|
pure virtual |
return the entity set representing the whole mesh
Implemented in moab::Core.
|
pure virtual |
Interface to control memory allocation for sequences Provide a factor that controls the size of the sequence that gets allocated. This is typically useful in the parallel setting when a-priori, the number of ghost entities and the memory required for them within the same sequence as the owned entities are unknown. The default factor is 1.0 but this can be appropriately updated at runtime so that we do not have broken sequences.
Implemented in moab::Core.
|
pure virtual |
Get blocked vertex coordinates for all vertices.
Blocked = all x, then all y, etc.
Example:
Implemented in moab::Core.
|
pure virtual |
Get parent mesh sets of a mesh set.
If num_hops is 1, only immediate parents are returned. If num_hops is zero, all ancenstors are returned. Otherwise, num_hops specifies the maximum number of generations to traverse.
meshset | The mesh set whose parents are being queried |
parents | STL vector holding the parents returned by this function |
num_hops | Number of generations to traverse (0 = all) |
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::add_geo_set(), ZoltanPartitioner::assemble_graph(), moab::ParallelComm::assign_global_ids(), moab::ScdInterface::assign_global_ids(), moab::ReadNASTRAN::assign_ids(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::ParallelComm::check_global_ids(), moab::TempestRemapper::ComputeGlobalLocalMaps(), moab::TempestRemapper::ComputeOverlapMesh(), moab::TempestRemapper::convert_mesh_to_tempest_private(), moab::TempestRemapper::convert_tempest_mesh_private(), moab::ReadIDEAS::create_elements(), moab::ReadIDEAS::create_vertices(), moab::DualTool::DualTool(), moab::GeomTopoTool::duplicate_model(), moab::GeomTopoTool::GeomTopoTool(), moab::GeomTopoTool::global_id(), iMOAB_SetDoubleTagStorageWithGid(), iMOAB_WriteMesh(), moab::Intx2Mesh::Intx2Mesh(), moab::ReadCGNS::load_file(), moab::ReadGmsh::load_file(), moab::ReadNC::load_file(), moab::ReadSms::load_file_impl(), main(), ZoltanPartitioner::partition_owned_cells(), moab::WriteHDF5Parallel::print_shared_sets(), moab::print_type_sets(), moab::ReadTetGen::read_elem_file(), moab::Tqdcfr::ModelEntry::read_header_info(), moab::ReadTetGen::read_node_file(), moab::ReadCCMIO::ReadCCMIO(), moab::ReadNCDF::ReadNCDF(), moab::ReadOBJ::ReadOBJ(), moab::ReadRTT::ReadRTT(), moab::ParallelComm::resolve_shared_ents(), moab::ParallelComm::resolve_shared_sets(), moab::GeomTopoTool::separate_by_dimension(), moab::TreeNodePrinter::TreeNodePrinter(), moab::WriteGmsh::write_file(), moab::WriteNC::write_file(), moab::WriteCCMIO::WriteCCMIO(), moab::WriteGMV::WriteGMV(), moab::WriteNCDF::WriteNCDF(), moab::WriteSLAC::WriteSLAC(), and moab::WriteTemplate::WriteTemplate().
|
pure virtual |
Gets an entity handle from the data base, if it exists, according to type and id.
Given an EntiyType and an id, this function gets the existent EntityHandle. If no such EntityHandle exits, it returns MB_ENTITY_NOT_FOUND and sets handle to zero.
type | The type of the EntityHandle to retrieve from the database. |
id | The id of the EntityHandle to retrieve from the database. |
handle | An EntityHandle of type type and id. |
Example:
Implemented in moab::Core.
Referenced by moab::Tqdcfr::read_elements().
|
pure virtual |
Find the higher-order node on a subfacet of an entity.
Given an entity and the connectivity and type of one of its subfacets, find the high order node on that subfacet, if any. The number of vertices in subfacet_conn is derived from subfacet_type and the canonical numbering for that type.
parent_handle | The element whose subfacet is being queried |
subfacet_conn | The connectivity of the subfacet being queried |
subfacet_type | The type of subfacet being queried |
high_order_node | If the subfacet has a high-order node defined on parent_handle, the handle for that node. |
Implemented in moab::Core.
|
pure virtual |
Returns the id from an EntityHandle.
handle | The EntityHandle you want to find the id of. |
Example:
Implemented in moab::Core.
Referenced by moab::DualTool::check_dual_equiv_edges(), moab::FBEngine::compute_intersection_points(), moab::Intx2MeshInPlane::computeIntersectionBetweenTgtAndSrc(), moab::Intx2MeshOnSphere::computeIntersectionBetweenTgtAndSrc(), moab::IntxRllCssphere::computeIntersectionBetweenTgtAndSrc(), moab::DualTool::construct_dual_hyperplanes(), moab::FBEngine::create_new_gedge(), moab::SmoothFace::DumpModelControlPoints(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::GeomTopoTool::geometrize_surface_set(), moab::SmoothFace::init_bezier_edge(), moab::SmoothFace::init_gradient(), moab::Intx2Mesh::intersect_meshes(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::ParallelComm::list_entities(), moab::DualTool::list_entities(), main(), moab::Coupler::nat_param(), moab::DualTool::print_cell(), moab::TreeNodePrinter::print_contents(), moab::FBEngine::print_debug_triangle(), moab::Tqdcfr::read_elements(), moab::FBEngine::separate(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_boundary(), moab::FBEngine::split_edge_at_mesh_node(), moab::FBEngine::split_edge_at_point(), moab::FBEngine::split_surface_with_direction(), moab::DualTool::traverse_hyperplane(), moab::TreeLayoutPrinter::visit(), moab::TreeNodePrinter::visit(), moab::WriteAns::write_file(), and moab::WriteGmsh::write_file().
|
pure virtual |
Returns the major.minor version number of the implementation.
version_string | If non-NULL, will be filled in with a string, possibly containing implementation-specific information |
Implemented in moab::Core.
|
pure virtual |
Intersect meshsets.
Intersect meshset1 with meshset2, placing the results in meshset1.
meshset1 | Mesh set being intersected, also used to pass back result |
meshset2 | Mesh set being intersected with meshset1 |
Implemented in moab::Core.
|
pure virtual |
List entities, or number of entities in database, to standard output.
Lists data pertaining to entities to standard output. If entities is NULL and num_entities is zero, lists only the number of entities of each type in the database. If entities is NULL and num_entities is non-zero, lists all information for all entities in the database.
entities | 1d vector of entities to list |
num_entities | Number of entities in 1d vector |
Implemented in moab::Core.
List entities to standard output.
Lists all data pertaining to entities (i.e. vertex coordinates if vertices, connectivity if elements, set membership if set). Useful for debugging, but output can become quite long for large databases.
Implemented in moab::Core.
Referenced by moab::Intx2MeshInPlane::computeIntersectionBetweenTgtAndSrc(), moab::Intx2MeshOnSphere::computeIntersectionBetweenTgtAndSrc(), moab::IntxRllCssphere::computeIntersectionBetweenTgtAndSrc(), moab::ScdNCHelper::create_mesh(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::Intx2Mesh::intersect_meshes(), moab::DualTool::list_entities(), moab::ParallelComm::list_entities(), moab::ReadParallel::load_file(), moab::Tqdcfr::load_file(), main(), and moab::ReadNCDF::update().
|
pure virtual |
List a single entity; no header printed.
Lists a single entity, including its connectivity and its adjacencies. No header is printed, because calling function might print information between header and information printed by this function.
entity | The entity to be listed. |
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::check_model(), moab::FBEngine::compute_intersection_points(), moab::FBEngine::divide_triangle(), moab::GeomTopoTool::geometrize_surface_set(), moab::DualTool::list_entities(), and moab::FBEngine::split_internal_edge().
|
pure virtual |
Load or import a file.
Load a MOAB-native file or import data from some other supported file format.
file_name | The location of the file to read. |
file_set | If non-null, this argument must be a pointer to a valid entity set handle. All entities read from the file will be added to this set. File metadata will be added to tags on the set. |
options | A list of string options, separated by semicolons (;). See README.IO for more information. Options are typically format-specific options or parallel options. If an option value is unrecognized but the file read otherwise succeeded, MB_UNHANDLED_OPTION will be returned. |
set_tag_name | The name of a tag used to designate the subset of the file to read. The name must correspond to data in the file that will be instantiated in MOAB as a tag. |
set_tag_values | If the name specified in 'set_tag_name' corresponds to a tag with a single integer value, the values in this tag can be used to further limit the subset of data written from the file to only those entities or sets that have a value for the tag that is one of the values in this array. |
num_set_tag_values | The length of set_tag_values. |
\Note file_set is passed by pointer rather than by value (where a zero handle value would indicate no set) so as to intentionally break compatibility with the previous version of this function because the behavior with respect to the file set was changed. The file_set is now an input-only argument. The previous version of this function unconditionally created a set and passed it back to the caller via a non-const reference argument.
Implemented in moab::Core.
Referenced by iMOAB_LoadMesh(), moab::Remapper::LoadNativeMesh(), main(), and DeformMeshRemap::read_file().
|
pure virtual |
Loads a mesh file into the database.
Loads the file 'file_name'; types of mesh which can be loaded depend on modules available at MB compile time. If active_block_id_list is NULL, all material sets (blocks in the ExodusII jargon) are loaded. Individual material sets can be loaded by specifying their ids in 'active_block_id_list'. All nodes are loaded on first call for a given file. Subsequent calls for a file load any material sets not loaded in previous calls.
file_name | Name of file to load into database. |
active_block_id_list | Material set/block ids to load. If NULL, ALL blocks of file_name are loaded. |
num_blocks | Number of blocks in active_block_id_list |
Example:
Implemented in moab::Core.
Referenced by main().
|
pure virtual |
Merge two entities into a single entity.
Merge two entities into a single entities, with entity_to_keep receiving adjacencies that were on entity_to_remove.
entity_to_keep | Entity to be kept after merge |
entity_to_remove | Entity to be merged into entity_to_keep |
auto_merge | If false, entity_to_keep and entity_to_remove must share the same lower-dimensional entities; if true, MB tries to merge those entities automatically |
delete_removed_entity | If true, entity_to_remove is deleted after merge is complete |
Implemented in moab::Core.
Referenced by moab::DualTool::face_open_collapse(), moab::MergeMesh::merge_higher_dimensions(), and moab::MergeMesh::perform_merge().
|
pure virtual |
Get the number of child mesh sets of a mesh set.
Identical to get_child_meshsets, only number is returned instead of actual children.
meshset | The mesh set whose children are being queried |
number | Number of children |
Implemented in moab::Core.
Referenced by moab::ParallelComm::estimate_sets_buffer_size(), moab::BSPTreeBoxIter::get_neighbors(), moab::WriteHDF5::get_set_info(), and moab::ParallelComm::pack_sets().
|
pure virtual |
Get the number of mesh sets contained in a mesh set.
Return the number of sets that would be returned by get_contained_meshsets
meshset | The initial set to begin the query from. |
number | (Output) The result count. |
num_hops | Search depth (0 => unbounded). |
Implemented in moab::Core.
|
pure virtual |
Get the number of parent mesh sets of a mesh set.
Identical to get_parent_meshsets, only number is returned instead of actual parents.
meshset | The mesh set whose parents are being queried |
number | Number of parents |
Implemented in moab::Core.
Referenced by moab::ParallelComm::estimate_sets_buffer_size(), moab::Skinner::find_geometric_skin(), moab::WriteHDF5::get_set_info(), and moab::ParallelComm::pack_sets().
|
inline |
Get a pointer to an internal MOAB interface.
Definition at line 124 of file Interface.hpp.
References ErrorCode.
Referenced by moab::MeshGeneration::BrickInstance(), moab::HalfFacetRep::check_mixed_entity_type(), moab::TempestRemapper::convert_tempest_mesh_private(), moab::BVHTree::convert_tree(), moab::NestedRefine::create_hm_storage_single_level(), create_mesh_no_holes(), create_mesh_with_holes(), moab::SpectralMeshTool::create_spectral_elems(), moab::Core::create_vertices(), moab::ReadParallel::delete_nonlocal_entities(), moab::ParallelComm::exchange_ghost_cells(), moab::Skinner::find_skin_scd(), moab::RangeSetIterator::get_next_arr(), moab::VectorSetIterator::get_next_arr(), iMOAB_CreateElements(), moab::ReadDamsel::init(), moab::ReadHDF5::init(), moab::WriteHDF5::init(), moab::ParallelComm::initialize(), list_formats(), moab::ReadNC::load_file(), main(), moab::ReadABAQUS::ReadABAQUS(), moab::ReadCCMIO::ReadCCMIO(), moab::ReadCGNS::ReadCGNS(), moab::ReadGmsh::ReadGmsh(), moab::ReadIDEAS::ReadIDEAS(), moab::ReadMCNP5::ReadMCNP5(), moab::ReadNASTRAN::ReadNASTRAN(), moab::ReadNC::ReadNC(), moab::ReadNCDF::ReadNCDF(), moab::ReadOBJ::ReadOBJ(), moab::ReadParallel::ReadParallel(), moab::ReadRTT::ReadRTT(), moab::ReadSmf::ReadSmf(), moab::ReadSms::ReadSms(), moab::ReadSTL::ReadSTL(), moab::ReadTemplate::ReadTemplate(), ReadTriangleOutput(), moab::ReadVtk::ReadVtk(), moab::ParallelComm::resolve_shared_ents(), moab::SpectralMeshTool::SpectralMeshTool(), moab::Tqdcfr::Tqdcfr(), moab::ParallelComm::unpack_entities(), moab::WriteCCMIO::WriteCCMIO(), moab::WriteCGNS::WriteCGNS(), moab::WriteDamsel::WriteDamsel(), moab::WriteGmsh::WriteGmsh(), moab::WriteGMV::WriteGMV(), moab::WriteNC::WriteNC(), moab::WriteNCDF::WriteNCDF(), moab::WriteSLAC::WriteSLAC(), moab::WriteSmf::WriteSmf(), moab::WriteSTL::WriteSTL(), moab::WriteTemplate::WriteTemplate(), and moab::WriteVtk::WriteVtk().
|
pure virtual |
Get a pointer to an internal MOAB interface.
Implemented in moab::Core.
|
inline |
constructor
Definition at line 136 of file Interface.hpp.
Referenced by moab::BVHTree::convert_tree(), moab::Core::create_vertices(), moab::RangeSetIterator::get_next_arr(), moab::VectorSetIterator::get_next_arr(), list_formats(), moab::ReadNC::load_file(), main(), ReadTriangleOutput(), moab::ReadABAQUS::~ReadABAQUS(), moab::ReadCCMIO::~ReadCCMIO(), moab::ReadCGNS::~ReadCGNS(), moab::ReadDamsel::~ReadDamsel(), moab::ReadGmsh::~ReadGmsh(), moab::ReadHDF5::~ReadHDF5(), moab::ReadMCNP5::~ReadMCNP5(), moab::ReadNASTRAN::~ReadNASTRAN(), moab::ReadNC::~ReadNC(), moab::ReadNCDF::~ReadNCDF(), moab::ReadOBJ::~ReadOBJ(), moab::ReadRTT::~ReadRTT(), moab::ReadSmf::~ReadSmf(), moab::ReadSms::~ReadSms(), moab::ReadSTL::~ReadSTL(), moab::ReadTemplate::~ReadTemplate(), moab::ReadTetGen::~ReadTetGen(), moab::ReadVtk::~ReadVtk(), moab::Tqdcfr::~Tqdcfr(), moab::WriteCCMIO::~WriteCCMIO(), moab::WriteCGNS::~WriteCGNS(), moab::WriteDamsel::~WriteDamsel(), moab::WriteGmsh::~WriteGmsh(), moab::WriteGMV::~WriteGMV(), moab::WriteHDF5::~WriteHDF5(), moab::WriteNC::~WriteNC(), moab::WriteNCDF::~WriteNCDF(), moab::WriteSLAC::~WriteSLAC(), moab::WriteSmf::~WriteSmf(), moab::WriteSTL::~WriteSTL(), moab::WriteTemplate::~WriteTemplate(), and moab::WriteVtk::~WriteVtk().
|
pure virtual |
Release reference to MB interface.
Implemented in moab::Core.
|
pure virtual |
Removes adjacencies between handles.
Adjacencies in both directions are removed.
from_handle | Entity from which adjacencies are being removed. |
to_handles | Entities to which adjacencies are being removed. |
num_handles | Number of handles in to_handles |
Referenced by moab::DualTool::atomic_pillow(), moab::DualTool::face_shrink(), moab::MeshTopoUtil::split_entities_manifold(), and moab::MeshTopoUtil::split_entity_nonmanifold().
|
pure virtual |
Remove a child mesh set from a mesh set.
Removes child_meshset from the children of parent_meshset. This function does not remove a corresponding parent link from child_meshset.
parent_meshset | The parent mesh set whose child is being removed |
child_meshset | The child being removed from parent_meshset |
Implemented in moab::Core.
Referenced by moab::AdaptiveKDTree::merge_leaf(), moab::BSPTree::merge_leaf(), moab::AdaptiveKDTree::split_leaf(), and moab::BSPTree::split_leaf().
|
pure virtual |
Remove from a meshset entities in specified vector.
Remove from a meshset entities in specified vector. If meshset has MESHSET_TRACK_OWNER option set, adjacencies in entities in entities are updated.
meshset | Mesh set being removed from |
entities | 1d vector of entities being removed from meshset |
num_entities | Number of entities in 1d vector |
Implemented in moab::Core.
|
pure virtual |
Remove from a meshset entities in specified range.
Remove from a meshset entities in specified range. If meshset has MESHSET_TRACK_OWNER option set, adjacencies in entities in entities are updated.
meshset | Mesh set being removed from |
entities | Range of entities being removed from meshset |
Implemented in moab::Core.
Referenced by moab::MeshGeneration::BrickInstance(), moab::ParallelComm::check_clean_iface(), moab::NCHelperScrip::create_mesh(), moab::ReadParallel::delete_nonlocal_entities(), moab::ParallelComm::destroy_part(), moab::DualTool::order_chord(), ZoltanPartitioner::partition_inferred_mesh(), remove_entities_from_sets(), moab::ParallelComm::remove_entities_part(), replace_surface(), moab::FBEngine::split_bedge_at_new_mesh_node(), moab::FBEngine::split_edge_at_mesh_node(), moab::FBEngine::split_quads(), moab::FBEngine::split_surface(), moab::ParallelComm::tag_iface_entities(), and moab::ReadNCDF::update().
|
pure virtual |
Remove parent and child links between mesh sets.
Removes parent/child links between child_meshset and parent_meshset.
parent | The parent mesh set being removed from child |
child | The child mesh set being removed from parent |
Implemented in moab::Core.
Referenced by moab::FBEngine::chain_two_edges(), moab::GeomTopoTool::insert_in_tree(), moab::FBEngine::redistribute_boundary_edges_to_faces(), moab::GeomTopoTool::restore_topology_from_geometric_inclusion(), moab::FBEngine::split_bedge_at_new_mesh_node(), and moab::FBEngine::split_edge_at_mesh_node().
|
pure virtual |
Remove a parent mesh set from a mesh set.
Removes parent_meshset from the parents of child_meshset. This function does not remove a corresponding child link from parent_meshset.
child_meshset | The child mesh whose parent is being removed |
parent_meshset | The parent being removed from meshset |
Implemented in moab::Core.
|
pure virtual |
Replace entities in a set with other entities.
Replace entities in a set with other entities
meshset | Mesh set being modified |
old_entities | Entities to replace |
new_entities | New entities to add |
num_entities | Number of entities in input arrays |
Implemented in moab::Core.
|
pure virtual |
Sets the connectivity for an EntityHandle. For non-element handles, return an error.
Connectivity is stored exactly as it is ordered in vector connectivity.
entity_handle | EntityHandle to set connectivity of. |
connect | Vector containing new connectivity of entity_handle. |
num_connect | Number of vertices in connect |
Example:
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::geometrize_surface_set(), moab::DualTool::rev_face_shrink(), moab::FBEngine::split_bedge_at_new_mesh_node(), and moab::MeshTopoUtil::split_entity_nonmanifold().
|
pure virtual |
Sets the xyz coordinates for a vector of vertices.
An error is returned if any entities in the vector are not vertices.
entity_handles | EntityHandle's to set coordinates of. (Must be of type MBVERTEX) |
num_entities | Number of entities in entity_handles |
coords | Array containing new xyz coordinates. |
Example:
Implemented in moab::Core.
Referenced by main(), moab::LloydSmoother::perform_smooth(), moab::ParallelComm::settle_intersection_points(), moab::FBEngine::smooth_new_intx_points(), moab::ReadNCDF::update(), and DeformMeshRemap::write_to_coords().
|
pure virtual |
Sets the xyz coordinates for a vector of vertices.
An error is returned if any entities in the vector are not vertices.
entity_handles | EntityHandle's to set coordinates of. (Must be of type MBVERTEX) |
num_entities | Number of entities in entity_handles |
coords | Array containing new xyz coordinates. |
Example:
Implemented in moab::Core.
|
pure virtual |
Set overall geometric dimension.
Returns error if setting to 3 dimensions, mesh has been created, and there are only 2 dimensions on that mesh
Implemented in moab::Core.
Referenced by moab::ReadHDF5::read_nodes().
|
pure virtual |
Set the options of a mesh set.
Set the options of a mesh set.
ms_handle | Handle for meshset whose options are being changed |
options | Bit mask of options to be used |
Implemented in moab::Core.
|
pure virtual |
Interface to control memory allocation for sequences Provide a factor that controls the size of the sequence that gets allocated. This is typically useful in the parallel setting when a-priori, the number of ghost entities and the memory required for them within the same sequence as the owned entities are unknown. The default factor is 1.0 but this can be appropriately updated at runtime so that we do not have broken sequences.
meshset | User specified multiplier (should be greater than 1.0) |
Implemented in moab::Core.
Referenced by moab::ReadParallel::load_file().
|
pure virtual |
Return the handle of the side element of a given dimension and index.
Given a parent entity and a target dimension and side number, return the handle of the entity corresponding to that side. If an entity has not been created to represent that side, one is not created by this function, and zero is returned in target_entity.
source_entity | The entity whose side is being queried. |
dim | The topological dimension of the side being queried. |
side_number | The canonical index of the side being queried. |
target_entity | The handle of the entity representing this side, if any. |
Implemented in moab::Core.
Referenced by moab::MeshTopoUtil::opposite_entity().
|
pure virtual |
Returns the side number, in canonical ordering, of child with respect to parent
Given a parent and child entity, returns the canonical ordering information side number, sense, and offset of child with respect to parent. This function returns MB_FAILURE if child is not related to parent. This function does not create adjacencies between parent and child.
parent | Parent entity to be compared |
child | Child entity to be compared |
side_number | Side number in canonical ordering of child with respect to parent |
sense | Sense of child with respect to parent, assuming ordering of child as given by get_connectivity called on child; sense is 1, -1 for forward/reverse sense, resp. |
offset | Offset between first vertex of child and first vertex of side side_number on parent |
Implemented in moab::Core.
Referenced by moab::FBEngine::BreakTriangle2(), moab::GeomTopoTool::check_model(), moab::DualTool::fs_check_quad_sense(), moab::GeomTopoTool::geometrize_surface_set(), moab::WriteSLAC::get_valid_sides(), moab::WriteTemplate::get_valid_sides(), moab::WriteNCDF::get_valid_sides(), iMOAB_GetPointerToSurfaceBC(), moab::MeshTopoUtil::opposite_entity(), moab::FBEngine::redistribute_boundary_edges_to_faces(), moab::FBEngine::separate(), and moab::FBEngine::split_internal_edge().
|
pure virtual |
Subtract meshsets.
Subtract meshset2 from meshset1, placing the results in meshset1.
meshset1 | Mesh set being subtracted from, also used to pass back result |
meshset2 | Mesh set being subtracted from meshset1 |
Implemented in moab::Core.
|
pure virtual |
Set tag data given value.
For a tag, set the values for a list of passed entity handles to the same, specified value.
tag_handle | The tag |
entity_handles | The entity handles for which to set tag values. |
tag_data | A pointer to the tag value. |
tag_sizes | For variable-length tags, the length of the tag value. This argument will be ignored for fixed-length tags. |
Implemented in moab::Core.
|
pure virtual |
Set tag data given value.
For a tag, set the values for a list of passed entity handles to the same, specified value.
tag_handle | The tag |
entity_handles | The entity handles for which to set tag values. |
tag_data | A pointer to the tag value. |
tag_sizes | For variable-length tags, the length of the tag value. This argument will be ignored for fixed-length tags. |
Implemented in moab::Core.
Referenced by moab::ParallelComm::check_clean_iface(), and moab::Skinner::find_inferred_edges().
Remove a tag from the database and delete all of its associated data.
Deletes a tag and all associated data.
Implemented in moab::Core.
Referenced by MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::MeshGeneration::BrickInstance(), moab::Skinner::classify_2d_boundary(), moab::Intx2Mesh::clean(), moab::ParallelComm::create_iface_pc_links(), moab::Intx2Mesh::createTags(), moab::Skinner::deinitialize(), moab::FBEngine::delete_smooth_tags(), moab::DualTool::delete_whole_dual(), moab::WriteHDF5Parallel::exchange_file_ids(), moab::Skinner::find_inferred_edges(), moab::Skinner::find_skin_vertices(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::Tree::get_box_tag(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::ReadParallel::load_file(), main(), moab::GeomTopoTool::restore_topology_from_adjacency(), moab::FBEngine::separate(), moab::DualTool::traverse_hyperplane(), DeformMeshRemap::write_and_save(), moab::LloydSmoother::~LloydSmoother(), moab::MergeMesh::~MergeMesh(), moab::ScdInterface::~ScdInterface(), moab::SharedSetData::~SharedSetData(), moab::Tqdcfr::~Tqdcfr(), moab::WriteCCMIO::~WriteCCMIO(), moab::WriteNCDF::~WriteNCDF(), moab::WriteSLAC::~WriteSLAC(), and moab::WriteTemplate::~WriteTemplate().
|
pure virtual |
Delete the data of a vector of entity handles and sparse tag.
Delete the data of a tag on a vector of entity handles. Only sparse tag data are deleted with this function; dense tags are deleted by deleting the tag itself using tag_delete.
tag_handle | Handle of the (sparse) tag being deleted from entity |
entity_handles | 1d vector of entity handles from which the tag is being deleted |
num_handles | Number of entity handles in 1d vector |
Implemented in moab::Core.
Referenced by MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::ParallelComm::clean_shared_tags(), moab::Tqdcfr::convert_nodesets_sidesets(), moab::ReadParallel::create_partition_sets(), moab::BSPTree::delete_tree(), moab::Tree::delete_tree_sets(), moab::GeomTopoTool::remove_root(), moab::ParallelComm::set_partitioning(), moab::ParallelComm::set_sharing_data(), MetisPartitioner::write_aggregationtag_partition(), MetisPartitioner::write_partition(), and ZoltanPartitioner::write_partition().
|
pure virtual |
Delete the data of a range of entity handles and sparse tag.
Delete the data of a tag on a range of entity handles. Only sparse tag data are deleted with this function; dense tags are deleted by deleting the tag itself using tag_delete.
tag_handle | Handle of the (sparse) tag being deleted from entity |
entity_range | Range of entities from which the tag is being deleted |
Implemented in moab::Core.
|
pure virtual |
Get pointers to tag data.
For a tag, get the values for a list of passed entity handles.
tag_handle | The tag |
entity_handles | An array of entity handles for which to retreive tag values. |
num_entities | The length of the 'entity_handles' array. |
tag_data | An array of 'const void*'. Array must be at least 'num_entitities' long. Array is populated (output) with pointers to the internal storage for the tag value corresponding to each entity handle. |
tag_sizes | The length of each tag value. Optional for fixed-length tags. Required for variable-length tags. |
Implemented in moab::Core.
Referenced by moab::NCWriteHelper::collect_variable_data(), moab::WriteHDF5::create_tag(), moab::WriteNCDF::gather_mesh_information(), moab::Coupler::get_gl_points_on_elements(), moab::ParallelComm::get_owning_part(), moab::GeomTopoTool::get_senses(), moab::WriteHDF5::get_tag_data_length(), moab::WriteNCDF::get_valid_sides(), get_vartag_data(), moab::Coupler::interp_field(), moab::Coupler::nat_param(), moab::ParallelComm::pack_tag(), moab::WriteNC::process_conventional_tags(), moab::ReadNCDF::read_nodesets(), moab::ReadNCDF::read_sidesets(), moab::NCHelper::update_time_tag_vals(), moab::WriteHDF5::write_var_len_data(), moab::WriteHDF5::write_var_len_indices(), moab::BSPTree::~BSPTree(), and moab::OrientedBoxTreeTool::~OrientedBoxTreeTool().
|
pure virtual |
Get pointers to tag data.
For a tag, get the values for a list of passed entity handles.
tag_handle | The tag |
entity_handles | The entity handles for which to retreive tag values. |
tag_data | An array of 'const void*'. Array is populated (output) with pointers to the internal storage for the tag value corresponding to each entity handle. |
tag_sizes | The length of each tag value. Optional for fixed-length tags. Required for variable-length tags. |
Implemented in moab::Core.
|
pure virtual |
Get the size of the specified tag in bytes.
Get the size of the specified tag, in bytes (MB_TAG_SPARSE, MB_TAG_DENSE, MB_TAG_MESH)
tag | Handle of the desired tag. |
bytes_per_tag | Size of the specified tag |
Implemented in moab::Core.
Referenced by moab::NCHelperGCRM::create_gather_set_vertices(), moab::NCHelperMPAS::create_gather_set_vertices(), moab::NCHelperESMF::create_local_vertices(), moab::NCHelperGCRM::create_local_vertices(), moab::NCHelperMPAS::create_local_vertices(), moab::NCHelperHOMME::create_mesh(), moab::ParallelComm::exchange_tags(), moab::ParallelComm::gather_data(), moab::WriteHDF5::get_tag_size(), moab::DataCoupler::interpolate(), moab::ReadHDF5::read_dense_tag(), moab::ReadHDF5::read_sparse_tag(), moab::ReadHDF5::read_var_len_tag(), moab::ParallelComm::reduce_tags(), moab::ParallelComm::resolve_shared_ents(), moab::ParallelComm::resolve_shared_sets(), moab::ElemEvaluator::set_tag(), moab::ElemEvaluator::set_tag_handle(), moab::WriteCCMIO::write_problem_description(), and moab::WriteCCMIO::write_str_option().
|
pure virtual |
Get the value of the indicated tag on the specified entities in the specified vector.
Get the value of the indicated tag on the specified entities; tag_data must contain enough space (i.e. tag_size*num_entities bytes) to hold all tag data. MOAB does not check whether this space is available before writing to it.
tag_handle | Tag whose values are being queried. |
entity_handles | 1d vector of entity handles whose tag values are being queried |
num_entities | Number of entities in 1d vector of entity handles |
tag_data | Pointer to memory into which tag data will be written |
Implemented in moab::Core.
Referenced by moab::Skinner::add_adjacency(), moab::ParallelComm::add_pcomm(), ZoltanPartitioner::assemble_graph(), MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::ParallelComm::assign_global_ids(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::ReadMCNP5::average_with_existing_tally(), moab::OrientedBoxTreeTool::box(), moab::DualTool::check_1d_loop_edge(), moab::DualTool::check_dual_equiv_edges(), moab::NCHelperGCRM::check_existing_mesh(), moab::NCHelperHOMME::check_existing_mesh(), moab::NCHelperMPAS::check_existing_mesh(), moab::ParallelComm::check_sent_ents(), moab::Skinner::classify_2d_boundary(), moab::ParallelComm::clean_shared_tags(), moab::NCWriteGCRM::collect_mesh_info(), moab::ScdNCWriteHelper::collect_mesh_info(), moab::NCWriteHOMME::collect_mesh_info(), moab::NCWriteMPAS::collect_mesh_info(), moab::SmoothCurve::compute_control_points_on_boundary_edges(), moab::SmoothFace::compute_control_points_on_edges(), moab::SmoothFace::compute_internal_control_points_on_facets(), moab::SmoothCurve::compute_tangents_for_each_edge(), moab::TempestRemapper::ComputeGlobalLocalMaps(), moab::TempestRemapper::ComputeOverlapMesh(), moab::Coupler::constant_interp(), moab::DualTool::construct_dual(), moab::DualTool::construct_dual_cells(), moab::DualTool::construct_dual_edges(), moab::DualTool::construct_dual_faces(), moab::DualTool::construct_dual_hyperplanes(), moab::DualTool::construct_dual_vertices(), moab::DualTool::construct_hp_parent_child(), moab::DualTool::construct_new_hyperplane(), moab::GeomTopoTool::construct_obb_tree(), moab::TempestRemapper::convert_mesh_to_tempest_private(), moab::Tqdcfr::convert_nodesets_sidesets(), moab::TempestRemapper::convert_overlap_mesh_sorted_by_source(), moab::ParallelComm::create_iface_pc_links(), moab::ReadABAQUS::create_instance_of_part(), moab::ScdNCHelper::create_mesh(), moab::ReadGmsh::create_sets(), moab::ReadHDF5::create_tag(), moab::WriteHDF5::create_tag(), moab::Coupler::create_tuples(), DeformMeshRemap::deform_master(), moab::Skinner::deinitialize(), moab::GeomTopoTool::delete_all_obb_trees(), moab::ReadParallel::delete_nonlocal_entities(), moab::GeomTopoTool::delete_obb_tree(), moab::GeomTopoTool::dimension(), moab::SmoothFace::DumpModelControlPoints(), moab::Skinner::entity_deletable(), moab::SmoothFace::eval_bezier_patch(), moab::SmoothFace::eval_bezier_patch_normal(), moab::SmoothFace::evaluate_smooth_edge(), moab::SmoothCurve::evaluate_smooth_edge(), moab::WriteHDF5Parallel::exchange_file_ids(), moab::ParallelComm::exchange_tags(), moab::DualTool::face_shrink(), moab::SmoothFace::facet_area_coordinate(), moab::ParallelComm::filter_pstatus(), moab::Intx2Mesh::filterByMask(), moab::Tree::find_all_trees(), moab::ScdInterface::find_boxes(), moab::Skinner::find_inferred_edges(), moab::Skinner::find_match(), moab::MergeMesh::find_merged_to(), moab::Skinner::find_skin_vertices_1D(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::ParallelComm::gather_data(), moab::WriteCCMIO::gather_matset_info(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::WriteCCMIO::gather_neuset_info(), moab::ParallelComm::get_all_pcomm(), moab::DualTool::get_cell_points(), moab::OrientedBoxTreeTool::get_close_tris(), moab::WriteCGNS::get_conn_table(), moab::GeomTopoTool::get_ct_children_by_dimension(), moab::DualTool::get_dual_entities(), moab::DualTool::get_dual_entity(), moab::DualTool::get_dual_hyperplane(), moab::ReadABAQUS::get_elements_by_id(), moab::DualTool::get_extra_dual_entity(), moab::WriteCCMIO::get_gids(), moab::DualTool::get_graphics_points(), moab::Coupler::get_group_integ_vals(), moab::ParallelComm::get_interface_procs(), moab::ParallelData::get_interface_sets(), moab::AdaptiveKDTree::get_last_iterator(), moab::Tqdcfr::get_mesh_entities(), moab::WriteCCMIO::get_neuset_elems(), moab::WriteSLAC::get_neuset_elems(), moab::WriteTemplate::get_neuset_elems(), moab::ReadABAQUS::get_nodes_by_id(), moab::SmoothFace::get_normals_for_vertices(), moab::SharedSetData::get_owner(), moab::ParallelComm::get_owner_handle(), moab::ParallelComm::get_owning_part(), moab::ParallelComm::get_pcomm(), moab::ParallelComm::get_pstatus(), moab::ParallelComm::get_pstatus_entities(), moab::DualTool::get_radial_dverts(), moab::ParallelComm::get_remote_handles(), moab::ScdInterface::get_scd_box(), moab::GeomTopoTool::get_sense(), moab::GeomTopoTool::get_senses(), moab::ReadABAQUS::get_set_by_name(), moab::WriteCCMIO::get_sets(), moab::ParallelComm::get_sharing_data(), moab::ParallelComm::get_sharing_parts(), moab::SharedSetData::get_sharing_procs(), moab::WriteNCDF::get_sideset_elems(), moab::AdaptiveKDTree::get_split_plane(), moab::BSPTree::get_split_plane(), moab::GeomTopoTool::get_surface_senses(), moab::WriteHDF5::get_tag_size(), moab::BSPTree::get_tree_box(), moab::AdaptiveKDTree::get_tree_iterator(), moab::WriteSLAC::get_valid_sides(), moab::WriteTemplate::get_valid_sides(), moab::WriteNCDF::get_valid_sides(), moab::TempestRemapper::GetIMasks(), moab::GeomTopoTool::global_id(), iMOAB_GetBlockID(), iMOAB_GetDoubleTagStorage(), iMOAB_GetElementID(), iMOAB_GetIntTagStorage(), iMOAB_GetPointerToSurfaceBC(), iMOAB_GetPointerToVertexBC(), iMOAB_GetVertexID(), iMOAB_GetVisibleElementsInfo(), iMOAB_SetDoubleTagStorageWithGid(), moab::SmoothFace::init_bezier_edge(), moab::SmoothFace::init_gradient(), moab::Coupler::initialize_spectral_elements(), moab::ElemEvaluator::integrate(), moab::Coupler::interp_field(), moab::Intx2Mesh::intersect_meshes(), moab::SmoothFace::is_at_vertex(), moab::ParallelComm::is_iface_proc(), moab::DualTool::list_entities(), moab::ReadNC::load_file(), moab::Remapper::LoadNativeMesh(), moab::WriteGMV::local_write_mesh(), main(), moab::WriteDamsel::map_sparse_tags(), merge_input_surfs(), moab::MergeMesh::merge_using_integer_tag(), moab::ParallelComm::pack_entities(), moab::ParallelComm::pack_sets(), moab::ParallelComm::pack_tag(), moab::Tqdcfr::parse_acis_attribs(), ZoltanPartitioner::partition_owned_cells(), moab::MergeMesh::perform_merge(), moab::LloydSmoother::perform_smooth(), moab::DualTool::print_cell(), moab::TreeNodePrinter::print_contents(), moab::WriteHDF5Parallel::print_set_sharing_data(), moab::print_type_sets(), print_vertex_fields(), moab::WriteNC::process_conventional_tags(), moab::SmoothFace::project_to_facet_plane(), moab::ReadABAQUS::read_element_list(), moab::ReadNCDF::read_nodesets(), moab::ReadNCDF::read_sidesets(), moab::ParallelComm::reduce_tags(), moab::Skinner::remove_adjacency(), moab::ParallelComm::remove_pcomm(), moab::GeomTopoTool::remove_root(), replace_surface(), moab::ParallelComm::resolve_shared_ents(), moab::ParallelComm::resolve_shared_sets(), moab::GeomTopoTool::restore_obb_index(), moab::GeomTopoTool::restore_topology_from_adjacency(), moab::DualTool::rev_atomic_pillow(), moab::ScdBox::ScdBox(), moab::FBEngine::separate(), moab::GeomTopoTool::separate_by_dimension(), moab::FBEngine::set_neumann_tags(), moab::SharedSetData::set_owner(), moab::ParallelComm::set_partitioning(), moab::ParallelComm::set_pstatus_entities(), moab::GeomTopoTool::set_sense(), moab::SharedSetData::set_sharing_procs(), moab::ElemEvaluator::set_tag(), moab::ElemEvaluator::set_tag_handle(), moab::ExoIIUtil::static_get_element_type(), moab::ParallelComm::tag_iface_entities(), moab::WriteCCMIO::transform_coords(), moab::DualTool::traverse_hyperplane(), moab::SmoothCurve::u_from_position(), moab::ParallelComm::unpack_tags(), moab::ReadNCDF::update(), moab::GQT_IntRegCtxt::update_orient(), moab::Intx2MeshOnSphere::update_tracer_data(), moab::TreeNodePrinter::visit(), MetisPartitioner::write_aggregationtag_partition(), moab::WriteNCDF::write_BCs(), moab::WriteVtk::write_bit_tag(), moab::WriteCCMIO::write_cells_and_faces(), moab::WriteCCMIO::write_dbl_option(), moab::WriteCCMIO::write_external_faces(), moab::WriteNCDF::write_file(), moab::WriteAns::write_file(), moab::WriteGmsh::write_file(), moab::WriteSLAC::write_file(), moab::WriteTemplate::write_file(), moab::WriteCCMIO::write_int_option(), moab::WriteSLAC::write_matsets(), moab::WriteTemplate::write_matsets(), moab::WriteCCMIO::write_nodes(), moab::WriteSLAC::write_nodes(), moab::WriteTemplate::write_nodes(), moab::WriteNCDF::write_nodes(), moab::NCWriteGCRM::write_nonset_variables(), moab::NCWriteHOMME::write_nonset_variables(), moab::NCWriteMPAS::write_nonset_variables(), moab::WriteCCMIO::write_problem_description(), moab::WriteCCMIO::write_str_option(), moab::WriteVtk::write_tag(), moab::WriteHDF5::write_tag_values(), DeformMeshRemap::write_to_coords(), and moab::Tqdcfr::~Tqdcfr().
|
pure virtual |
Get the value of the indicated tag on the specified entities in the specified range.
Identical to previous function, except entities are specified using a range instead of a 1d vector.
tag_handle | Tag whose values are being queried. |
entity_handles | Range of entity handles whose tag values are being queried |
tag_data | Pointer to memory into which tag data will be written |
Implemented in moab::Core.
|
pure virtual |
Get data type of tag.
Get the type of the tag data. The tag is data is assumed to be a vector of this type. If the tag data vetcor contains more than one value, then the tag size must be a multiple of the size of this type.
tag | The tag |
type | The type of the specified tag (output). |
Implemented in moab::Core.
Referenced by moab::WriteHDF5Parallel::append_serial_tag_data(), moab::WriteHDF5Parallel::check_serial_tag_data(), moab::NCWriteHelper::collect_variable_data(), moab::WriteHDF5::get_tag_size(), iMOAB_GetDoubleTagStorage(), iMOAB_GetIntTagStorage(), iMOAB_SetDoubleTagStorage(), iMOAB_SetDoubleTagStorageWithGid(), iMOAB_SetIntTagStorage(), moab::MergeMesh::merge_using_integer_tag(), parse_tag_create(), parse_tag_spec(), moab::ReadHDF5::read_dense_tag(), moab::ReadHDF5::read_sparse_tag(), moab::ReadHDF5::read_var_len_tag(), moab::ParallelComm::reduce_tags(), moab::ParallelComm::resolve_shared_ents(), moab::ParallelComm::resolve_shared_sets(), moab::ParallelComm::unpack_tags(), moab::WriteVtk::write_tag(), and moab::WriteVtk::write_tags().
|
pure virtual |
Get the default value of the specified tag.
Get the default value of the specified tag
tag | Handle of the desired tag. |
def_value | Pointer to memory where default value of the specified tag is written |
def_val
is NULL.tag_handle
is invalid. Implemented in moab::Core.
Referenced by moab::WriteHDF5Parallel::append_serial_tag_data(), moab::WriteHDF5::create_tag(), moab::WriteHDF5Parallel::create_tag_tables(), moab::ParallelComm::exchange_tags(), parse_tag_create(), moab::ParallelComm::reduce_tags(), moab::WriteHDF5::serial_create_file(), and moab::WriteVtk::write_tag().
|
pure virtual |
Get a tag handle, possibly creating the tag.
Get a handle used to associate application-defined values with MOAB entities. If the tag does not already exist then flags
should contain exactly one of MB_TAG_SPARSE
, MB_TAG_DENSE
, MB_TAG_MESH
unless type
is MB_TYPE_BIT, which implies MB_TAG_BIT
storage.
name | The tag name |
size | Tag size as number of values of of data type per entity (or number of bytes if MB_TAG_BYTES is passed in flags). If MB_TAG_VARLEN is specified, this value is taken to be the size of the default value if one is specified and is otherwise ignored. |
type | The type of the data (used for IO) |
tag_handle | Output: the resulting tag handle. |
flags | Bitwise OR of values from TagType |
default_value | Optional default value for tag. |
created | Optional returned boolean indicating that the tag was created. |
MB_ALREADY_ALLOCATED
if tag exists and MB_TAG_EXCL
is specified, or default values do not match (and MB_TAG_ANY
or MB_TAG_DFTOK
not specified).MB_TAG_NOT_FOUND
if tag does not exist and MB_TAG_CREAT
is not specifiedMB_INVALID_SIZE
if tag value size is not a multiple of the size of the data type (and MB_TAG_ANY
not specified).MB_TYPE_OUT_OF_RANGE
invalid or inconsistent parameterMB_VARIABLE_DATA_LENGTH
if MB_TAG_VARLEN
and default_value
is non-null and default_value_size
is not specified.\NOTE A call to tag_get_handle that includes a default value will fail if the tag already exists with a different default value. A call without a default value will succeed if the tag already exists, regardless of whether or not the existing tag has a default value.
Examples:
Retrieve a handle for an existing tag, returning a non-success error code if the tag does not exist or does not store 1 integer value per entity:
Get the tag handle, or create it as a dense tag if it does not already exist:
Create the tag or fail if it already exists:
Get an existing variable length tag, failing if it does not exist or is not variable-length or does not contain double values.
Get the same variable-length tag, but create it with a default value if it doesn't exist. Note that if the tag already exists this call will return a non-success error code if the existing tag has a different default value.
Implemented in moab::Core.
|
pure virtual |
same as non-const version, except that MB_TAG_CREAT flag is ignored.
Implemented in moab::Core.
|
pure virtual |
Get a tag handle, possibly creating the tag.
Get a handle used to associate application-defined values with MOAB entities. If the tag does not already exist then flags
should contain exactly one of MB_TAG_SPARSE
, MB_TAG_DENSE
, MB_TAG_MESH
unless type
is MB_TYPE_BIT, which implies MB_TAG_BIT
storage.
name | The tag name |
size | Tag size as number of values of of data type per entity (or number of bytes if MB_TAG_BYTES is passed in flags). If MB_TAG_VARLEN is specified, this value is taken to be the size of the default value if one is specified and is otherwise ignored. |
type | The type of the data (used for IO) |
tag_handle | Output: the resulting tag handle. |
flags | Bitwise OR of values from TagType |
default_value | Optional default value for tag. |
created | Optional returned boolean indicating that the tag was created. |
MB_ALREADY_ALLOCATED
if tag exists and MB_TAG_EXCL
is specified, or default values do not match (and MB_TAG_ANY
or MB_TAG_DFTOK
not specified).MB_TAG_NOT_FOUND
if tag does not exist and MB_TAG_CREAT
is not specifiedMB_INVALID_SIZE
if tag value size is not a multiple of the size of the data type (and MB_TAG_ANY
not specified).MB_TYPE_OUT_OF_RANGE
invalid or inconsistent parameterMB_VARIABLE_DATA_LENGTH
if MB_TAG_VARLEN
and default_value
is non-null and default_value_size
is not specified.\NOTE A call to tag_get_handle that includes a default value will fail if the tag already exists with a different default value. A call without a default value will succeed if the tag already exists, regardless of whether or not the existing tag has a default value.
Examples:
Retrieve a handle for an existing tag, returning a non-success error code if the tag does not exist or does not store 1 integer value per entity:
Get the tag handle, or create it as a dense tag if it does not already exist:
Create the tag or fail if it already exists:
Get an existing variable length tag, failing if it does not exist or is not variable-length or does not contain double values.
Get the same variable-length tag, but create it with a default value if it doesn't exist. Note that if the tag already exists this call will return a non-success error code if the existing tag has a different default value.
Implemented in moab::Core.
Referenced by moab::GeomTopoTool::add_geo_set(), moab::Coupler::apply_group_norm_factor(), MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::DualTool::atomic_pillow(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::ScdInterface::box_dims_tag(), moab::ScdInterface::box_periodic_tag(), moab::ScdInterface::box_set_tag(), moab::MeshGeneration::BrickInstance(), moab::ReadRTT::build_moab(), moab::GeomTopoTool::check_edge_sense_tags(), moab::NCHelperMPAS::check_existing_mesh(), moab::GeomTopoTool::check_face_sense_tag(), moab::GeomTopoTool::check_geom_tag(), moab::GeomTopoTool::check_gid_tag(), moab::WriteHDF5Parallel::check_serial_tag_data(), moab::Skinner::classify_2d_boundary(), moab::ScdNCWriteHelper::collect_mesh_info(), moab::NCWriteHelper::collect_variable_data(), moab::SmoothCurve::compute_control_points_on_boundary_edges(), moab::SmoothCurve::compute_tangents_for_each_edge(), moab::SmoothFace::compute_tangents_for_each_edge(), moab::TempestRemapper::ComputeOverlapMesh(), moab::Tqdcfr::convert_nodesets_sidesets(), moab::TempestRemapper::convert_overlap_mesh_sorted_by_source(), moab::TempestRemapper::convert_tempest_mesh_private(), moab::NCHelper::create_conventional_tags(), moab::NCHelper::create_dummy_variables(), moab::ReadIDEAS::create_elements(), moab::ParallelComm::create_iface_pc_links(), moab::ReadNASTRAN::create_materials(), moab::NCHelperDomain::create_mesh(), moab::NCHelperHOMME::create_mesh(), moab::NCHelperMPAS::create_mesh(), moab::NCHelperScrip::create_mesh(), moab::ReadParallel::create_partition_sets(), moab::ScdNCHelper::create_quad_coordinate_tag(), moab::ReadCGNS::create_sets(), moab::ReadGmsh::create_sets(), moab::ReadHDF5::create_tag(), moab::ReadMCNP5::create_tags(), moab::Coupler::create_tuples(), moab::FBEngine::create_volume_with_direction(), moab::Intx2Mesh::createTags(), DeformMeshRemap::deform_master(), moab::ReadParallel::delete_nonlocal_entities(), moab::FBEngine::delete_smooth_tags(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::GeomTopoTool::dimension(), moab::DualTool::DualTool(), moab::GeomTopoTool::duplicate_model(), moab::SmoothCurve::evaluate_smooth_edge(), moab::WriteHDF5Parallel::exchange_file_ids(), moab::ParallelComm::exchange_tags(), moab::Skinner::find_geometric_skin(), moab::GeomTopoTool::find_geomsets(), moab::Skinner::find_inferred_edges(), DeformMeshRemap::find_other_sets(), moab::Skinner::find_skin_vertices(), moab::WriteSLAC::gather_interior_exterior(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::TempestRemapper::GenerateMeshMetadata(), moab::GeomTopoTool::GeomTopoTool(), moab::Tree::get_box_tag(), moab::ReadCCMIO::get_dbl_option(), moab::DualTool::get_dual_hyperplanes(), moab::Coupler::get_group_integ_vals(), get_imesh_mesh(), moab::ReadCCMIO::get_int_option(), moab::ParallelData::get_interface_sets(), moab::Coupler::get_matching_entities(), moab::Tqdcfr::get_names(), moab::WriteCCMIO::get_neuset_elems(), moab::WriteSLAC::get_neuset_elems(), moab::WriteTemplate::get_neuset_elems(), moab::ParallelData::get_partition_sets(), moab::ParallelComm::get_pcomm(), moab::WriteNCDF::get_sideset_elems(), moab::ReadCCMIO::get_str_option(), moab::ReadABAQUS::get_tag(), moab::AxisBox::get_tag(), moab::AffineXform::get_tag(), moab::WriteHDF5::get_tag_size(), moab::NCHelper::get_tag_to_nonset(), moab::NCHelper::get_tag_to_set(), moab::TempestRemapper::GetIMasks(), moab::FBEngine::getNumOfType(), moab::ScdInterface::global_box_dims_tag(), iMOAB_DefineTagStorage(), iMOAB_Initialize(), iMOAB_WriteMesh(), ZoltanPartitioner::include_closure(), moab::SmoothFace::init_gradient(), moab::NCHelperDomain::init_mesh_vals(), moab::NCHelperEuler::init_mesh_vals(), moab::NCHelperFV::init_mesh_vals(), moab::NCHelperScrip::init_mesh_vals(), moab::BSPTree::init_tags(), moab::LloydSmoother::initialize(), moab::Skinner::initialize(), moab::Coupler::initialize_spectral_elements(), moab::Coupler::interpolate(), moab::DataCoupler::interpolate(), moab::Tqdcfr::interpret_acis_records(), moab::Intx2Mesh::intersect_meshes(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::ReadParallel::load_file(), moab::ReadNC::load_file(), moab::ReadSms::load_file_impl(), moab::ReadCCMIO::load_metadata(), moab::Remapper::LoadNativeMesh(), main(), moab::MergeMesh::merge_all(), moab::MergeMesh::merge_entities(), moab::MergeMesh::merge_using_integer_tag(), moab::Coupler::normalize_subset(), moab::ParallelComm::pack_sets(), moab::Tqdcfr::parse_acis_attribs(), moab::ReadTetGen::parse_attr_list(), parse_tag_create(), parse_tag_spec(), moab::ScdInterface::part_method_tag(), moab::ParallelComm::partition_tag(), moab::ParallelComm::pcomm_tag(), moab::LloydSmoother::perform_smooth(), moab::WriteHDF5Parallel::print_shared_sets(), moab::print_type_sets(), moab::WriteNC::process_conventional_tags(), moab::Tqdcfr::process_sideset_10(), moab::Tqdcfr::process_sideset_11(), moab::ReadDamsel::process_tags(), moab::ParallelComm::pstatus_tag(), moab::Tqdcfr::put_into_set(), moab::putElementField(), moab::putSpectralElementField(), moab::putVertexField(), moab::Tqdcfr::read_block(), moab::ReadTetGen::read_elem_file(), DeformMeshRemap::read_file(), moab::Tqdcfr::read_group(), moab::Tqdcfr::ModelEntry::read_header_info(), moab::Tqdcfr::BlockHeader::read_info_header(), moab::Tqdcfr::GeomHeader::read_info_header(), moab::Tqdcfr::GroupHeader::read_info_header(), moab::Tqdcfr::NodesetHeader::read_info_header(), moab::Tqdcfr::SidesetHeader::read_info_header(), moab::Tqdcfr::read_nodes(), moab::Tqdcfr::read_nodeset(), moab::Tqdcfr::read_sideset(), moab::ReadNCDF::read_sidesets(), moab::ReadCCMIO::ReadCCMIO(), moab::ReadNCDF::ReadNCDF(), moab::ReadOBJ::ReadOBJ(), moab::ReadRTT::ReadRTT(), moab::ParCommGraph::receive_mesh(), moab::ParallelComm::reduce_tags(), moab::ParallelComm::resolve_shared_ents(), moab::ParallelComm::resolve_shared_sets(), moab::GeomTopoTool::restore_topology_from_adjacency(), run_local_smoother(), moab::FBEngine::set_default_neumann_tags(), moab::FBEngine::set_neumann_tags(), moab::ParallelComm::set_partitioning(), moab::ElemEvaluator::set_tag(), moab::GeomTopoTool::setup_implicit_complement(), moab::ParallelComm::sharedh_tag(), moab::ParallelComm::sharedhs_tag(), moab::ParallelComm::sharedp_tag(), moab::ParallelComm::sharedps_tag(), moab::SharedSetData::SharedSetData(), moab::SpectralMeshTool::spectral_order_tag(), moab::SpectralMeshTool::spectral_vertices_tag(), moab::ReadHDF5::store_sets_file_ids(), moab::OrientedBox::tag_handle(), moab::Tqdcfr::Tqdcfr(), moab::WriteCCMIO::transform_coords(), moab::DualTool::traverse_hyperplane(), moab::TreeNodePrinter::TreeNodePrinter(), moab::SmoothCurve::u_from_position(), moab::ParallelComm::unpack_sets(), moab::ParallelComm::unpack_tags(), moab::NCHelper::update_time_tag_vals(), moab::Intx2MeshOnSphere::update_tracer_data(), moab::ReadVtk::vtk_read_tag_data(), MetisPartitioner::write_aggregationtag_partition(), DeformMeshRemap::write_and_save(), moab::WriteCCMIO::write_cells_and_faces(), moab::WriteCCMIO::write_dbl_option(), moab::WriteGmsh::write_file(), moab::WriteCCMIO::write_int_option(), moab::WriteSLAC::write_nodes(), moab::WriteTemplate::write_nodes(), moab::WriteNCDF::write_nodes(), MetisPartitioner::write_partition(), ZoltanPartitioner::write_partition(), moab::WriteCCMIO::write_problem_description(), moab::WriteCCMIO::write_str_option(), moab::WriteAns::WriteAns(), moab::WriteCCMIO::WriteCCMIO(), moab::WriteDamsel::WriteDamsel(), moab::WriteGMV::WriteGMV(), moab::WriteNCDF::WriteNCDF(), moab::WriteSLAC::WriteSLAC(), and moab::WriteTemplate::WriteTemplate().
|
pure virtual |
Gets the tag handle corresponding to a name.
If a tag of that name does not exist, returns MB_TAG_NOT_FOUND
tag_name | Name of the desired tag. |
tag_handle | Tag handle corresponding to tag_name |
Implemented in moab::Core.
|
pure virtual |
Get the array length of a tag.
Get the size of the specified tag, in as the number of values of the basic type (e.g. number of integer values for each tag value if the data type is MB_TYPE_INTEGER). Gives number of bits for bit tags and is the same as tag_get_bytes
for MB_TYPE_OPAQUE tags.
tag | Handle of the desired tag. |
length | Size of the specified tag |
Implemented in moab::Core.
Referenced by moab::WriteHDF5Parallel::append_serial_tag_data(), moab::WriteHDF5Parallel::check_serial_tag_data(), moab::WriteHDF5Parallel::create_tag_tables(), moab::ParallelData::get_interface_sets(), moab::WriteHDF5::get_tag_size(), iMOAB_GetDoubleTagStorage(), iMOAB_GetIntTagStorage(), iMOAB_SetDoubleTagStorage(), iMOAB_SetDoubleTagStorageWithGid(), iMOAB_SetIntTagStorage(), moab::WriteDamsel::init_tag_info(), moab::DataCoupler::interpolate(), parse_tag_create(), parse_tag_spec(), moab::WriteNC::process_conventional_tags(), moab::WriteHDF5::serial_create_file(), moab::ElemEvaluator::set_tag(), moab::ElemEvaluator::set_tag_handle(), moab::ParallelComm::unpack_tags(), moab::Intx2MeshOnSphere::update_tracer_data(), moab::WriteVtk::write_bit_tag(), moab::WriteVtk::write_tag(), and moab::WriteVtk::write_tags().
|
pure virtual |
Get the name of a tag corresponding to a handle.
tag_handle | Tag you want the name of. |
tag_name | Name string for tag_handle. |
Implemented in moab::Core.
Referenced by moab::WriteHDF5Parallel::append_serial_tag_data(), moab::ScdInterface::box_dims_tag(), moab::ScdInterface::box_periodic_tag(), moab::ScdInterface::box_set_tag(), moab::WriteHDF5Parallel::check_serial_tag_data(), moab::WriteHDF5::create_tag(), moab::WriteHDF5Parallel::create_tag_tables(), moab::ParallelComm::get_tag_send_list(), moab::WriteHDF5::get_tag_size(), moab::ScdInterface::global_box_dims_tag(), moab::TagNameCompare::operator()(), moab::ScdInterface::part_method_tag(), moab::WriteNC::process_conventional_tags(), moab::ReadHDF5::read_dense_tag(), moab::ReadHDF5::read_sparse_tag(), moab::ReadHDF5::read_var_len_tag(), moab::WriteCGNS::set_tag_values(), moab::WriteVtk::write_bit_tag(), moab::WriteHDF5::write_file_impl(), moab::WriteHDF5::write_tag(), and moab::WriteVtk::write_tag().
|
pure virtual |
Get handles for all tags defined in the mesh instance.
Get handles for all tags defined on the mesh instance.
tag_handles | STL vector of all tags |
Implemented in moab::Core.
Referenced by moab::ParallelComm::get_tag_send_list(), moab::WriteDamsel::init_tag_info(), and moab::WriteCGNS::write_file().
|
pure virtual |
Get handles for all tags defined on this entity.
Get handles for all tags defined on this entity; if zero, get all tags defined on mesh instance
entity | Entity for which you want tags |
tag_handles | STL vector of all tags defined on entity |
Implemented in moab::Core.
|
pure virtual |
Get the type of the specified tag.
Get the type of the specified tag
tag | Handle of the desired tag. |
tag_type | Type of the specified tag |
Implemented in moab::Core.
Referenced by moab::WriteHDF5Parallel::append_serial_tag_data(), MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::WriteHDF5::create_tag(), moab::WriteHDF5Parallel::create_tag_tables(), moab::ParallelComm::pack_tag(), and moab::WriteHDF5::serial_create_file().
|
pure virtual |
Access tag data via direct pointer into contiguous blocks.
Iteratively obtain direct access to contiguous blocks of tag storage. This function cannot be used with bit tags because of the compressed bit storage. This function cannot be used with variable length tags because it does not provide a mechanism to determine the length of the value for each entity. This function may be used with sparse tags, but if it is used, it will return data for a single entity at a time.
tag_handle | The handle of the tag for which to access data |
iter | The first entity for which to return data. |
end | One past the last entity for which data is desired. |
count | The number of entities for which data was returned |
data_ptr | Output: pointer to tag storage. |
allocate | If true, space for this tag will be allocated, if not it wont |
\Note If this function is called for entities for which no tag value has been set, but for which a default value exists, it will force the allocation of explicit storage for each such entity even though MOAB would normally not explicitly store tag values for such entities.
\Example:
Implemented in moab::Core.
Referenced by moab::ScdInterface::assign_global_ids(), moab::NCHelperGCRM::create_gather_set_vertices(), moab::NCHelperMPAS::create_gather_set_vertices(), moab::NCHelperESMF::create_local_cells(), moab::NCHelperMPAS::create_local_cells(), moab::NCHelperGCRM::create_local_edges(), moab::NCHelperMPAS::create_local_edges(), moab::NCHelperESMF::create_local_vertices(), moab::NCHelperGCRM::create_local_vertices(), moab::NCHelperMPAS::create_local_vertices(), moab::ScdNCHelper::create_mesh(), moab::NCHelperHOMME::create_mesh(), moab::NCHelperESMF::create_padded_local_cells(), moab::NCHelperGCRM::create_padded_local_cells(), moab::NCHelperMPAS::create_padded_local_cells(), moab::ScdNCHelper::create_quad_coordinate_tag(), moab::SpectralMeshTool::create_spectral_elems(), moab::ParallelComm::gather_data(), main(), moab::ReadDamsel::process_entity_tags(), moab::ScdNCHelper::read_scd_variables_to_nonset_allocate(), moab::NCHelperMPAS::read_ucd_variables_to_nonset(), moab::NCHelperGCRM::read_ucd_variables_to_nonset_allocate(), moab::NCHelperHOMME::read_ucd_variables_to_nonset_allocate(), moab::NCHelperMPAS::read_ucd_variables_to_nonset_allocate(), moab::Intx2MeshOnSphere::update_tracer_data(), and moab::ScdNCWriteHelper::write_nonset_variables().
|
pure virtual |
Set tag data given an array of pointers to tag values.
For a tag, set the values for a list of passed entity handles.
tag_handle | The tag |
entity_handles | An array of entity handles for which to set tag values. |
num_entities | The length of the 'entity_handles' array. |
tag_data | An array of 'const void*'. Array must be at least 'num_entitities' long. Array is expected to contain pointers to tag values for the corresponding EntityHandle in 'entity_handles'. |
tag_sizes | The length of each tag value. Optional for fixed-length tags. Required for variable-length tags. |
Implemented in moab::Core.
Referenced by moab::NCHelper::create_conventional_tags(), moab::NCHelper::create_dummy_variables(), moab::ReadHDF5::create_tag(), moab::NCHelperEuler::init_mesh_vals(), moab::NCHelperFV::init_mesh_vals(), moab::Tqdcfr::read_block(), moab::Tqdcfr::read_nodeset(), moab::ReadNCDF::read_nodesets(), moab::ReadNCDF::read_qa_records(), moab::Tqdcfr::read_sideset(), moab::ReadNCDF::read_sidesets(), moab::ReadHDF5::read_var_len_tag(), moab::NCHelper::read_variables_to_set(), moab::GeomTopoTool::set_sense(), moab::ParallelComm::unpack_tags(), and moab::NCHelper::update_time_tag_vals().
|
pure virtual |
Set tag data given an array of pointers to tag values.
For a tag, set the values for a list of passed entity handles.
tag_handle | The tag |
entity_handles | The entity handles for which to set tag values. |
tag_data | An array of 'const void*'. Array is expected to contain pointers to tag values for the corresponding EntityHandle in 'entity_handles'. |
tag_sizes | The length of each tag value. Optional for fixed-length tags. Required for variable-length tags. |
Implemented in moab::Core.
|
pure virtual |
Set the value of the indicated tag on the specified entities in the specified vector.
Set the value of the indicated tag on the specified entities; tag_data contains the values, one value per entity in entity_handles.
tag_handle | Tag whose values are being set |
entity_handles | 1d vector of entity handles whose tag values are being set |
num_entities | Number of entities in 1d vector of entity handles |
tag_data | Pointer to memory holding tag values to be set, one entry per entity handle |
Implemented in moab::Core.
Referenced by moab::Skinner::add_adjacency(), moab::ReadABAQUS::add_entity_set(), moab::GeomTopoTool::add_geo_set(), moab::DualTool::add_graphics_point(), moab::ParallelComm::add_pcomm(), moab::Coupler::apply_group_norm_factor(), MetisPartitioner::assemble_taggedents_graph(), MetisPartitioner::assemble_taggedsets_graph(), moab::ParallelComm::assign_global_ids(), moab::TempestRemapper::assign_vertex_element_IDs(), moab::DualTool::atomic_pillow(), moab::ParallelComm::augment_default_sets_with_ghosts(), moab::ReadMCNP5::average_with_existing_tally(), moab::MeshGeneration::BrickInstance(), moab::ReadRTT::build_moab(), moab::OrientedBoxTreeTool::build_sets(), moab::OrientedBoxTreeTool::build_tree(), moab::ParallelComm::check_clean_iface(), moab::Skinner::classify_2d_boundary(), moab::SmoothCurve::compute_control_points_on_boundary_edges(), moab::SmoothFace::compute_control_points_on_edges(), moab::SmoothFace::compute_internal_control_points_on_facets(), moab::SmoothCurve::compute_tangents_for_each_edge(), moab::SmoothFace::compute_tangents_for_each_edge(), moab::ReadCCMIO::construct_cells(), moab::DualTool::construct_dual_cells(), moab::DualTool::construct_dual_edges(), moab::DualTool::construct_dual_faces(), moab::DualTool::construct_dual_vertex(), moab::DualTool::construct_new_hyperplane(), moab::GeomTopoTool::construct_vertex_ranges(), moab::Tqdcfr::convert_nodesets_sidesets(), moab::TempestRemapper::convert_tempest_mesh_private(), moab::ParallelComm::correct_thin_ghost_layers(), moab::ScdInterface::create_box_set(), moab::NCHelper::create_conventional_tags(), moab::ReadMCNP5::create_elements(), moab::ReadGmsh::create_elements(), moab::ReadIDEAS::create_elements(), moab::ReadRTT::create_group(), moab::ParallelComm::create_iface_pc_links(), moab::ReadABAQUS::create_instance_of_part(), moab::ParallelComm::create_interface_sets(), moab::ReadNASTRAN::create_materials(), moab::NCHelperDomain::create_mesh(), moab::NCHelperHOMME::create_mesh(), moab::NCHelperMPAS::create_mesh(), moab::NCHelperScrip::create_mesh(), moab::ReadOBJ::create_new_group(), moab::ReadOBJ::create_new_object(), moab::ParallelComm::create_part(), moab::ReadParallel::create_partition_sets(), moab::Tree::create_root(), moab::ScdInterface::create_scd_sequence(), moab::ReadCGNS::create_sets(), moab::ReadGmsh::create_sets(), moab::ReadHDF5::create_tag(), moab::FBEngine::create_volume_with_direction(), moab::Intx2Mesh::createTags(), DeformMeshRemap::deform_master(), moab::DualTool::delete_dual_entities(), moab::Intx2Mesh::DetermineOrderedNeighbors(), moab::GeomTopoTool::duplicate_model(), moab::WriteHDF5Parallel::exchange_file_ids(), moab::ParallelComm::exchange_tags(), moab::DualTool::face_shrink(), moab::MergeMesh::find_merged_to(), moab::Skinner::find_skin_vertices(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::WriteSLAC::gather_interior_exterior(), moab::WriteCCMIO::gather_matset_info(), moab::WriteNCDF::gather_mesh_information(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::ReadRTT::generate_topology(), moab::TempestRemapper::GenerateMeshMetadata(), moab::ReadCCMIO::get_dbl_option(), moab::WriteCCMIO::get_gids(), moab::DualTool::get_graphics_points(), get_imesh_mesh(), moab::ReadCCMIO::get_int_option(), moab::Tqdcfr::get_names(), moab::ParallelComm::get_pcomm(), moab::ReadSms::get_set(), moab::ReadCCMIO::get_str_option(), iMOAB_CreateElements(), iMOAB_SetDoubleTagStorage(), iMOAB_SetDoubleTagStorageWithGid(), iMOAB_SetIntTagStorage(), ZoltanPartitioner::include_closure(), moab::AdaptiveKDTree::init(), moab::SmoothFace::init_bezier_edge(), moab::SmoothFace::init_gradient(), moab::NCHelperDomain::init_mesh_vals(), moab::NCHelperEuler::init_mesh_vals(), moab::NCHelperFV::init_mesh_vals(), moab::NCHelperScrip::init_mesh_vals(), moab::LloydSmoother::initialize(), moab::Skinner::initialize(), moab::DataCoupler::interpolate(), moab::Intx2Mesh::intersect_meshes(), moab::Intx2Mesh::intersect_meshes_kdtree(), moab::ReadParallel::load_file(), moab::ReadCGNS::load_file(), moab::ReadGmsh::load_file(), moab::ReadNC::load_file(), moab::ReadSms::load_file_impl(), moab::ReadCCMIO::load_matset_data(), moab::ReadCCMIO::load_metadata(), moab::ReadCCMIO::load_neuset_data(), moab::ReadMCNP5::load_one_file(), main(), moab::MergeMesh::merge_using_integer_tag(), moab::Tqdcfr::parse_acis_attribs(), ZoltanPartitioner::partition_inferred_mesh(), moab::LloydSmoother::perform_smooth(), moab::Tqdcfr::process_sideset_10(), moab::Tqdcfr::process_sideset_11(), moab::Tqdcfr::put_into_set(), moab::putElementField(), moab::putSpectralElementField(), moab::putVertexField(), moab::ReadHDF5::read_dense_tag(), moab::ReadTetGen::read_elem_file(), moab::ReadABAQUS::read_element_list(), moab::ReadABAQUS::read_element_set(), moab::ReadNCDF::read_elements(), moab::Tqdcfr::read_elements(), moab::ReadCCMIO::read_faces(), moab::ReadCCMIO::read_gids_and_types(), moab::ReadNCDF::read_global_ids(), moab::Tqdcfr::read_group(), moab::Tqdcfr::BlockHeader::read_info_header(), moab::Tqdcfr::GeomHeader::read_info_header(), moab::Tqdcfr::GroupHeader::read_info_header(), moab::Tqdcfr::NodesetHeader::read_info_header(), moab::Tqdcfr::SidesetHeader::read_info_header(), moab::ReadTetGen::read_node_file(), moab::ReadABAQUS::read_node_list(), moab::ReadABAQUS::read_node_set(), moab::Tqdcfr::read_nodes(), moab::ReadNCDF::read_nodesets(), moab::ReadNCDF::read_sidesets(), moab::ReadABAQUS::read_solid_section(), moab::ReadHDF5::read_sparse_tag(), moab::ReadCCMIO::read_vertices(), moab::ParCommGraph::receive_mesh(), moab::ParallelComm::reduce_tags(), moab::ParallelComm::remove_pcomm(), replace_surface(), moab::GeomTopoTool::restore_topology_from_adjacency(), moab::GeomTopoTool::restore_topology_from_geometric_inclusion(), moab::FBEngine::separate(), moab::FBEngine::set_default_neumann_tags(), moab::DualTool::set_dual_surface_or_curve(), moab::ReadMCNP5::set_header_tags(), moab::FBEngine::set_neumann_tags(), moab::SharedSetData::set_owner(), moab::ParallelComm::set_partitioning(), moab::ParallelComm::set_pstatus_entities(), moab::GeomTopoTool::set_root_set(), moab::GeomTopoTool::set_sense(), moab::ParallelComm::set_sharing_data(), moab::SharedSetData::set_sharing_procs(), moab::AdaptiveKDTree::set_split_plane(), moab::BSPTree::set_split_plane(), moab::GeomTopoTool::set_surface_senses(), moab::WriteCGNS::set_tag_values(), moab::ReadMCNP5::set_tally_tags(), moab::BSPTree::set_tree_box(), moab::GeomTopoTool::setup_implicit_complement(), moab::ReadHDF5::store_file_ids(), moab::ReadHDF5::store_sets_file_ids(), moab::ParallelComm::tag_iface_entities(), moab::ParallelComm::tag_shared_verts(), moab::DualTool::traverse_hyperplane(), moab::ParallelComm::unpack_sets(), moab::ParallelComm::unpack_tags(), moab::ParallelComm::update_remote_data_old(), moab::Intx2MeshOnSphere::update_tracer_data(), moab::ReadVtk::vtk_read_tag_data(), MetisPartitioner::write_aggregationtag_partition(), moab::WriteCCMIO::write_cells_and_faces(), moab::WriteNCDF::write_file(), MetisPartitioner::write_partition(), ZoltanPartitioner::write_partition(), DeformMeshRemap::write_to_coords(), and moab::ScdBox::~ScdBox().
|
pure virtual |
Set the value of the indicated tag on the specified entities in the specified range.
Identical to previous function, except entities are specified using a range instead of a 1d vector.
tag_handle | Tag whose values are being set |
entity_handles | Range of entity handles whose tag values are being set |
tag_data | Pointer to memory holding tag values to be set, one entry per entity handle |
Implemented in moab::Core.
|
pure virtual |
Returns the entity type of an EntityHandle.
Returns the EntityType (ie, MBVERTEX, MBQUAD, MBHEX ) of handle.
handle | The EntityHandle you want to find the entity type of. |
Example:
Implemented in moab::Core.
Referenced by moab::FBEngine::BreakTriangle2(), moab::DualTool::check_1d_loop_edge(), moab::DualTool::check_dual_equiv_edges(), moab::ParallelComm::check_local_shared(), moab::GeomTopoTool::check_model(), moab::Skinner::classify_2d_boundary(), moab::FBEngine::compute_intersection_points(), moab::DualTool::construct_dual(), moab::GeomTopoTool::construct_obb_tree(), moab::ReadCCMIO::create_cell_from_faces(), moab::ReadABAQUS::create_instance_of_part(), moab::ParallelComm::create_interface_sets(), moab::SpatialLocator::create_tree(), moab::DataCoupler::DataCoupler(), moab::DualTool::delete_dual_entities(), moab::DualTool::face_open_collapse(), moab::DualTool::face_shrink(), moab::ElemEvaluator::find_containing_entity(), moab::Skinner::find_match(), moab::Skinner::find_skin_noadj(), moab::DualTool::foc_get_ents(), moab::WriteCCMIO::gather_matset_info(), moab::WriteSLAC::gather_mesh_information(), moab::WriteTemplate::gather_mesh_information(), moab::GeomTopoTool::geometrize_surface_set(), moab::MeshTopoUtil::get_average_position(), moab::DualTool::get_cell_points(), moab::DualTool::get_dual_entities(), moab::DualTool::get_graphics_points(), moab::Coupler::get_group_integ_vals(), moab::Tqdcfr::get_mesh_entities(), moab::DualTool::get_radial_dverts(), iMOAB_GetBlockInfo(), moab::Coupler::interp_field(), moab::DualTool::list_entities(), moab::SpatialLocator::locate_points(), moab::WriteCGNS::moab_cgns_conv(), moab::Coupler::nat_param(), moab::DualTool::next_loop_vertex(), moab::type_equals::operator()(), moab::type_not_equals::operator()(), moab::MeshTopoUtil::opposite_entity(), moab::MergeMesh::perform_merge(), moab::DualTool::print_cell(), moab::DualTool::rev_face_shrink(), moab::ElemEvaluator::set_ent_handle(), moab::ElemEvaluator::set_eval_set(), moab::MeshTopoUtil::split_entities_manifold(), moab::MeshTopoUtil::split_entity_nonmanifold(), moab::FBEngine::split_surface_with_direction(), moab::ExoIIUtil::static_get_element_type(), moab::ReadHDF5::store_sets_file_ids(), moab::ParallelComm::unpack_remote_handles(), moab::ParallelComm::unpack_sets(), moab::WriteCCMIO::write_cells_and_faces(), moab::WriteVtk::write_elems(), moab::WriteDamsel::write_entities(), moab::WriteGmsh::write_file(), and moab::WriteDamsel::write_subrange().
|
pure virtual |
Unite meshsets.
Unite meshset1 with meshset2, placing the results in meshset1.
meshset1 | Mesh set being united, also used to pass back result |
meshset2 | Mesh set being united with meshset1 |
Implemented in moab::Core.
Referenced by moab::ReadABAQUS::load_file(), and moab::WriteAns::write_file().
|
pure virtual |
Write or export a file.
Write a MOAB-native file or export data to some other supported file format.
file_name | The location of the file to write. |
file_type | The type of the file. If this value is NULL, then file type will be determined using the file name suffix. |
options | A semicolon-separated list of options. See README.IO for more information. Typical options include the file type, parallel options, and options specific to certain file formats. |
output_sets | A list of entity sets to write to the file. If no sets are sepcified, the default behavior is to write all data that is supported by the target file type. |
tag_list | A list of tags for which to write the tag data. The write may fail if a tag list is specified but the target file type is not capable of representing the data. If no tags are specified, the default is to write whatever data the target file format supports. |
num_tags | The length of tag_list. |
Implemented in moab::Core.
|
pure virtual |
Write or export a file.
Write a MOAB-native file or export data to some other supported file format.
file_name | The location of the file to write. |
file_type | The type of the file. If this value is NULL, then file type will be determined using the file name suffix. |
options | A semicolon-separated list of options. See README.IO for more information. Typical options include the file type, parallel options, and options specific to certain file formats. |
output_sets | A list of entity sets to write to the file. If no sets are sepcified, the default behavior is to write all data that is supported by the target file type. |
num_output_sets | The length of the output_sets array. |
tag_list | A list of tags for which to write the tag data. The write may fail if a tag list is specified but the target file type is not capable of representing the data. If no tags are specified, the default is to write whatever data the target file format supports. |
num_tags | The length of tag_list. |
Implemented in moab::Core.
Referenced by moab::TempestRemapper::ConstructCoveringSet(), iMOAB_LoadMesh(), iMOAB_WriteLocalMesh(), iMOAB_WriteMesh(), main(), moab::ParCommGraph::receive_mesh(), moab::FBEngine::separate(), moab::FBEngine::split_surface(), DeformMeshRemap::write_and_save(), and write_vtk_mesh().
|
pure virtual |
Writes mesh to a file.
Write mesh to file 'file_name'; if output_list is non-NULL, only material sets contained in that list will be written.
file_name | Name of file to write. |
output_list | 1d array of material set handles to write; if NULL, all sets are written |
num_sets | Number of sets in output_list array |
Example:
Implemented in moab::Core.
Referenced by moab::ParallelComm::check_all_shared_handles(), moab::TempestRemapper::ComputeOverlapMesh(), moab::Intx2MeshInPlane::findNodes(), moab::Intx2MeshOnSphere::findNodes(), moab::IntxRllCssphere::findNodes(), moab::Intx2Mesh::intersect_meshes(), and main().