NEMoSys  0.63.0
A modular, extensible resource with robust automated mesh generation, mesh quality analysis, adaptive mesh refinement, and data transfer between arbitrary meshes.
NetgenMeshGenDriver.C
Go to the documentation of this file.
1 /*******************************************************************************
2 * Promesh *
3 * Copyright (C) 2022, IllinoisRocstar LLC. All rights reserved. *
4 * *
5 * Promesh is the property of IllinoisRocstar LLC. *
6 * *
7 * IllinoisRocstar LLC *
8 * Champaign, IL *
9 * www.illinoisrocstar.com *
10 * promesh@illinoisrocstar.com *
11 *******************************************************************************/
12 /*******************************************************************************
13 * This file is part of Promesh *
14 * *
15 * This version of Promesh is free software: you can redistribute it and/or *
16 * modify it under the terms of the GNU Lesser General Public License as *
17 * published by the Free Software Foundation, either version 3 of the License, *
18 * or (at your option) any later version. *
19 * *
20 * Promesh is distributed in the hope that it will be useful, but WITHOUT ANY *
21 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS *
22 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more *
23 * details. *
24 * *
25 * You should have received a copy of the GNU Lesser General Public License *
26 * along with this program. If not, see <https://www.gnu.org/licenses/>. *
27 * *
28 *******************************************************************************/
30 
31 #include "AuxiliaryFunctions.H"
32 #include "Mesh/meshBase.H"
34 
35 namespace NEM {
36 namespace DRV {
37 
39  : params(std::move(params)) {}
40 
42  : files_(std::move(files)), opts_(std::move(params)) {}
43 
45  : NetgenMeshGenDriver({{}, {}}, {}) {}
46 
48  return files_;
49 }
50 
52  this->files_ = std::move(files);
53 }
54 
56  return getOpts().params;
57 }
58 
60  setOpts(Opts{std::move(params)});
61 }
62 
64  return opts_;
65 }
66 
67 void NetgenMeshGenDriver::setOpts(Opts opts) { this->opts_ = std::move(opts); }
68 
70  netgenGen generator{&this->opts_.params};
71  int status = generator.createMeshFromSTL(this->files_.inputGeoFile.c_str());
72  if (status) {
73  std::cerr << "Mesh Generation encountered error." << std::endl;
74  exit(1);
75  }
76  std::string newname = nemAux::trim_fname(this->files_.inputGeoFile, ".vol");
78  mesh->setFileName(this->files_.outputMeshFile);
79  mesh->report();
80  mesh->write();
81 }
82 
83 } // namespace DRV
84 } // namespace NEM
static meshBase * exportVolToVtk(const std::string &fname)
construct vtkMesh from netgen vol file (called in Create methods)
Definition: meshBase.C:766
void execute() const override
Run the workflow represented by the driver.
STL namespace.
const netgenParams & getParams() const
std::string trim_fname(const std::string &name, const std::string &ext)
std::shared_ptr< meshBase > mesh
static std::shared_ptr< meshBase > CreateShared(const std::string &fname)
Create shared ptr from fname.
Definition: meshBase.C:171
void setParams(netgenParams params)
const Files & getFiles() const