Nektar++
ProcessDisplacement.cpp
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////////////
2//
3// File: ProcessDisplacement.cpp
4//
5// For more information, please see: http://www.nektar.info/
6//
7// The MIT License
8//
9// Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10// Department of Aeronautics, Imperial College London (UK), and Scientific
11// Computing and Imaging Institute, University of Utah (USA).
12//
13// Permission is hereby granted, free of charge, to any person obtaining a
14// copy of this software and associated documentation files (the "Software"),
15// to deal in the Software without restriction, including without limitation
16// the rights to use, copy, modify, merge, publish, distribute, sublicense,
17// and/or sell copies of the Software, and to permit persons to whom the
18// Software is furnished to do so, subject to the following conditions:
19//
20// The above copyright notice and this permission notice shall be included
21// in all copies or substantial portions of the Software.
22//
23// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29// DEALINGS IN THE SOFTWARE.
30//
31// Description: Deforms a mesh given input field defining displacement.
32//
33////////////////////////////////////////////////////////////////////////////////
34
35#include <iostream>
36#include <string>
37using namespace std;
38
39#include "ProcessDisplacement.h"
40
43#include <LocalRegions/SegExp.h>
44#include <LocalRegions/TriExp.h>
49
50namespace Nektar::FieldUtils
51{
53{
54 TriFaceIDs(int a, int b, int c) : a(a), b(b), c(c)
55 {
56 }
57 int a;
58 int b;
59 int c;
60};
61
63{
64 std::size_t operator()(TriFaceIDs const &p) const
65 {
66 std::vector<int> ids(3);
67
68 ids[0] = p.a;
69 ids[1] = p.b;
70 ids[2] = p.c;
71
72 std::sort(ids.begin(), ids.end());
73 return hash_combine(ids[0], ids[1], ids[2]);
74 }
75};
76
77bool operator==(TriFaceIDs const &p1, TriFaceIDs const &p2)
78{
79 std::vector<int> ids1(3), ids2(3);
80
81 ids1[0] = p1.a;
82 ids1[1] = p1.b;
83 ids1[2] = p1.c;
84 ids2[0] = p2.a;
85 ids2[1] = p2.b;
86 ids2[2] = p2.c;
87
88 std::sort(ids1.begin(), ids1.end());
89 std::sort(ids2.begin(), ids2.end());
90
91 return ids1[0] == ids2[0] && ids1[1] == ids2[1] && ids1[2] == ids2[2];
92}
93
94typedef std::unordered_map<TriFaceIDs, int, TriFaceHash> TriFaceMap;
95
99 "Deform a mesh given an input field defining displacement");
100
103{
104 m_config["to"] =
105 ConfigOption(false, "", "Name of file containing high order boundary");
106
107 m_config["usevertexids"] = ConfigOption(
108 true, "0", "Use vertex IDs instead of face IDs for matching");
109}
110
112{
113}
114
115void ProcessDisplacement::v_Process(po::variables_map &vm)
116{
118 ASSERTL0(!boost::iequals(m_config["bnd"].as<string>(), "All"),
119 "ProcessDisplacement needs bnd parameter with a single id.");
120
121 string toFile = m_config["to"].as<string>();
122
123 if (toFile == "")
124 {
125 cout << "ProcessDisplacement: you must provide a file" << endl;
126 return;
127 }
128
129 bool useVertexIds = m_config["usevertexids"].as<bool>();
130
131 vector<string> files;
132 files.push_back(toFile);
137
138 // Try to find boundary condition expansion.
139 int bndCondId = m_config["bnd"].as<int>();
140
141 // FIXME: We should be storing boundary condition IDs
142 // somewhere...
143 if (bndGraph->GetMeshDimension() == 1)
144 {
145 m_f->m_exp.push_back(m_f->AppendExpList(0, "v"));
146 m_f->m_variables.push_back("v");
147
149 m_f->m_exp[0]->GetBndCondExpansions()[bndCondId];
151 m_f->m_exp[1]->GetBndCondExpansions()[bndCondId];
152
153 map<int, int> bndCondIds;
154 for (int i = 0; i < bndCondExpU->GetExpSize(); ++i)
155 {
156 bndCondIds[bndCondExpU->GetExp(i)->GetGeom()->GetGlobalID()] = i;
157 }
158
159 const SpatialDomains::SegGeomMap &tmp = bndGraph->GetAllSegGeoms();
160
161 for (auto &sIt : tmp)
162 {
163 auto mIt = bndCondIds.find(sIt.first);
164
165 if (mIt == bndCondIds.end())
166 {
167 cout << "Warning: couldn't find element " << sIt.first << endl;
168 continue;
169 }
170
171 int e = mIt->second;
172
174 std::dynamic_pointer_cast<SpatialDomains::SegGeom>(
175 bndCondExpU->GetExp(e)->GetGeom());
176
177 SpatialDomains::SegGeomSharedPtr to = sIt.second;
178
179 // Create temporary SegExp
182 bndCondExpU->GetExp(e)->GetBasis(0)->GetBasisKey(), to);
183
184 const int offset = bndCondExpU->GetPhys_Offset(e);
185 const int nq = toSeg->GetTotPoints();
186
187 Array<OneD, NekDouble> xL(nq), xC(nq), yL(nq), yC(nq), tmp;
188
189 bndCondExpU->GetExp(e)->GetCoords(xC, yC);
190 toSeg->GetCoords(xL, yL);
191
192 Vmath::Vsub(nq, xL, 1, xC, 1,
193 tmp = bndCondExpU->UpdatePhys() + offset, 1);
194 Vmath::Vsub(nq, yL, 1, yC, 1,
195 tmp = bndCondExpV->UpdatePhys() + offset, 1);
196 }
197
198 // bndconstrained?
199 bndCondExpU->FwdTransBndConstrained(bndCondExpU->GetPhys(),
200 bndCondExpU->UpdateCoeffs());
201 bndCondExpV->FwdTransBndConstrained(bndCondExpV->GetPhys(),
202 bndCondExpV->UpdateCoeffs());
203 }
204 else if (bndGraph->GetMeshDimension() == 2)
205 {
206 m_f->m_exp.push_back(m_f->AppendExpList(0, "v"));
207 m_f->m_exp.push_back(m_f->AppendExpList(0, "w"));
208 m_f->m_variables.push_back("v");
209 m_f->m_variables.push_back("w");
210
212 m_f->m_exp[0]->GetBndCondExpansions()[bndCondId];
214 m_f->m_exp[1]->GetBndCondExpansions()[bndCondId];
216 m_f->m_exp[2]->GetBndCondExpansions()[bndCondId];
217
218 map<int, int> bndCondIds;
219 for (int i = 0; i < bndCondExpU->GetExpSize(); ++i)
220 {
221 bndCondIds[bndCondExpU->GetExp(i)->GetGeom()->GetGlobalID()] = i;
222 }
223
224 TriFaceMap vertexFaceMap;
225
226 if (useVertexIds)
227 {
228 for (int i = 0; i < bndCondExpU->GetExpSize(); ++i)
229 {
231 std::dynamic_pointer_cast<SpatialDomains::TriGeom>(
232 bndCondExpU->GetExp(i)->GetGeom());
233
234 TriFaceIDs t(from->GetVid(0), from->GetVid(1), from->GetVid(2));
235 vertexFaceMap[t] = i;
236 }
237 }
238
239 const SpatialDomains::TriGeomMap &tmp = bndGraph->GetAllTriGeoms();
240
241 for (auto &sIt : tmp)
242 {
243 int e;
244
245 if (useVertexIds)
246 {
247 TriFaceIDs t(sIt.second->GetVid(0), sIt.second->GetVid(1),
248 sIt.second->GetVid(2));
249
250 auto tIt = vertexFaceMap.find(t);
251 e = tIt == vertexFaceMap.end() ? -1 : tIt->second;
252 }
253 else
254 {
255 auto mIt = bndCondIds.find(sIt.first);
256 e = mIt == bndCondIds.end() ? -1 : mIt->second;
257 }
258
259 if (e == -1)
260 {
261 cout << "Warning: couldn't find element " << sIt.first << endl;
262 continue;
263 }
264
266 std::dynamic_pointer_cast<SpatialDomains::TriGeom>(
267 bndCondExpU->GetExp(e)->GetGeom());
268
269 SpatialDomains::TriGeomSharedPtr to = sIt.second;
270
271 // Create temporary SegExp
274 bndCondExpU->GetExp(e)->GetBasis(0)->GetBasisKey(),
275 bndCondExpV->GetExp(e)->GetBasis(1)->GetBasisKey(), to);
276
277 const int offset = bndCondExpU->GetPhys_Offset(e);
278 const int nq = toSeg->GetTotPoints();
279
280 Array<OneD, NekDouble> xL(nq), xC(nq), yL(nq), yC(nq), tmp;
281 Array<OneD, NekDouble> zL(nq), zC(nq);
282
283 bndCondExpU->GetExp(e)->GetCoords(xC, yC, zC);
284 toSeg->GetCoords(xL, yL, zL);
285
286 Vmath::Vsub(nq, xL, 1, xC, 1,
287 tmp = bndCondExpU->UpdatePhys() + offset, 1);
288 Vmath::Vsub(nq, yL, 1, yC, 1,
289 tmp = bndCondExpV->UpdatePhys() + offset, 1);
290 Vmath::Vsub(nq, zL, 1, zC, 1,
291 tmp = bndCondExpW->UpdatePhys() + offset, 1);
292 }
293
294 // bndconstrained?
295 bndCondExpU->FwdTransBndConstrained(bndCondExpU->GetPhys(),
296 bndCondExpU->UpdateCoeffs());
297 bndCondExpV->FwdTransBndConstrained(bndCondExpV->GetPhys(),
298 bndCondExpV->UpdateCoeffs());
299 bndCondExpW->FwdTransBndConstrained(bndCondExpW->GetPhys(),
300 bndCondExpW->UpdateCoeffs());
301 }
302}
303} // namespace Nektar::FieldUtils
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:208
FieldSharedPtr m_f
Field object.
Definition: Module.h:239
std::map< std::string, ConfigOption > m_config
List of configuration values.
Definition: Module.h:272
This processing module sets up for the boundary field to be extracted.
void v_Process(po::variables_map &vm) override
void v_Process(po::variables_map &vm) override
Write mesh to output file.
static std::shared_ptr< Module > create(FieldSharedPtr f)
Creates an instance of this class.
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
static SessionReaderSharedPtr CreateInstance(int argc, char *argv[])
Creates an instance of the SessionReader class.
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
static MeshGraphSharedPtr Read(const LibUtilities::SessionReaderSharedPtr pSession, LibUtilities::DomainRangeShPtr rng=LibUtilities::NullDomainRangeShPtr, bool fillGraph=true, SpatialDomains::MeshGraphSharedPtr partitionedGraph=nullptr)
Definition: MeshGraphIO.cpp:53
std::shared_ptr< Field > FieldSharedPtr
Definition: Field.hpp:1026
std::pair< ModuleType, std::string > ModuleKey
Definition: Module.h:180
bool operator==(TriFaceIDs const &p1, TriFaceIDs const &p2)
std::unordered_map< TriFaceIDs, int, TriFaceHash > TriFaceMap
ModuleFactory & GetModuleFactory()
Definition: Module.cpp:47
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< SegExp > SegExpSharedPtr
Definition: SegExp.h:248
std::shared_ptr< TriExp > TriExpSharedPtr
Definition: TriExp.h:250
std::shared_ptr< ExpList > ExpListSharedPtr
Shared pointer to an ExpList object.
std::map< int, TriGeomSharedPtr > TriGeomMap
Definition: TriGeom.h:57
std::map< int, SegGeomSharedPtr > SegGeomMap
Definition: SegGeom.h:49
std::shared_ptr< SegGeom > SegGeomSharedPtr
Definition: Geometry2D.h:59
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:174
std::shared_ptr< TriGeom > TriGeomSharedPtr
Definition: TriGeom.h:56
void hash_combine(std::size_t &seed)
Definition: HashUtils.hpp:44
void Vsub(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Subtract vector z = x-y.
Definition: Vmath.hpp:220
STL namespace.
Represents a command-line configuration option.
Definition: Module.h:129
std::size_t operator()(TriFaceIDs const &p) const