Flow123d  JS_before_hm-1003-g4e68d2c
msh_gmshreader.h
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file msh_gmshreader.h
15  * @brief
16  * @author dalibor
17  */
18 
19 #ifndef _GMSHMESHREADER_H
20 #define _GMSHMESHREADER_H
21 
22 
23 #include <map> // for map, map<>::value_compare
24 #include <string> // for string
25 #include <vector> // for vector
26 #include "io/msh_basereader.hh" // for MeshDataHeader, BaseMeshReader
27 #include "system/exceptions.hh" // for ExcStream, operator<<, EI, TYPED...
28 
30 class FilePath;
31 class Mesh;
32 
33 
34 
36 public:
37  TYPEDEF_ERR_INFO(EI_GMSHFile, std::string);
38  TYPEDEF_ERR_INFO(EI_Section, std::string);
39  TYPEDEF_ERR_INFO(EI_ElementId, int);
40  TYPEDEF_ERR_INFO(EI_ElementType, int);
41  DECLARE_EXCEPTION(ExcMissingSection,
42  << "Missing section " << EI_Section::qval << " in the GMSH input file: " << EI_GMSHFile::qval);
43  DECLARE_EXCEPTION(ExcUnsupportedType,
44  << "Element " << EI_ElementId::val << "in the GMSH input file " << EI_GMSHFile::qval
45  << " is of the unsupported type " << EI_ElementType::val );
46 
47  /**
48  * Construct the GMSH format reader from given FilePath.
49  * This opens the file for reading.
50  */
51  GmshMeshReader(const FilePath &file_name);
52 
53  /**
54  * Destructor close the file if opened.
55  */
56  virtual ~GmshMeshReader();
57 
58  /**
59  * Read section '$PhysicalNames' of the GMSH file and save the physical sections as regions in the RegionDB.
60  *
61  * Region Labels starting with '!' are treated as boundary regions. Elements of these regions are used just to
62  * assign regions to the boundary and are not used in actual FEM computations.
63  */
64  void read_physical_names(Mesh * mesh) override;
65 
66  /**
67  * Finds GMSH data header for ElementData given by time and field_name and stores it as \p actual_header_.
68  */
69  MeshDataHeader & find_header(HeaderQuery &header_query) override;
70 
71 protected:
72  /**
73  * Map of ElementData sections in GMSH file.
74  *
75  * For each field_name contains vector of MeshDataHeader.
76  * Headers are sorted by time in ascending order.
77  */
79 
80  /**
81  * private method for reading of nodes
82  */
83  void read_nodes(Mesh * mesh);
84  /**
85  * Method for reading of elements.
86  * Input of the mesh allows changing regions within the input CON file.
87  * Read section '$PhysicalNames' of the GMSH file and save the physical sections to general data structure.
88  *
89  * Region Labels starting with '!' are treated as boundary regions. Elements of these regions are used just to
90  * assign regions to the boundary and are not used in actual FEM computations.
91  */
92  void read_elements(Mesh * mesh);
93  /**
94  * Reads the header from the tokenizer @p tok and return it as the second parameter.
95  */
96  void read_data_header(MeshDataHeader &head);
97  /**
98  * Reads table of ElementData headers from the tokenizer file.
99  */
100  void make_header_table() override;
101  /**
102  * Implements @p BaseMeshReader::read_element_data.
103  */
104  void read_element_data(ElementDataCacheBase &data_cache, MeshDataHeader actual_header, unsigned int n_components,
105  bool boundary_domain) override;
106 
107 
108  /// Table with data of ElementData headers
109  HeaderTable header_table_;
110 };
111 
112 #endif /* _GMSHMESHREADER_H */
113 
114 
void make_header_table() override
void read_nodes(Mesh *mesh)
void read_data_header(MeshDataHeader &head)
virtual ~GmshMeshReader()
Definition: mesh.h:78
void read_physical_names(Mesh *mesh) override
GmshMeshReader(const FilePath &file_name)
TYPEDEF_ERR_INFO(EI_GMSHFile, std::string)
void read_element_data(ElementDataCacheBase &data_cache, MeshDataHeader actual_header, unsigned int n_components, bool boundary_domain) override
std::map< std::string, std::vector< MeshDataHeader > > HeaderTable
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
void read_elements(Mesh *mesh)
HeaderTable header_table_
Table with data of ElementData headers.
DECLARE_EXCEPTION(ExcMissingSection,<< "Missing section "<< EI_Section::qval<< " in the GMSH input file: "<< EI_GMSHFile::qval)
MeshDataHeader & find_header(HeaderQuery &header_query) override