Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
Nektar::Utilities::ProcessBoundaryExtract Class Reference

This processing module sets up for the boundary field to be extracted. More...

#include <ProcessBoundaryExtract.h>

Inheritance diagram for Nektar::Utilities::ProcessBoundaryExtract:
Inheritance graph
[legend]
Collaboration diagram for Nektar::Utilities::ProcessBoundaryExtract:
Collaboration graph
[legend]

Public Member Functions

 ProcessBoundaryExtract (FieldSharedPtr f)
 
virtual ~ProcessBoundaryExtract ()
 
virtual void Process (po::variables_map &vm)
 
virtual std::string GetModuleName ()
 
- Public Member Functions inherited from Nektar::Utilities::ProcessModule
 ProcessModule ()
 
 ProcessModule (FieldSharedPtr p_f)
 
 ProcessModule (MeshSharedPtr p_m)
 
- Public Member Functions inherited from Nektar::Utilities::Module
 Module (FieldSharedPtr p_f)
 
void RegisterConfig (string key, string value)
 Register a configuration option with a module. More...
 
void PrintConfig ()
 Print out all configuration options for a module. More...
 
void SetDefaults ()
 Sets default configuration options for those which have not been set. More...
 
bool GetRequireEquiSpaced (void)
 
void SetRequireEquiSpaced (bool pVal)
 
void EvaluateTriFieldAtEquiSpacedPts (LocalRegions::ExpansionSharedPtr &exp, const Array< OneD, const NekDouble > &infield, Array< OneD, NekDouble > &outfield)
 
 Module (MeshSharedPtr p_m)
 
virtual void Process ()=0
 
void RegisterConfig (std::string key, std::string value)
 
void PrintConfig ()
 
void SetDefaults ()
 
MeshSharedPtr GetMesh ()
 
virtual void ProcessVertices ()
 Extract element vertices. More...
 
virtual void ProcessEdges (bool ReprocessEdges=true)
 Extract element edges. More...
 
virtual void ProcessFaces (bool ReprocessFaces=true)
 Extract element faces. More...
 
virtual void ProcessElements ()
 Generate element IDs. More...
 
virtual void ProcessComposites ()
 Generate composites. More...
 
virtual void ClearElementLinks ()
 

Static Public Member Functions

static boost::shared_ptr< Modulecreate (FieldSharedPtr f)
 Creates an instance of this class. More...
 

Static Public Attributes

static ModuleKey className
 

Additional Inherited Members

- Protected Member Functions inherited from Nektar::Utilities::Module
 Module ()
 
void ReorderPrisms (PerMap &perFaces)
 Reorder node IDs so that prisms and tetrahedra are aligned correctly. More...
 
void PrismLines (int prism, PerMap &perFaces, std::set< int > &prismsDone, std::vector< ElementSharedPtr > &line)
 
- Protected Attributes inherited from Nektar::Utilities::Module
FieldSharedPtr m_f
 Field object. More...
 
map< string, ConfigOptionm_config
 List of configuration values. More...
 
bool m_requireEquiSpaced
 
MeshSharedPtr m_mesh
 Mesh object. More...
 
std::map< std::string,
ConfigOption
m_config
 List of configuration values. More...
 

Detailed Description

This processing module sets up for the boundary field to be extracted.

Definition at line 49 of file ProcessBoundaryExtract.h.

Constructor & Destructor Documentation

Nektar::Utilities::ProcessBoundaryExtract::ProcessBoundaryExtract ( FieldSharedPtr  f)

Definition at line 55 of file ProcessBoundaryExtract.cpp.

References Nektar::Utilities::Module::m_config.

55  : 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_requireBoundaryExpansion = true;
66 
67 }
map< string, ConfigOption > m_config
List of configuration values.
Nektar::Utilities::ProcessBoundaryExtract::~ProcessBoundaryExtract ( )
virtual

Definition at line 69 of file ProcessBoundaryExtract.cpp.

70 {
71 }

Member Function Documentation

static boost::shared_ptr<Module> Nektar::Utilities::ProcessBoundaryExtract::create ( FieldSharedPtr  f)
inlinestatic

Creates an instance of this class.

Definition at line 53 of file ProcessBoundaryExtract.h.

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

53  {
55  }
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
virtual std::string Nektar::Utilities::ProcessBoundaryExtract::GetModuleName ( )
inlinevirtual

Implements Nektar::Utilities::Module.

Definition at line 63 of file ProcessBoundaryExtract.h.

64  {
65  return "ProcessBoundaryExtract";
66  }
void Nektar::Utilities::ProcessBoundaryExtract::Process ( po::variables_map &  vm)
virtual

Implements Nektar::Utilities::Module.

Definition at line 73 of file ProcessBoundaryExtract.cpp.

References ASSERTL0, Nektar::ParseUtils::GenerateOrderedVector(), Nektar::SpatialDomains::BoundaryConditions::GetBoundaryRegions(), Nektar::Utilities::Module::m_config, Nektar::Utilities::Module::m_f, and Nektar::LibUtilities::ReduceMax.

74 {
75  if (m_f->m_verbose)
76  {
77  if(m_f->m_comm->TreatAsRankZero())
78  {
79  cout << "ProcessBoundaryExtract: Setting up boundary extraction..."
80  << endl;
81  }
82  }
83 
84  m_f->m_fldToBnd = m_config["fldtoboundary"].m_beenSet;
85  m_f->m_addNormals = m_config["addnormals"].m_beenSet;
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_fldToBnd)
95  {
96  if((m_f->m_inputfiles.count("fld") == 0) &&
97  (m_f->m_inputfiles.count("chk") == 0) &&
98  (m_f->m_inputfiles.count("rst") == 0))
99  {
100  cout << "A fld or chk or rst input file must be specified for "
101  << "the boundary extraction module with fldtoboundary option."
102  << endl;
103 
104  exit(3);
105  }
106  }
107 
108  // Set up Field options to output boundary fld
109  string bvalues = m_config["bnd"].as<string>();
110 
111  if(boost::iequals(bvalues,"All"))
112  {
113  int numBndExp = 0;
114 
115  SpatialDomains::BoundaryConditions bcs(m_f->m_session,
116  m_f->m_exp[0]->GetGraph());
118  bcs.GetBoundaryRegions();
119 
120  SpatialDomains::BoundaryRegionCollection::const_iterator breg_it;
121  for(breg_it = bregions.begin(); breg_it != bregions.end();
122  ++breg_it)
123  {
124  numBndExp = max(numBndExp,breg_it->first);
125  }
126  // assuming all boundary regions are consecutive number if
127  // regions is one more tham maximum id
128  numBndExp++;
129 
130  // not all partitions in parallel touch all boundaries so
131  // find maximum number of boundaries
132  m_f->m_session->GetComm()->AllReduce(numBndExp,LibUtilities::ReduceMax);
133 
134  // THis presumes boundary regions are numbered consecutively
135  for(int i = 0; i < numBndExp; ++i)
136  {
137  m_f->m_bndRegionsToWrite.push_back(i);
138  }
139  }
140  else
141  {
143  m_f->m_bndRegionsToWrite),
144  "Failed to interpret bnd values string");
145  }
146 }
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:188
static bool GenerateOrderedVector(const char *const str, std::vector< unsigned int > &vec)
Definition: ParseUtils.hpp:97
map< string, ConfigOption > m_config
List of configuration values.
FieldSharedPtr m_f
Field object.
std::map< int, BoundaryRegionShPtr > BoundaryRegionCollection
Definition: Conditions.h:206

Member Data Documentation

ModuleKey Nektar::Utilities::ProcessBoundaryExtract::className
static
Initial value:

Definition at line 56 of file ProcessBoundaryExtract.h.