Nektar++
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 
44 
45 namespace Nektar
46 {
47 namespace Utilities
48 {
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(true,"NotSet","Extract fld values to boundary");
60  m_config["addnormals"] = ConfigOption(true,"NotSet","Add normals to output");
61 
62 
63  f->m_writeBndFld = true;
64  f->m_declareExpansionAsContField = true;
65 
66  // check for correct input files
67  if((f->m_inputfiles.count("xml") == 0)&&(f->m_inputfiles.count("xml.gz") == 0))
68  {
69  cout << "An xml or xml.gz input file must be specified for the boundary extraction module" << endl;
70  exit(3);
71  }
72 
73  if((f->m_inputfiles.count("fld") == 0)&&(f->m_inputfiles.count("chk") == 0)&&(f->m_inputfiles.count("rst") == 0))
74  {
75  cout << "A fld or chk or rst input file must be specified for the boundary extraction module" << endl;
76 
77  exit(3);
78  }
79 
80 }
81 
83 {
84 }
85 
86 void ProcessBoundaryExtract::Process(po::variables_map &vm)
87 {
88  if (m_f->m_verbose)
89  {
90  cout << "ProcessBoundaryExtract: Setting up boundary extraction..." << endl;
91  }
92 
93  // Set up Field options to output boundary fld
94  string bvalues = m_config["bnd"].as<string>();
95 
96  if(bvalues.compare("All") == 0)
97  {
99  BndExp = m_f->m_exp[0]->GetBndCondExpansions();
100 
101  for(int i = 0; i < BndExp.num_elements(); ++i)
102  {
103  m_f->m_bndRegionsToWrite.push_back(i);
104  }
105  }
106  else
107  {
109  m_f->m_bndRegionsToWrite),"Failed to interpret range string");
110  }
111 
112  m_f->m_fldToBnd = m_config["fldtoboundary"].m_beenSet;
113  m_f->m_addNormals = m_config["addnormals"].m_beenSet;
114 
115 }
116 
117 }
118 }
119 
120 
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:135
pair< ModuleType, string > ModuleKey
static bool GenerateOrderedVector(const char *const str, std::vector< unsigned int > &vec)
Definition: ParseUtils.hpp:96
virtual void Process()=0
map< string, ConfigOption > m_config
List of configuration values.
STL namespace.
FieldSharedPtr m_f
Field object.
boost::shared_ptr< Field > FieldSharedPtr
Definition: Field.hpp:677
Represents a command-line configuration option.
ModuleFactory & GetModuleFactory()
Abstract base class for processing modules.
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, tDescription pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:215