Flow123d  release_2.2.0-36-g163dc99
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
GmshMeshReader Class Reference

#include <msh_gmshreader.h>

Inheritance diagram for GmshMeshReader:
Inheritance graph
[legend]
Collaboration diagram for GmshMeshReader:
Collaboration graph
[legend]

Public Types

typedef std::map< std::string, std::vector< MeshDataHeader > > HeaderTable
 

Public Member Functions

 TYPEDEF_ERR_INFO (EI_GMSHFile, std::string)
 
 TYPEDEF_ERR_INFO (EI_Section, std::string)
 
 TYPEDEF_ERR_INFO (EI_ElementId, int)
 
 TYPEDEF_ERR_INFO (EI_ElementType, int)
 
 DECLARE_EXCEPTION (ExcMissingSection,<< "Missing section "<< EI_Section::qval<< " in the GMSH input file: "<< EI_GMSHFile::qval)
 
 DECLARE_EXCEPTION (ExcUnsupportedType,<< "Element "<< EI_ElementId::val<< "in the GMSH input file "<< EI_GMSHFile::qval<< " is of the unsupported type "<< EI_ElementType::val)
 
 GmshMeshReader (const FilePath &file_name)
 
virtual ~GmshMeshReader ()
 
void read_physical_names (Mesh *mesh) override
 
void check_compatible_mesh (Mesh &mesh) override
 
- Public Member Functions inherited from BaseMeshReader
 TYPEDEF_ERR_INFO (EI_FieldName, std::string)
 
 TYPEDEF_ERR_INFO (EI_Time, double)
 
 TYPEDEF_ERR_INFO (EI_MeshFile, std::string)
 
 TYPEDEF_ERR_INFO (EI_Type, std::string)
 
 TYPEDEF_ERR_INFO (EI_TokenizerMsg, std::string)
 
 TYPEDEF_ERR_INFO (EI_FileExtension, std::string)
 
 DECLARE_INPUT_EXCEPTION (ExcFieldNameNotFound,<< "No data for field: "<< EI_FieldName::qval<< " and time: "<< EI_Time::val<< " in the input file: "<< EI_MeshFile::qval)
 
 DECLARE_EXCEPTION (ExcWrongFormat,<< "Wrong format of "<< EI_Type::val<< ", "<< EI_TokenizerMsg::val<< "\n"<< "in the input file: "<< EI_MeshFile::qval)
 
 DECLARE_EXCEPTION (ExcWrongExtension,<< "Unsupported extension "<< EI_FileExtension::qval<< " of the input file: "<< EI_MeshFile::qval)
 
 BaseMeshReader (const FilePath &file_name)
 Constructor. More...
 
void read_raw_mesh (Mesh *mesh)
 
template<typename T >
ElementDataCache< T >::ComponentDataPtr get_element_data (std::string field_name, double time, unsigned int n_entities, unsigned int n_components, bool boundary_domain, unsigned int component_idx)
 
std::vector< int > const & get_element_vector (bool boundary_domain)
 

Protected Member Functions

void read_nodes (Mesh *mesh)
 
void read_elements (Mesh *mesh)
 
void read_data_header (MeshDataHeader &head)
 
void make_header_table () override
 
MeshDataHeaderfind_header (double time, std::string field_name) override
 
void read_element_data (ElementDataCacheBase &data_cache, MeshDataHeader actual_header, unsigned int n_components, bool boundary_domain) override
 

Protected Attributes

HeaderTable header_table_
 Table with data of ElementData headers. More...
 
- Protected Attributes inherited from BaseMeshReader
bool has_compatible_mesh_
 
std::string data_section_name_
 Store name of field data section specify for type of mesh file. More...
 
ElementDataFieldMap element_data_values_
 Cache with last read element data. More...
 
Tokenizer tok_
 Tokenizer used for reading ASCII file format. More...
 
Input::Record input_mesh_rec_
 Input record accessor of mesh. More...
 
vector< int > bulk_elements_id_
 
vector< int > boundary_elements_id_
 

Additional Inherited Members

- Static Public Member Functions inherited from BaseMeshReader
static std::shared_ptr< BaseMeshReaderreader_factory (const FilePath &file_name)
 
static Meshmesh_factory (const Input::Record &input_mesh_rec)
 
- Protected Types inherited from BaseMeshReader
typedef std::shared_ptr< ElementDataCacheBaseElementDataPtr
 
typedef std::map< string, ElementDataPtrElementDataFieldMap
 

Detailed Description

Definition at line 37 of file msh_gmshreader.h.

Member Typedef Documentation

Map of ElementData sections in GMSH file.

For each field_name contains vector of MeshDataHeader. Headers are sorted by time in ascending order.

Definition at line 55 of file msh_gmshreader.h.

Constructor & Destructor Documentation

GmshMeshReader::GmshMeshReader ( const FilePath file_name)

Construct the GMSH format reader from given FilePath. This opens the file for reading.

Definition at line 37 of file msh_gmshreader.cc.

GmshMeshReader::~GmshMeshReader ( )
virtual

Destructor close the file if opened.

Definition at line 48 of file msh_gmshreader.cc.

Member Function Documentation

void GmshMeshReader::check_compatible_mesh ( Mesh mesh)
overridevirtual

Empty method for GMSH reader now.

Implements BaseMeshReader::check_compatible_mesh.

Implements BaseMeshReader.

Definition at line 350 of file msh_gmshreader.cc.

GmshMeshReader::DECLARE_EXCEPTION ( ExcMissingSection  ,
<< "Missing section "<< EI_Section::qval<< " in the GMSH input file: "<< EI_GMSHFile::qval   
)
GmshMeshReader::DECLARE_EXCEPTION ( ExcUnsupportedType  ,
<< "Element "<< EI_ElementId::val<< "in the GMSH input file "<< EI_GMSHFile::qval<< " is of the unsupported type "<< EI_ElementType::val   
)
MeshDataHeader & GmshMeshReader::find_header ( double  time,
std::string  field_name 
)
overrideprotectedvirtual

Finds GMSH data header for ElementData given by time and field_name and return it as the first parameter.

Implements BaseMeshReader.

Definition at line 323 of file msh_gmshreader.cc.

void GmshMeshReader::make_header_table ( )
overrideprotectedvirtual

Reads table of ElementData headers from the tokenizer file.

Implements BaseMeshReader.

Definition at line 296 of file msh_gmshreader.cc.

Here is the caller graph for this function:

void GmshMeshReader::read_data_header ( MeshDataHeader head)
protected

Reads the header from the tokenizer tok and return it as the second parameter.

Definition at line 196 of file msh_gmshreader.cc.

Here is the caller graph for this function:

void GmshMeshReader::read_element_data ( ElementDataCacheBase data_cache,
MeshDataHeader  actual_header,
unsigned int  n_components,
bool  boundary_domain 
)
overrideprotectedvirtual

Implements BaseMeshReader::read_element_data.

Implements BaseMeshReader.

Definition at line 252 of file msh_gmshreader.cc.

void GmshMeshReader::read_elements ( Mesh mesh)
protectedvirtual

Method for reading of elements. Input of the mesh allows changing regions within the input CON file. Read section '$PhysicalNames' of the GMSH file and save the physical sections to general data structure.

Region Labels starting with '!' are treated as boundary regions. Elements of these regions are used just to assign regions to the boundary and are not used in actual FEM computations.

Implements BaseMeshReader.

Definition at line 87 of file msh_gmshreader.cc.

void GmshMeshReader::read_nodes ( Mesh mesh)
protectedvirtual

private method for reading of nodes

Implements BaseMeshReader.

Definition at line 53 of file msh_gmshreader.cc.

void GmshMeshReader::read_physical_names ( Mesh mesh)
overridevirtual

Read section '$PhysicalNames' of the GMSH file and save the physical sections as regions in the RegionDB.

Region Labels starting with '!' are treated as boundary regions. Elements of these regions are used just to assign regions to the boundary and are not used in actual FEM computations.

Implements BaseMeshReader.

Definition at line 165 of file msh_gmshreader.cc.

GmshMeshReader::TYPEDEF_ERR_INFO ( EI_GMSHFile  ,
std::string   
)
GmshMeshReader::TYPEDEF_ERR_INFO ( EI_Section  ,
std::string   
)
GmshMeshReader::TYPEDEF_ERR_INFO ( EI_ElementId  ,
int   
)
GmshMeshReader::TYPEDEF_ERR_INFO ( EI_ElementType  ,
int   
)

Member Data Documentation

HeaderTable GmshMeshReader::header_table_
protected

Table with data of ElementData headers.

Definition at line 117 of file msh_gmshreader.h.


The documentation for this class was generated from the following files: