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.
CFMeshMeshGenDriver.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"
33 
34 namespace NEM {
35 namespace DRV {
36 
38  : params(std::move(params)) {}
39 
41  : files_(std::move(files)), opts_(std::move(params)) {}
42 
44  : CFMeshMeshGenDriver({{}, {}}, {}) {}
45 
47  return files_;
48 }
49 
51  this->opts_.params.geomFilePath = files.inputGeoFile;
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 
68  if (!opts.params.geomFilePath.empty()) {
70  this->opts_ = std::move(opts);
71  } else {
72  this->opts_ = std::move(opts);
74  }
75 }
76 
78  auto paramsCopy = this->opts_.params;
79  cfmeshGen generator{&paramsCopy};
80  // TODO: Make sure blockMeshGen::createMeshFromSTL sets return value and check
81  // it here
82  // Parameter not used
83  generator.createMeshFromSTL(nullptr);
84  std::string newname = nemAux::trim_fname(this->files_.inputGeoFile, ".vtu");
85  // auto mesh =
86  // meshBase::CreateShared(meshBase::Create(generator.getDataSet(),
87  // newname));
88  // mesh->setFileName(this->files_.outputMeshFile);
89  // mesh->report();
90  // mesh->write();
92  mesh->takeGeoMesh(generator.gmData.get());
93  mesh->write(this->files_.outputMeshFile);
94  mesh->Delete();
95 }
96 
97 } // namespace DRV
98 } // namespace NEM
const Files & getFiles() const
int createMeshFromSTL(const char *fname) override
Definition: cfmeshGen.C:99
geoMeshBase * New(MeshType meshType)
Create a new mesh object.
STL namespace.
void setParams(cfmeshParams params)
std::string trim_fname(const std::string &name, const std::string &ext)
std::shared_ptr< meshBase > mesh
std::string geomFilePath
Definition: cfmeshParams.H:104
void execute() const override
Run the workflow represented by the driver.
const cfmeshParams & getParams() const