Nektar++
utilities/ExtractCriticalLayer.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: ExtractCriticalLayer.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: Extract location of critical layer from streak file
32 //
33 ///////////////////////////////////////////////////////////////////////////////
34 
35 #include <cstdio>
36 #include <cstdlib>
37 
38 #include <MultiRegions/ExpList.h>
39 
40 using namespace std;
41 using namespace Nektar;
42 
44 
45 int main(int argc, char *argv[])
46 {
47  int i;
48  NekDouble cr = 0;
49 
50  if (argc != 3)
51  {
52  fprintf(stderr,
53  "Usage: ./ExtractCriticalLayer meshfile fieldfile \n");
54  exit(1);
55  }
56 
57  //------------------------------------------------------------
58  // Create Session file.
60  LibUtilities::SessionReader::CreateInstance(argc, argv);
61  //-----------------------------------------------------------
62 
63  //-------------------------------------------------------------
64  // Read in mesh from input file
66  SpatialDomains::MeshGraph::Read(vSession);
67  //------------------------------------------------------------
68 
69  //-------------------------------------------------------------
70  // Define Streak Expansion
72 
74  graphShPt);
75  //---------------------------------------------------------------
76 
77  //----------------------------------------------
78  // Import field file.
79  string fieldfile(argv[argc - 1]);
80  vector<LibUtilities::FieldDefinitionsSharedPtr> fielddef;
81  vector<vector<NekDouble>> fielddata;
82  LibUtilities::Import(fieldfile, fielddef, fielddata);
83  //----------------------------------------------
84 
85  //----------------------------------------------
86  // Copy data from field file
87  string streak_field("w");
88  for (unsigned int i = 0; i < fielddata.size(); ++i)
89  {
90  streak->ExtractDataToCoeffs(fielddef[i], fielddata[i], streak_field,
91  streak->UpdateCoeffs());
92  }
93  //----------------------------------------------
94 
95  int npts;
96  vSession->LoadParameter("NumCriticalLayerPts", npts, 30);
97  Array<OneD, NekDouble> x_c(npts);
98  Array<OneD, NekDouble> y_c(npts);
99 
100  NekDouble trans;
101  vSession->LoadParameter("WidthOfLayers", trans, 0.1);
102 
103  Computestreakpositions(streak, x_c, y_c, cr, trans);
104 
105  cout << "# x_c y_c" << endl;
106  for (i = 0; i < npts; ++i)
107  {
108  fprintf(stdout, "%12.10lf %12.10lf \n", x_c[i], y_c[i]);
109  // cout << x_c[i] << " " << y_c[i] << endl;
110  }
111 }
void Computestreakpositions(MultiRegions::ExpListSharedPtr &streak, Array< OneD, NekDouble > &xc, Array< OneD, NekDouble > &yc, NekDouble cr, NekDouble trans)
General purpose memory allocation routines with the ability to allocate from thread specific memory p...
void Import(const std::string &infilename, std::vector< FieldDefinitionsSharedPtr > &fielddefs, std::vector< std::vector< NekDouble >> &fielddata, FieldMetaDataMap &fieldinfomap, const Array< OneD, int > &ElementIDs)
This function allows for data to be imported from an FLD file when a session and/or communicator is n...
Definition: FieldIO.cpp:290
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< ExpList > ExpListSharedPtr
Shared pointer to an ExpList object.
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:172
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2
double NekDouble
int main(int argc, char *argv[])