Nektar++
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
Nektar::FieldUtils::ProcessMean Class Reference

This processing module computes the mean of each field. More...

#include <ProcessMean.h>

Inheritance diagram for Nektar::FieldUtils::ProcessMean:
[legend]

Public Member Functions

 ProcessMean (FieldSharedPtr f)
 
 ~ProcessMean () override
 
- Public Member Functions inherited from Nektar::FieldUtils::ProcessModule
 ProcessModule ()
 
 ProcessModule (FieldSharedPtr p_f)
 
- Public Member Functions inherited from Nektar::FieldUtils::Module
FIELD_UTILS_EXPORT Module (FieldSharedPtr p_f)
 
virtual ~Module ()=default
 
void Process (po::variables_map &vm)
 
std::string GetModuleName ()
 
std::string GetModuleDescription ()
 
const ConfigOptionGetConfigOption (const std::string &key) const
 
ModulePriority GetModulePriority ()
 
std::vector< ModuleKeyGetModulePrerequisites ()
 
FIELD_UTILS_EXPORT void RegisterConfig (std::string key, std::string value="")
 Register a configuration option with a module. More...
 
FIELD_UTILS_EXPORT void PrintConfig ()
 Print out all configuration options for a module. More...
 
FIELD_UTILS_EXPORT void SetDefaults ()
 Sets default configuration options for those which have not been set. More...
 
FIELD_UTILS_EXPORT void AddFile (std::string fileType, std::string fileName)
 
FIELD_UTILS_EXPORT void EvaluateTriFieldAtEquiSpacedPts (LocalRegions::ExpansionSharedPtr &exp, const Array< OneD, const NekDouble > &infield, Array< OneD, NekDouble > &outfield)
 

Static Public Member Functions

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

Static Public Attributes

static ModuleKey className
 

Protected Member Functions

void v_Process (po::variables_map &vm) override
 Write mesh to output file. More...
 
std::string v_GetModuleName () override
 
std::string v_GetModuleDescription () override
 
ModulePriority v_GetModulePriority () override
 
- Protected Member Functions inherited from Nektar::FieldUtils::Module
 Module ()
 
virtual void v_Process (po::variables_map &vm)
 
virtual std::string v_GetModuleName ()
 
virtual std::string v_GetModuleDescription ()
 
virtual ModulePriority v_GetModulePriority ()
 
virtual std::vector< ModuleKeyv_GetModulePrerequisites ()
 

Additional Inherited Members

- Public Attributes inherited from Nektar::FieldUtils::Module
FieldSharedPtr m_f
 Field object. More...
 
- Protected Attributes inherited from Nektar::FieldUtils::Module
std::map< std::string, ConfigOptionm_config
 List of configuration values. More...
 
std::set< std::string > m_allowedFiles
 List of allowed file formats. More...
 

Detailed Description

This processing module computes the mean of each field.

Definition at line 47 of file ProcessMean.h.

Constructor & Destructor Documentation

◆ ProcessMean()

Nektar::FieldUtils::ProcessMean::ProcessMean ( FieldSharedPtr  f)

Definition at line 50 of file ProcessMean.cpp.

◆ ~ProcessMean()

Nektar::FieldUtils::ProcessMean::~ProcessMean ( )
override

Definition at line 54 of file ProcessMean.cpp.

55{
56}

Member Function Documentation

◆ create()

static std::shared_ptr< Module > Nektar::FieldUtils::ProcessMean::create ( FieldSharedPtr  f)
inlinestatic

Creates an instance of this class.

Definition at line 51 of file ProcessMean.h.

52 {
54 }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.

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

◆ v_GetModuleDescription()

std::string Nektar::FieldUtils::ProcessMean::v_GetModuleDescription ( )
inlineoverrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::Module.

Definition at line 69 of file ProcessMean.h.

70 {
71 return "Evaluating mean";
72 }

◆ v_GetModuleName()

std::string Nektar::FieldUtils::ProcessMean::v_GetModuleName ( )
inlineoverrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::Module.

Definition at line 64 of file ProcessMean.h.

65 {
66 return "ProcessMean";
67 }

◆ v_GetModulePriority()

ModulePriority Nektar::FieldUtils::ProcessMean::v_GetModulePriority ( )
inlineoverrideprotectedvirtual

Reimplemented from Nektar::FieldUtils::Module.

Definition at line 74 of file ProcessMean.h.

75 {
76 return eModifyExp;
77 }

References Nektar::FieldUtils::eModifyExp.

◆ v_Process()

void Nektar::FieldUtils::ProcessMean::v_Process ( po::variables_map &  vm)
overrideprotectedvirtual

Write mesh to output file.

Reimplemented from Nektar::FieldUtils::Module.

Definition at line 58 of file ProcessMean.cpp.

59{
60 m_f->SetUpExp(vm);
61
62 int nfields = m_f->m_variables.size();
63 int spacedim = m_f->m_graph->GetMeshDimension() + m_f->m_numHomogeneousDir;
64 int npoints = m_f->m_exp[0]->GetNpoints();
65
66 // Calculate volume (or area)
67 Array<OneD, NekDouble> ones(npoints, 1.0);
68 NekDouble scale = m_f->m_exp[0]->Integral(ones);
69
70 // Output volume
71 string name[3] = {"length", "area", "volume"};
72 cout << "Domain " << name[spacedim - 1] << " : " << scale << endl;
73
74 // Calculate integral and mean of each field
75 for (int i = 0; i < nfields; ++i)
76 {
77 NekDouble integral = m_f->m_exp[0]->Integral(m_f->m_exp[i]->GetPhys());
78
79 if (m_f->m_comm->GetSpaceComm()->GetRank() == 0)
80 {
81 cout << "Integral (variable " << m_f->m_variables[i]
82 << ") : " << integral << endl;
83 cout << "Mean (variable " << m_f->m_variables[i]
84 << ") : " << integral / scale << endl;
85 }
86 }
87}
FieldSharedPtr m_f
Field object.
Definition: Module.h:239
double NekDouble

References Nektar::FieldUtils::Module::m_f, and CellMLToNektar.pycml::name.

Member Data Documentation

◆ className

ModuleKey Nektar::FieldUtils::ProcessMean::className
static
Initial value:
"compute the mean of each field over the domain.")
static std::shared_ptr< Module > create(FieldSharedPtr f)
Creates an instance of this class.
Definition: ProcessMean.h:51
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:197
std::pair< ModuleType, std::string > ModuleKey
Definition: Module.h:180
ModuleFactory & GetModuleFactory()
Definition: Module.cpp:47

Definition at line 55 of file ProcessMean.h.