Nektar++
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
Nektar::FieldUtils::ProcessDisplacement Class Reference

#include <ProcessDisplacement.h>

Inheritance diagram for Nektar::FieldUtils::ProcessDisplacement:
[legend]

Public Member Functions

 ProcessDisplacement (FieldSharedPtr f)
 
 ~ProcessDisplacement () override
 
- Public Member Functions inherited from Nektar::FieldUtils::ProcessBoundaryExtract
 ProcessBoundaryExtract (FieldSharedPtr f)
 
 ~ProcessBoundaryExtract () override
 
- Public Member Functions inherited from Nektar::FieldUtils::ProcessModule
 ProcessModule ()
 
 ProcessModule (FieldSharedPtr p_f)
 
- Public Member Functions inherited from Nektar::FieldUtils::Module
FIELD_UTILS_EXPORT Module (FieldSharedPtr p_f)
 
virtual ~Module ()=default
 
void Process (po::variables_map &vm)
 
std::string GetModuleName ()
 
std::string GetModuleDescription ()
 
const ConfigOptionGetConfigOption (const std::string &key) const
 
ModulePriority GetModulePriority ()
 
std::vector< ModuleKeyGetModulePrerequisites ()
 
FIELD_UTILS_EXPORT void RegisterConfig (std::string key, std::string value="")
 Register a configuration option with a module. More...
 
FIELD_UTILS_EXPORT void PrintConfig ()
 Print out all configuration options for a module. More...
 
FIELD_UTILS_EXPORT void SetDefaults ()
 Sets default configuration options for those which have not been set. More...
 
FIELD_UTILS_EXPORT void AddFile (std::string fileType, std::string fileName)
 
FIELD_UTILS_EXPORT void EvaluateTriFieldAtEquiSpacedPts (LocalRegions::ExpansionSharedPtr &exp, const Array< OneD, const NekDouble > &infield, Array< OneD, NekDouble > &outfield)
 

Static Public Member Functions

static std::shared_ptr< Modulecreate (FieldSharedPtr f)
 Creates an instance of this class. More...
 
- Static Public Member Functions inherited from Nektar::FieldUtils::ProcessBoundaryExtract
static std::shared_ptr< Modulecreate (FieldSharedPtr f)
 Creates an instance of this class. More...
 

Static Public Attributes

static ModuleKey className
 
- Static Public Attributes inherited from Nektar::FieldUtils::ProcessBoundaryExtract
static ModuleKey className
 

Protected Member Functions

void v_Process (po::variables_map &vm) override
 Write mesh to output file. More...
 
std::string v_GetModuleName () override
 
std::string v_GetModuleDescription () override
 
- Protected Member Functions inherited from Nektar::FieldUtils::ProcessBoundaryExtract
void v_Process (po::variables_map &vm) override
 
std::string v_GetModuleName () override
 
std::string v_GetModuleDescription () override
 
ModulePriority v_GetModulePriority () override
 
- Protected Member Functions inherited from Nektar::FieldUtils::Module
 Module ()
 
virtual void v_Process (po::variables_map &vm)
 
virtual std::string v_GetModuleName ()
 
virtual std::string v_GetModuleDescription ()
 
virtual ModulePriority v_GetModulePriority ()
 
virtual std::vector< ModuleKeyv_GetModulePrerequisites ()
 

Additional Inherited Members

- Public Attributes inherited from Nektar::FieldUtils::Module
FieldSharedPtr m_f
 Field object. More...
 
- Protected Attributes inherited from Nektar::FieldUtils::Module
std::map< std::string, ConfigOptionm_config
 List of configuration values. More...
 
std::set< std::string > m_allowedFiles
 List of allowed file formats. More...
 

Detailed Description

Definition at line 43 of file ProcessDisplacement.h.

Constructor & Destructor Documentation

◆ ProcessDisplacement()

Nektar::FieldUtils::ProcessDisplacement::ProcessDisplacement ( FieldSharedPtr  f)

Definition at line 101 of file ProcessDisplacement.cpp.

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}
std::map< std::string, ConfigOption > m_config
List of configuration values.
Definition: Module.h:272

References Nektar::FieldUtils::Module::m_config.

◆ ~ProcessDisplacement()

Nektar::FieldUtils::ProcessDisplacement::~ProcessDisplacement ( )
override

Definition at line 111 of file ProcessDisplacement.cpp.

112{
113}

Member Function Documentation

◆ create()

static std::shared_ptr< Module > Nektar::FieldUtils::ProcessDisplacement::create ( FieldSharedPtr  f)
inlinestatic

Creates an instance of this class.

Definition at line 47 of file ProcessDisplacement.h.

48 {
50 }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.

References Nektar::MemoryManager< DataType >::AllocateSharedPtr().

◆ v_GetModuleDescription()

std::string Nektar::FieldUtils::ProcessDisplacement::v_GetModuleDescription ( )
inlineoverrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::ProcessBoundaryExtract.

Definition at line 65 of file ProcessDisplacement.h.

66 {
67 return "Calculating displacement";
68 }

◆ v_GetModuleName()

std::string Nektar::FieldUtils::ProcessDisplacement::v_GetModuleName ( )
inlineoverrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::ProcessBoundaryExtract.

Definition at line 60 of file ProcessDisplacement.h.

61 {
62 return "ProcessDisplacement";
63 }

◆ v_Process()

void Nektar::FieldUtils::ProcessDisplacement::v_Process ( po::variables_map &  vm)
overrideprotectedvirtual

Write mesh to output file.

Reimplemented from Nektar::FieldUtils::ProcessBoundaryExtract.

Definition at line 115 of file ProcessDisplacement.cpp.

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}
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:208
FieldSharedPtr m_f
Field object.
Definition: Module.h:239
void v_Process(po::variables_map &vm) override
static SessionReaderSharedPtr CreateInstance(int argc, char *argv[])
Creates an instance of the SessionReader class.
static MeshGraphSharedPtr Read(const LibUtilities::SessionReaderSharedPtr pSession, LibUtilities::DomainRangeShPtr rng=LibUtilities::NullDomainRangeShPtr, bool fillGraph=true, SpatialDomains::MeshGraphSharedPtr partitionedGraph=nullptr)
Definition: MeshGraphIO.cpp:53
std::unordered_map< TriFaceIDs, int, TriFaceHash > TriFaceMap
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 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

References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), ASSERTL0, Nektar::LibUtilities::SessionReader::CreateInstance(), Nektar::FieldUtils::Module::m_config, Nektar::FieldUtils::Module::m_f, Nektar::SpatialDomains::MeshGraphIO::Read(), Nektar::FieldUtils::ProcessBoundaryExtract::v_Process(), and Vmath::Vsub().

Member Data Documentation

◆ className

ModuleKey Nektar::FieldUtils::ProcessDisplacement::className
static
Initial value:
=
"Deform a mesh given an input field defining displacement")
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.
std::pair< ModuleType, std::string > ModuleKey
Definition: Module.h:180
ModuleFactory & GetModuleFactory()
Definition: Module.cpp:47

Definition at line 51 of file ProcessDisplacement.h.