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 
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  f->m_declareAsNewField = true;
66 
67 }
68 
70 {
71 }
72 
73 void ProcessBoundaryExtract::Process(po::variables_map &vm)
74 {
75  Timer timer;
76 
77  if (m_f->m_verbose)
78  {
79  if(m_f->m_comm->GetRank() == 0)
80  {
81  cout << "Process Boundary Extract: Setting up boundary extraction..." << endl;
82  timer.Start();
83  }
84  }
85 
86 
87  // check for correct input files
88  if((m_f->m_inputfiles.count("xml") == 0)&&(m_f->m_inputfiles.count("xml.gz") == 0))
89  {
90  cout << "An xml or xml.gz input file must be specified for the boundary extraction module" << endl;
91  exit(3);
92  }
93 
94  if((m_f->m_inputfiles.count("fld") == 0)&&(m_f->m_inputfiles.count("chk") == 0)&&(m_f->m_inputfiles.count("rst") == 0))
95  {
96  cout << "A fld or chk or rst input file must be specified for the boundary extraction module" << endl;
97 
98  exit(3);
99  }
100 
101  // Set up Field options to output boundary fld
102  string bvalues = m_config["bnd"].as<string>();
103 
104  if(boost::iequals(bvalues,"All"))
105  {
106  int numBndExp = 0;
107 
109  m_f->m_exp[0]->GetGraph());
111  bcs.GetBoundaryRegions();
112 
113  SpatialDomains::BoundaryRegionCollection::const_iterator breg_it;
114  for(breg_it = bregions.begin(); breg_it != bregions.end();
115  ++breg_it)
116  {
117  numBndExp = max(numBndExp,breg_it->first);
118  }
119  // assuming all boundary regions are consecutive number if
120  // regions is one more tham maximum id
121  numBndExp++;
122 
123  // not all partitions in parallel touch all boundaries so
124  // find maximum number of boundaries
125  m_f->m_session->GetComm()->AllReduce(numBndExp,LibUtilities::ReduceMax);
126 
127  // THis presumes boundary regions are numbered consecutively
128  for(int i = 0; i < numBndExp; ++i)
129  {
130  m_f->m_bndRegionsToWrite.push_back(i);
131  }
132  }
133  else
134  {
136  m_f->m_bndRegionsToWrite),
137  "Failed to interpret bnd values string");
138  }
139 
140  m_f->m_fldToBnd = m_config["fldtoboundary"].m_beenSet;
141  m_f->m_addNormals = m_config["addnormals"].m_beenSet;
142 
143  if(m_f->m_verbose)
144  {
145  if(m_f->m_comm->GetRank() == 0)
146  {
147  timer.Stop();
148  NekDouble cpuTime = timer.TimePerTest(1);
149 
150  stringstream ss;
151  ss << cpuTime << "s";
152  cout << "Process Boundary Extract CPU Time: " << setw(8) << left
153  << ss.str() << endl;
154  cpuTime = 0.0;
155  }
156  }
157 }
158 
159 }
160 }
161 
162 
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:161
pair< ModuleType, string > ModuleKey
static bool GenerateOrderedVector(const char *const str, std::vector< unsigned int > &vec)
Definition: ParseUtils.hpp:97
virtual void Process()=0
map< string, ConfigOption > m_config
List of configuration values.
STL namespace.
FieldSharedPtr m_f
Field object.
void Stop()
Definition: Timer.cpp:62
std::map< int, BoundaryRegionShPtr > BoundaryRegionCollection
Definition: Conditions.h:206
double NekDouble
boost::shared_ptr< Field > FieldSharedPtr
Definition: Field.hpp:695
Represents a command-line configuration option.
const BoundaryRegionCollection & GetBoundaryRegions(void) const
Definition: Conditions.h:227
void Start()
Definition: Timer.cpp:51
NekDouble TimePerTest(unsigned int n)
Returns amount of seconds per iteration in a test with n iterations.
Definition: Timer.cpp:108
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