Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ProcessBoundaryExtract.cpp
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: ProcessBoundaryExtract.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 // License for the specific language governing rights and limitations under
14 // Permission is hereby granted, free of charge, to any person obtaining a
15 // copy of this software and associated documentation files (the "Software"),
16 // to deal in the Software without restriction, including without limitation
17 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 // and/or sell copies of the Software, and to permit persons to whom the
19 // Software is furnished to do so, subject to the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be included
22 // in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 // DEALINGS IN THE SOFTWARE.
31 //
32 // Description: Set up boundary to be extracted when writing fld file.
33 //
34 ////////////////////////////////////////////////////////////////////////////////
35 
36 #include <string>
37 #include <iostream>
38 using namespace std;
39 
40 #include "ProcessBoundaryExtract.h"
41 
42 
45 
46 namespace Nektar
47 {
48  namespace Utilities
49  {
50  ModuleKey ProcessBoundaryExtract::className =
52  ModuleKey(eProcessModule, "extract"),
53  ProcessBoundaryExtract::create, "Extract Boundary field");
54 
55  ProcessBoundaryExtract::ProcessBoundaryExtract(FieldSharedPtr f) : ProcessModule(f)
56  {
57  // set up dafault values.
58  m_config["bnd"] = ConfigOption(false,"All","Boundary to be extracted");
59  m_config["fldtoboundary"] = ConfigOption(false,"1","Extract fld values to boundary");
60 
61  f->m_writeBndFld = true;
62  f->m_declareExpansionAsContField = true;
63 
64  // check for correct input files
65  if((f->m_inputfiles.count("xml") == 0)&&(f->m_inputfiles.count("xml.gz") == 0))
66  {
67  cout << "An xml or xml.gz input file must be specified for the boundary extraction module" << endl;
68  exit(3);
69  }
70 
71  if((f->m_inputfiles.count("fld") == 0)&&(f->m_inputfiles.count("chk") == 0)&&(f->m_inputfiles.count("rst") == 0))
72  {
73  cout << "A fld or chk or rst input file must be specified for the boundary extraction module" << endl;
74 
75  exit(3);
76  }
77 
78  }
79 
81  {
82  }
83 
84  void ProcessBoundaryExtract::Process(po::variables_map &vm)
85  {
86  if (m_f->m_verbose)
87  {
88  cout << "ProcessBoundaryExtract: Setting up boundary extraction..." << endl;
89  }
90 
91  // Set up Field options to output boundary fld
92  string bvalues = m_config["bnd"].as<string>();
93 
94  if(bvalues.compare("All") == 0)
95  {
96  Array<OneD, const MultiRegions::ExpListSharedPtr>
97  BndExp = m_f->m_exp[0]->GetBndCondExpansions();
98 
99  for(int i = 0; i < BndExp.num_elements(); ++i)
100  {
101  m_f->m_bndRegionsToWrite.push_back(i);
102  }
103  }
104  else
105  {
107  m_f->m_bndRegionsToWrite),"Failed to interpret range string");
108  }
109 
110  if(m_config["fldtoboundary"].as<string>().compare("1") == 0)
111  {
112  m_f->m_fldToBnd = true;
113  }
114  else
115  {
116  m_f->m_fldToBnd = false;
117  }
118 
119  }
120  }
121 }
122 
123