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

This processing module interpolates one field to another. More...

#include <ProcessInterpField.h>

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

Public Member Functions

 ProcessInterpField (FieldSharedPtr f)
 
virtual ~ProcessInterpField ()
 
virtual void Process (po::variables_map &vm)
 Write mesh to output file. More...
 
void PrintProgressbar (const int position, const int goal) const
 
virtual std::string GetModuleName ()
 
virtual std::string GetModuleDescription ()
 
virtual ModulePriority GetModulePriority ()
 
- 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
 
const ConfigOptionGetConfigOption (const std::string &key) const
 
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 Attributes

static ModuleKey className
 

Additional Inherited Members

- Public Attributes inherited from Nektar::FieldUtils::Module
FieldSharedPtr m_f
 Field object. More...
 
- Protected Member Functions inherited from Nektar::FieldUtils::Module
 Module ()
 
- 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

This processing module interpolates one field to another.

Definition at line 48 of file ProcessInterpField.h.

Constructor & Destructor Documentation

◆ ProcessInterpField()

Nektar::FieldUtils::ProcessInterpField::ProcessInterpField ( FieldSharedPtr  f)

Definition at line 63 of file ProcessInterpField.cpp.

63  : ProcessModule(f)
64 {
65 
66  m_config["fromxml"] = ConfigOption(
67  false, "NotSet", "Xml file from which to interpolate field");
68  m_config["fromfld"] = ConfigOption(
69  false, "NotSet", "Fld file from which to interpolate field");
70 
71  m_config["clamptolowervalue"] =
72  ConfigOption(false, "-10000000", "Lower bound for interpolation value");
73  m_config["clamptouppervalue"] =
74  ConfigOption(false, "10000000", "Upper bound for interpolation value");
75  m_config["defaultvalue"] =
76  ConfigOption(false, "0", "Default value if point is outside domain");
77  m_config["realmodetoimag"] =
78  ConfigOption(false, "NotSet", "Take fields as sin mode");
79 }
std::map< std::string, ConfigOption > m_config
List of configuration values.
Definition: Module.h:228

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

◆ ~ProcessInterpField()

Nektar::FieldUtils::ProcessInterpField::~ProcessInterpField ( )
virtual

Definition at line 81 of file ProcessInterpField.cpp.

82 {
83 }

Member Function Documentation

◆ create()

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

Creates an instance of this class.

Definition at line 52 of file ProcessInterpField.h.

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

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

◆ GetModuleDescription()

virtual std::string Nektar::FieldUtils::ProcessInterpField::GetModuleDescription ( )
inlinevirtual

Reimplemented from Nektar::FieldUtils::Module.

Definition at line 71 of file ProcessInterpField.h.

72  {
73  return "Interpolating field";
74  }

◆ GetModuleName()

virtual std::string Nektar::FieldUtils::ProcessInterpField::GetModuleName ( )
inlinevirtual

Implements Nektar::FieldUtils::Module.

Definition at line 66 of file ProcessInterpField.h.

67  {
68  return "ProcessInterpField";
69  }

◆ GetModulePriority()

virtual ModulePriority Nektar::FieldUtils::ProcessInterpField::GetModulePriority ( )
inlinevirtual

Implements Nektar::FieldUtils::Module.

Definition at line 76 of file ProcessInterpField.h.

77  {
78  return eFillExp;
79  }

References Nektar::FieldUtils::eFillExp.

◆ PrintProgressbar()

void Nektar::FieldUtils::ProcessInterpField::PrintProgressbar ( const int  position,
const int  goal 
) const

Definition at line 290 of file ProcessInterpField.cpp.

292 {
293  LibUtilities::PrintProgressbar(position, goal, "Interpolating");
294 }
int PrintProgressbar(const int position, const int goal, const std::string message, int lastprogress=-1)
Prints a progressbar.
Definition: Progressbar.hpp:67

References Nektar::LibUtilities::PrintProgressbar().

Referenced by Process().

◆ Process()

void Nektar::FieldUtils::ProcessInterpField::Process ( po::variables_map &  vm)
virtual

Write mesh to output file.

Implements Nektar::FieldUtils::Module.

Definition at line 85 of file ProcessInterpField.cpp.

86 {
87  m_f->SetUpExp(vm);
88 
89  FieldSharedPtr fromField = std::shared_ptr<Field>(new Field());
90 
91  std::vector<std::string> files;
92 
93  // set up session file for from field
94  char *argv[] = {const_cast<char *>("FieldConvert"), nullptr};
95  ParseUtils::GenerateVector(m_config["fromxml"].as<string>(), files);
96  fromField->m_session = LibUtilities::SessionReader::CreateInstance(
97  1, argv, files,
98  LibUtilities::GetCommFactory().CreateInstance("Serial", 0, 0));
99 
100  // Set up range based on min and max of local parallel partition
103 
104  int numHomoDir = m_f->m_numHomogeneousDir;
105  int coordim = m_f->m_exp[0]->GetCoordim(0) + numHomoDir;
106  int npts = m_f->m_exp[0]->GetTotPoints();
107  Array<OneD, Array<OneD, NekDouble>> coords(3);
108 
109  for (int i = 0; i < coordim; ++i)
110  {
111  coords[i] = Array<OneD, NekDouble>(npts);
112  }
113 
114  for (int i = coordim; i < 3; ++i)
115  {
116  coords[i] = NullNekDouble1DArray;
117  }
118 
119  m_f->m_exp[0]->GetCoords(coords[0], coords[1], coords[2]);
120 
121  rng->m_checkShape = false;
122  switch (coordim)
123  {
124  case 3:
125  rng->m_doZrange = true;
126  rng->m_zmin = Vmath::Vmin(npts, coords[2], 1);
127  rng->m_zmax = Vmath::Vmax(npts, coords[2], 1);
128  /* Falls through. */
129  case 2:
130  rng->m_doYrange = true;
131  rng->m_ymin = Vmath::Vmin(npts, coords[1], 1);
132  rng->m_ymax = Vmath::Vmax(npts, coords[1], 1);
133  /* Falls through. */
134  case 1:
135  rng->m_doXrange = true;
136  rng->m_xmin = Vmath::Vmin(npts, coords[0], 1);
137  rng->m_xmax = Vmath::Vmax(npts, coords[0], 1);
138  break;
139  default:
140  NEKERROR(ErrorUtil::efatal, "coordim should be <= 3");
141  }
142 
143  // setup rng parameters.
144  fromField->m_graph =
145  SpatialDomains::MeshGraph::Read(fromField->m_session, rng);
146 
147  // Read in local from field partitions
148  const SpatialDomains::ExpansionInfoMap &expansions =
149  fromField->m_graph->GetExpansionInfo();
150 
151  // check for case where no elements are specified on this
152  // parallel partition
153  if (!expansions.size())
154  {
155  return;
156  }
157 
158  Array<OneD, int> ElementGIDs(expansions.size());
159 
160  int i = 0;
161  for (auto &expIt : expansions)
162  {
163  ElementGIDs[i++] = expIt.second->m_geomShPtr->GetGlobalID();
164  }
165 
166  string fromfld = m_config["fromfld"].as<string>();
167  m_f->FieldIOForFile(fromfld)->Import(
168  fromfld, fromField->m_fielddef, fromField->m_data,
170 
171  int fromNumHomoDir = fromField->m_fielddef[0]->m_numHomogeneousDir;
172  for (i = 0; i < fromField->m_fielddef.size(); ++i)
173  {
174  int d1 = fromField->m_fielddef[i]->m_basis.size();
175  d1 -= 1;
176  if (d1 >= 0 && (fromField->m_fielddef[i]->m_basis[d1] ==
178  fromField->m_fielddef[i]->m_basis[d1] ==
180  {
181  fromField->m_fielddef[i]->m_homogeneousZIDs[0] += 2;
182  fromField->m_fielddef[i]->m_numModes[d1] = 4;
183  fromField->m_fielddef[i]->m_basis[d1] = LibUtilities::eFourier;
184  }
185  }
186 
187  //----------------------------------------------
188  // Set up Expansion information to use mode order from field
189  fromField->m_graph->SetExpansionInfo(fromField->m_fielddef);
190 
191  int nfields = fromField->m_fielddef[0]->m_fields.size();
192 
193  fromField->m_exp.resize(nfields);
194  fromField->m_exp[0] = fromField->SetUpFirstExpList(fromNumHomoDir, true);
195 
196  m_f->m_exp.resize(nfields);
197 
198  // declare auxiliary fields.
199  for (i = 1; i < nfields; ++i)
200  {
201  m_f->m_exp[i] = m_f->AppendExpList(numHomoDir);
202  fromField->m_exp[i] = fromField->AppendExpList(fromNumHomoDir);
203  }
204 
205  // load field into expansion in fromfield.
206  set<int> sinmode;
207  if (m_config["realmodetoimag"].as<string>().compare("NotSet"))
208  {
209  vector<int> value;
211  m_config["realmodetoimag"].as<string>(), value),
212  "Failed to interpret realmodetoimag string");
213  for (int j : value)
214  {
215  sinmode.insert(j);
216  }
217  }
218  for (int j = 0; j < nfields; ++j)
219  {
220  for (i = 0; i < fromField->m_fielddef.size(); i++)
221  {
222  fromField->m_exp[j]->ExtractDataToCoeffs(
223  fromField->m_fielddef[i], fromField->m_data[i],
224  fromField->m_fielddef[0]->m_fields[j],
225  fromField->m_exp[j]->UpdateCoeffs());
226  }
227  if (fromNumHomoDir == 1)
228  {
229  fromField->m_exp[j]->SetWaveSpace(true);
230  if (sinmode.count(j))
231  {
232  int Ncoeff = fromField->m_exp[j]->GetPlane(2)->GetNcoeffs();
233  Vmath::Smul(
234  Ncoeff, -1., fromField->m_exp[j]->GetPlane(2)->GetCoeffs(),
235  1, fromField->m_exp[j]->GetPlane(3)->UpdateCoeffs(), 1);
236  Vmath::Zero(Ncoeff,
237  fromField->m_exp[j]->GetPlane(2)->UpdateCoeffs(),
238  1);
239  }
240  }
241  fromField->m_exp[j]->BwdTrans(fromField->m_exp[j]->GetCoeffs(),
242  fromField->m_exp[j]->UpdatePhys());
243  }
244 
245  int nq1 = m_f->m_exp[0]->GetTotPoints();
246 
247  NekDouble clamp_low = m_config["clamptolowervalue"].as<NekDouble>();
248  NekDouble clamp_up = m_config["clamptouppervalue"].as<NekDouble>();
249  NekDouble def_value = m_config["defaultvalue"].as<NekDouble>();
250 
251  for (int i = 0; i < nfields; i++)
252  {
253  for (int j = 0; j < nq1; ++j)
254  {
255  m_f->m_exp[i]->UpdatePhys()[j] = def_value;
256  }
257  }
258 
259  Interpolator interp;
260  if (m_f->m_verbose && m_f->m_comm->TreatAsRankZero())
261  {
262  interp.SetProgressCallback(&ProcessInterpField::PrintProgressbar, this);
263  }
264  interp.Interpolate(fromField->m_exp, m_f->m_exp);
265  if (m_f->m_verbose && m_f->m_comm->TreatAsRankZero())
266  {
267  cout << endl;
268  }
269 
270  for (int i = 0; i < nfields; ++i)
271  {
272  for (int j = 0; j < nq1; ++j)
273  {
274  if (m_f->m_exp[i]->GetPhys()[j] > clamp_up)
275  {
276  m_f->m_exp[i]->UpdatePhys()[j] = clamp_up;
277  }
278  else if (m_f->m_exp[i]->GetPhys()[j] < clamp_low)
279  {
280  m_f->m_exp[i]->UpdatePhys()[j] = clamp_low;
281  }
282  }
283  m_f->m_exp[i]->FwdTransLocalElmt(m_f->m_exp[i]->GetPhys(),
284  m_f->m_exp[i]->UpdateCoeffs());
285  }
286  // save field names
287  m_f->m_variables = fromField->m_fielddef[0]->m_fields;
288 }
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:215
#define NEKERROR(type, msg)
Assert Level 0 – Fundamental assert which is used whether in FULLDEBUG, DEBUG or OPT compilation mode...
Definition: ErrorUtil.hpp:209
FieldSharedPtr m_f
Field object.
Definition: Module.h:225
void PrintProgressbar(const int position, const int goal) const
static SessionReaderSharedPtr CreateInstance(int argc, char *argv[])
Creates an instance of the SessionReader class.
static bool GenerateVector(const std::string &str, std::vector< T > &out)
Takes a comma-separated string and converts it to entries in a vector.
Definition: ParseUtils.cpp:129
static MeshGraphSharedPtr Read(const LibUtilities::SessionReaderSharedPtr pSession, LibUtilities::DomainRangeShPtr rng=LibUtilities::NullDomainRangeShPtr, bool fillGraph=true)
Definition: MeshGraph.cpp:110
std::shared_ptr< Field > FieldSharedPtr
Definition: Field.hpp:989
static FieldMetaDataMap NullFieldMetaDataMap
Definition: FieldIO.h:53
std::shared_ptr< DomainRange > DomainRangeShPtr
Definition: DomainRange.h:66
CommFactory & GetCommFactory()
@ eFourierHalfModeIm
Fourier Modified expansions with just the imaginary part of the first mode .
Definition: BasisType.h:70
@ eFourierHalfModeRe
Fourier Modified expansions with just the real part of the first mode .
Definition: BasisType.h:68
@ eFourier
Fourier Expansion .
Definition: BasisType.h:57
std::map< int, ExpansionInfoShPtr > ExpansionInfoMap
Definition: MeshGraph.h:143
static Array< OneD, NekDouble > NullNekDouble1DArray
double NekDouble
T Vmin(int n, const T *x, const int incx)
Return the minimum element in x - called vmin to avoid conflict with min.
Definition: Vmath.cpp:1050
void Smul(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Scalar multiply y = alpha*x.
Definition: Vmath.cpp:248
void Zero(int n, T *x, const int incx)
Zero vector.
Definition: Vmath.cpp:492
T Vmax(int n, const T *x, const int incx)
Return the maximum element in x – called vmax to avoid conflict with max.
Definition: Vmath.cpp:945

References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), ASSERTL0, Nektar::LibUtilities::SessionReader::CreateInstance(), Nektar::ErrorUtil::efatal, Nektar::LibUtilities::eFourier, Nektar::LibUtilities::eFourierHalfModeIm, Nektar::LibUtilities::eFourierHalfModeRe, Nektar::ParseUtils::GenerateVector(), Nektar::LibUtilities::GetCommFactory(), Nektar::FieldUtils::Interpolator::Interpolate(), Nektar::FieldUtils::Module::m_config, Nektar::FieldUtils::Module::m_f, NEKERROR, Nektar::LibUtilities::NullFieldMetaDataMap, Nektar::NullNekDouble1DArray, PrintProgressbar(), Nektar::SpatialDomains::MeshGraph::Read(), Nektar::LibUtilities::Interpolator::SetProgressCallback(), Vmath::Smul(), Vmath::Vmax(), Vmath::Vmin(), and Vmath::Zero().

Member Data Documentation

◆ className

ModuleKey Nektar::FieldUtils::ProcessInterpField::className
static
Initial value:
=
"Interpolates one field to another, requires fromxml, "
"fromfld to be defined")
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.
Definition: NekFactory.hpp:198
std::pair< ModuleType, std::string > ModuleKey
Definition: Module.h:285
ModuleFactory & GetModuleFactory()
Definition: Module.cpp:49

Definition at line 56 of file ProcessInterpField.h.