OGS
FileIO::GMSH::GMSHInterface Class Referencefinal

Detailed Description

Reads and writes GMSH-files to and from OGS data structures.

Definition at line 46 of file GMSHInterface.h.

#include <GMSHInterface.h>

Inheritance diagram for FileIO::GMSH::GMSHInterface:
[legend]
Collaboration diagram for FileIO::GMSH::GMSHInterface:
[legend]

Public Member Functions

 GMSHInterface (GeoLib::GEOObjects &geo_objs, bool include_stations_as_constraints, GMSH::MeshDensityAlgorithm mesh_density_algorithm, double pnt_density, double station_density, std::size_t max_pnts_per_leaf, std::vector< std::string > const &selected_geometries, bool rotate, bool keep_preprocessed_geometry)
 
 GMSHInterface (GMSHInterface const &)=delete
 
 GMSHInterface (GMSHInterface &&)=delete
 
GMSHInterfaceoperator= (GMSHInterface const &)=delete
 
GMSHInterfaceoperator= (GMSHInterface &&)=delete
 
 ~GMSHInterface () override
 
void writePhysicalGroups (bool flag)
 
- Public Member Functions inherited from BaseLib::IO::Writer
 Writer ()
 
virtual ~Writer ()=default
 
std::string writeToString ()
 Writes the object to a string.
 

Protected Member Functions

bool write () override
 Writes the object to the internal stream. This method must be implemented by a subclass. The implementation should return true on success, else false.
 

Private Member Functions

int writeGMSHInputFile (std::ostream &out)
 

Private Attributes

std::size_t _n_lines
 
std::size_t _n_plane_sfc
 
GeoLib::GEOObjects_geo_objs
 
std::vector< std::string > const & _selected_geometries
 
std::string _gmsh_geo_name
 
std::list< GMSH::GMSHPolygonTree * > _polygon_tree_list
 
std::vector< GMSH::GMSHPoint * > _gmsh_pnts
 
std::unique_ptr< GMSH::GMSHMeshDensityStrategy_mesh_density_strategy
 
Eigen::Matrix3d _inverse_rot_mat = Eigen::Matrix3d::Zero()
 
bool const _rotate = false
 
bool _keep_preprocessed_geometry = true
 
bool _write_physical_groups = false
 

Additional Inherited Members

- Protected Attributes inherited from BaseLib::IO::Writer
std::ostringstream out
 The stream to write to.
 

Constructor & Destructor Documentation

◆ GMSHInterface() [1/3]

FileIO::GMSH::GMSHInterface::GMSHInterface ( GeoLib::GEOObjects & geo_objs,
bool include_stations_as_constraints,
GMSH::MeshDensityAlgorithm mesh_density_algorithm,
double pnt_density,
double station_density,
std::size_t max_pnts_per_leaf,
std::vector< std::string > const & selected_geometries,
bool rotate,
bool keep_preprocessed_geometry )
Parameters
geo_objsreference to instance of class GEOObject that maintains the geometries. The instance is used for preparation geometries for writing them to the gmsh file format.
include_stations_as_constraintsswitch to enable writing stations as constraints
mesh_density_algorithmone of the mesh density algorithms (@see enum MeshDensityAlgorithm)
pnt_densityparameter of the mesh density algorithm
station_densityparameter of the mesh density algorithm
max_pnts_per_leafparameter of the mesh density algorithm
selected_geometriesvector of names of geometries, that should be employed for mesh generation.
rotateif the value of the parameter is true then the input points will be rotated on the \(x\)- \(y\)-plane, else the input points will be (orthogonal) projected to the \(x\)- \(y\)-plane.
keep_preprocessed_geometrykeep the pre-processed geometry, useful for debugging the mesh creation

Definition at line 50 of file GMSHInterface.cpp.

57 : _n_lines(0),
58 _n_plane_sfc(0),
59 _geo_objs(geo_objs),
60 _selected_geometries(selected_geometries),
61 _rotate(rotate),
62 _keep_preprocessed_geometry(keep_preprocessed_geometry)
63{
64 switch (mesh_density_algorithm)
65 {
68 std::make_unique<GMSH::GMSHFixedMeshDensity>(pnt_density);
69 break;
72 std::make_unique<GMSH::GMSHAdaptiveMeshDensity>(
73 pnt_density, station_density, max_pnts_per_leaf);
74 break;
75 }
76}
std::unique_ptr< GMSH::GMSHMeshDensityStrategy > _mesh_density_strategy
std::vector< std::string > const & _selected_geometries
GeoLib::GEOObjects & _geo_objs
@ AdaptiveMeshDensity
computing the mesh density employing a QuadTree
@ FixedMeshDensity
set the parameter with a fixed value

References _mesh_density_strategy, FileIO::GMSH::AdaptiveMeshDensity, and FileIO::GMSH::FixedMeshDensity.

◆ GMSHInterface() [2/3]

FileIO::GMSH::GMSHInterface::GMSHInterface ( GMSHInterface const & )
delete

◆ GMSHInterface() [3/3]

FileIO::GMSH::GMSHInterface::GMSHInterface ( GMSHInterface && )
delete

◆ ~GMSHInterface()

FileIO::GMSH::GMSHInterface::~GMSHInterface ( )
override

Definition at line 78 of file GMSHInterface.cpp.

79{
81 for (auto const* polygon_tree : _polygon_tree_list)
82 {
83 delete polygon_tree;
84 }
85}
std::vector< GMSH::GMSHPoint * > _gmsh_pnts
std::list< GMSH::GMSHPolygonTree * > _polygon_tree_list
void cleanupVectorElements(std::vector< T * > &items)
Definition Algorithm.h:251

References _gmsh_pnts, _polygon_tree_list, and BaseLib::cleanupVectorElements().

Member Function Documentation

◆ operator=() [1/2]

GMSHInterface & FileIO::GMSH::GMSHInterface::operator= ( GMSHInterface && )
delete

◆ operator=() [2/2]

GMSHInterface & FileIO::GMSH::GMSHInterface::operator= ( GMSHInterface const & )
delete

◆ write()

bool FileIO::GMSH::GMSHInterface::write ( )
overrideprotectedvirtual

Writes the object to the internal stream. This method must be implemented by a subclass. The implementation should return true on success, else false.

Implements BaseLib::IO::Writer.

Definition at line 87 of file GMSHInterface.cpp.

88{
89 out << "// GMSH input file created by OpenGeoSys "
91 out << "\n\n";
92
93 return writeGMSHInputFile(out) <= 0;
94}
std::ostringstream out
The stream to write to.
Definition Writer.h:47
int writeGMSHInputFile(std::ostream &out)
GITINFOLIB_EXPORT const std::string ogs_version

References GitInfoLib::GitInfo::ogs_version, BaseLib::IO::Writer::out, and writeGMSHInputFile().

◆ writeGMSHInputFile()

int FileIO::GMSH::GMSHInterface::writeGMSHInputFile ( std::ostream & out)
private
  1. get and merge data from _geo_objs
  2. compute topological hierarchy
    Parameters
    out
    Todo
    activate error codes and hand them on to the Writer class, i.e. 0 = okay, 1 = geo_objects is empty, 2 = error while merging, 3 = error writing file

Definition at line 96 of file GMSHInterface.cpp.

97{
98 DBUG("GMSHInterface::writeGMSHInputFile(): get data from GEOObjects.");
99
100 if (_selected_geometries.empty())
101 {
102 return 1;
103 }
104
105 // *** get and merge data from _geo_objs
106 if (_selected_geometries.size() > 1)
107 {
108 _gmsh_geo_name = "GMSHGeometry";
110 {
111 return 2;
112 }
113 }
114 else
115 {
118 }
119
120 auto* merged_pnts(const_cast<std::vector<GeoLib::Point*>*>(
122 if (!merged_pnts)
123 {
124 ERR("GMSHInterface::writeGMSHInputFile(): Did not found any points.");
125 return 2;
126 }
127
128 if (_rotate)
129 {
130 // Rotate points to the x-y-plane.
132 // Compute inverse rotation matrix to reverse the rotation later on.
133 _inverse_rot_mat.transposeInPlace();
134 }
135 else
136 {
137 // project data on the x-y-plane
138 _inverse_rot_mat = Eigen::Matrix3d::Identity();
139 for (auto pnt : *merged_pnts)
140 {
141 (*pnt)[2] = 0.0;
142 }
143 }
144
145 std::vector<GeoLib::Polyline*> const* merged_plys(
147 DBUG("GMSHInterface::writeGMSHInputFile(): Obtained data.");
148
149 if (!merged_plys)
150 {
151 ERR("GMSHInterface::writeGMSHInputFile(): Did not find any polylines.");
152 return 2;
153 }
154
155 // *** compute and insert all intersection points between polylines
156 GeoLib::PointVec& pnt_vec(*const_cast<GeoLib::PointVec*>(
159 pnt_vec, *(const_cast<std::vector<GeoLib::Polyline*>*>(merged_plys)));
160
161 std::vector<GeoLib::Polyline*> polygons;
162 // for each closed polyline add a PolygonWithSegmentMarker object into
163 // polygons
164 for (auto polyline : *merged_plys)
165 {
166 if (!polyline->isClosed())
167 {
168 continue;
169 }
170 polygons.push_back(new GeoLib::PolygonWithSegmentMarker(*polyline));
171 }
172 if (polygons.empty())
173 {
174 OGS_FATAL("GMSHInterface::writeGMSHInputFile(): no polygons found.");
175 }
176 // let the polygon memory management be done by GEOObjects
178 // create for each polygon a PolygonTree
179 std::transform(
180 polygons.begin(), polygons.end(),
181 std::back_inserter(_polygon_tree_list),
182 [this](auto const& polygon)
183 {
184 return new GMSH::GMSHPolygonTree(
185 dynamic_cast<GeoLib::PolygonWithSegmentMarker*>(polygon),
186 nullptr, _geo_objs, _gmsh_geo_name, *_mesh_density_strategy);
187 });
188 DBUG(
189 "GMSHInterface::writeGMSHInputFile(): Computed topological hierarchy - "
190 "detected {:d} polygons.",
191 _polygon_tree_list.size());
192 // compute topological hierarchy of polygons
193 GeoLib::createPolygonTrees<GMSH::GMSHPolygonTree>(_polygon_tree_list);
194 DBUG(
195 "GMSHInterface::writeGMSHInputFile(): Computed topological hierarchy - "
196 "calculated {:d} polygon trees.",
197 _polygon_tree_list.size());
198
199 // *** Mark in each polygon tree the segments shared by two polygons.
200 for (auto* polygon_tree : _polygon_tree_list)
201 {
202 polygon_tree->markSharedSegments();
203 }
204
205 // *** insert stations and polylines (except polygons) in the appropriate
206 // object of
207 // class GMSHPolygonTree
208 // *** insert stations
209 std::vector<GeoLib::Point*> gmsh_stations{};
210 for (auto const& geometry_name : _selected_geometries)
211 {
212 auto const* stations(_geo_objs.getStationVec(geometry_name));
213 if (stations)
214 {
215 for (auto* station : *stations)
216 {
217 bool found(false);
218 for (auto it(_polygon_tree_list.begin());
219 it != _polygon_tree_list.end() && !found;
220 ++it)
221 {
222 gmsh_stations.emplace_back(new GeoLib::Station(
223 *static_cast<GeoLib::Station*>(station)));
224 if ((*it)->insertStation(gmsh_stations.back()))
225 {
226 found = true;
227 }
228 }
229 }
230 }
231 }
232 std::string gmsh_stations_name(_gmsh_geo_name + "-Stations");
233 if (!gmsh_stations.empty())
234 {
235 _geo_objs.addStationVec(std::move(gmsh_stations), gmsh_stations_name);
236 }
237
238 // *** insert polylines
239 for (auto polyline : *merged_plys)
240 {
241 if (!polyline->isClosed())
242 {
243 for (auto* polygon_tree : _polygon_tree_list)
244 {
245 auto polyline_with_segment_marker =
247 polygon_tree->insertPolyline(polyline_with_segment_marker);
248 }
249 }
250 }
251
252 // *** init mesh density strategies
253 for (auto& polygon_tree : _polygon_tree_list)
254 {
255 polygon_tree->initMeshDensityStrategy();
256 }
257
258 // *** create GMSH data structures
259 const std::size_t n_merged_pnts(merged_pnts->size());
260 _gmsh_pnts.resize(n_merged_pnts);
261 for (std::size_t k(0); k < n_merged_pnts; k++)
262 {
263 _gmsh_pnts[k] = nullptr;
264 }
265 for (auto& polygon_tree : _polygon_tree_list)
266 {
267 polygon_tree->createGMSHPoints(_gmsh_pnts);
268 }
269
270 std::stringstream error_messages;
271 error_messages.precision(std::numeric_limits<double>::digits10);
272 for (std::size_t k = 0; k < _gmsh_pnts.size(); ++k)
273 {
274 if (_gmsh_pnts[k] == nullptr)
275 {
276 error_messages
277 << "The point at (" << *(*merged_pnts)[k]
278 << ") is not part of a polyline, and won't be used in the "
279 "meshing as a constraint. If you want to include it in the "
280 "mesh please create a observation/measurement station for "
281 "the point and include it additional in the meshing "
282 "process.\n";
283 }
284 }
285 auto const error_message = error_messages.str();
286 if (!error_message.empty())
287 {
288 OGS_FATAL("{}", error_message);
289 }
290
291 // *** finally write data :-)
293 out << _gmsh_pnts;
294
295 std::size_t pnt_id_offset(_gmsh_pnts.size());
296 for (auto* polygon_tree : _polygon_tree_list)
297 {
298 polygon_tree->writeLineLoop(_n_lines, _n_plane_sfc, out,
300 polygon_tree->writeSubPolygonsAsLineConstraints(_n_lines,
301 _n_plane_sfc - 1, out);
302 polygon_tree->writeLineConstraints(_n_lines, _n_plane_sfc - 1, out);
303 polygon_tree->writeStations(pnt_id_offset, _n_plane_sfc - 1, out);
304 polygon_tree->writeAdditionalPointData(pnt_id_offset, _n_plane_sfc - 1,
305 out);
306 }
307
309 {
313 _geo_objs.removeStationVec(gmsh_stations_name);
314 }
315
316 return 0;
317}
#define OGS_FATAL(...)
Definition Error.h:26
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:30
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:45
Eigen::Matrix3d _inverse_rot_mat
const std::vector< Point * > * getPointVec(const std::string &name) const
const PointVec * getPointVecObj(const std::string &name) const
bool removePointVec(const std::string &name)
bool removeSurfaceVec(const std::string &name)
void addStationVec(std::vector< Point * > &&stations, std::string &name)
Adds a vector of stations with the given name and colour to GEOObjects.
bool removeStationVec(const std::string &name)
Removes the station vector with the given name from GEOObjects.
Definition GEOObjects.h:135
int mergeGeometries(std::vector< std::string > const &geo_names, std::string &merged_geo_name)
const std::vector< Polyline * > * getPolylineVec(const std::string &name) const
bool appendPolylineVec(const std::vector< Polyline * > &polylines, const std::string &name)
const std::vector< GeoLib::Point * > * getStationVec(const std::string &name) const
Returns the station vector with the given name.
bool removePolylineVec(const std::string &name)
This class manages pointers to Points in a std::vector along with a name. It also handles the deletio...
Definition PointVec.h:36
A Station (observation site) is basically a Point with some additional information.
Definition Station.h:37
void computeAndInsertAllIntersectionPoints(GeoLib::PointVec &pnt_vec, std::vector< GeoLib::Polyline * > &plys)
void rotatePoints(Eigen::Matrix3d const &rot_mat, InputIterator pnts_begin, InputIterator pnts_end)
Eigen::Matrix3d rotatePointsToXY(InputIterator1 p_pnts_begin, InputIterator1 p_pnts_end, InputIterator2 r_pnts_begin, InputIterator2 r_pnts_end)

References _geo_objs, _gmsh_geo_name, _gmsh_pnts, _inverse_rot_mat, _keep_preprocessed_geometry, _n_lines, _n_plane_sfc, _polygon_tree_list, _rotate, _selected_geometries, _write_physical_groups, GeoLib::GEOObjects::addStationVec(), GeoLib::GEOObjects::appendPolylineVec(), GeoLib::computeAndInsertAllIntersectionPoints(), DBUG(), ERR(), GeoLib::GEOObjects::getPointVec(), GeoLib::GEOObjects::getPointVecObj(), GeoLib::GEOObjects::getPolylineVec(), GeoLib::GEOObjects::getStationVec(), GeoLib::GEOObjects::mergeGeometries(), OGS_FATAL, BaseLib::IO::Writer::out, GeoLib::GEOObjects::removePointVec(), GeoLib::GEOObjects::removePolylineVec(), GeoLib::GEOObjects::removeStationVec(), GeoLib::GEOObjects::removeSurfaceVec(), GeoLib::rotatePoints(), and GeoLib::rotatePointsToXY().

Referenced by write().

◆ writePhysicalGroups()

void FileIO::GMSH::GMSHInterface::writePhysicalGroups ( bool flag)
inline

Definition at line 84 of file GMSHInterface.h.

84{ _write_physical_groups = flag; }

References _write_physical_groups.

Referenced by generateMesh().

Member Data Documentation

◆ _geo_objs

GeoLib::GEOObjects& FileIO::GMSH::GMSHInterface::_geo_objs
private

Definition at line 103 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _gmsh_geo_name

std::string FileIO::GMSH::GMSHInterface::_gmsh_geo_name
private

Definition at line 105 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _gmsh_pnts

std::vector<GMSH::GMSHPoint*> FileIO::GMSH::GMSHInterface::_gmsh_pnts
private

Definition at line 108 of file GMSHInterface.h.

Referenced by ~GMSHInterface(), and writeGMSHInputFile().

◆ _inverse_rot_mat

Eigen::Matrix3d FileIO::GMSH::GMSHInterface::_inverse_rot_mat = Eigen::Matrix3d::Zero()
private

Holds the inverse rotation matrix. The matrix is used to revert the rotation done in writeGMSHInputFile().

Definition at line 113 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _keep_preprocessed_geometry

bool FileIO::GMSH::GMSHInterface::_keep_preprocessed_geometry = true
private

Definition at line 117 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _mesh_density_strategy

std::unique_ptr<GMSH::GMSHMeshDensityStrategy> FileIO::GMSH::GMSHInterface::_mesh_density_strategy
private

Definition at line 110 of file GMSHInterface.h.

Referenced by GMSHInterface().

◆ _n_lines

std::size_t FileIO::GMSH::GMSHInterface::_n_lines
private

Definition at line 100 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _n_plane_sfc

std::size_t FileIO::GMSH::GMSHInterface::_n_plane_sfc
private

Definition at line 101 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _polygon_tree_list

std::list<GMSH::GMSHPolygonTree*> FileIO::GMSH::GMSHInterface::_polygon_tree_list
private

Definition at line 106 of file GMSHInterface.h.

Referenced by ~GMSHInterface(), and writeGMSHInputFile().

◆ _rotate

bool const FileIO::GMSH::GMSHInterface::_rotate = false
private

Signals if the input points should be rotated or projected to the \(x\)- \(y\)-plane

Definition at line 116 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _selected_geometries

std::vector<std::string> const& FileIO::GMSH::GMSHInterface::_selected_geometries
private

Definition at line 104 of file GMSHInterface.h.

Referenced by writeGMSHInputFile().

◆ _write_physical_groups

bool FileIO::GMSH::GMSHInterface::_write_physical_groups = false
private

Definition at line 118 of file GMSHInterface.h.

Referenced by writeGMSHInputFile(), and writePhysicalGroups().


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