Nektar++
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Attributes | Friends | List of all members
Nektar::FilterBenchmark Class Reference

Records activation and repolarisation times. More...

#include <FilterBenchmark.h>

Inheritance diagram for Nektar::FilterBenchmark:
Inheritance graph
[legend]
Collaboration diagram for Nektar::FilterBenchmark:
Collaboration graph
[legend]

Public Member Functions

 FilterBenchmark (const LibUtilities::SessionReaderSharedPtr &pSession, const std::map< std::string, std::string > &pParams)
 Construct the benchmark filter. More...
 
virtual ~FilterBenchmark ()
 Destructor for the benchmark filter. More...
 
- Public Member Functions inherited from Nektar::SolverUtils::Filter
SOLVER_UTILS_EXPORT Filter (const LibUtilities::SessionReaderSharedPtr &pSession)
 
virtual SOLVER_UTILS_EXPORT ~Filter ()
 
SOLVER_UTILS_EXPORT void Initialise (const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
 
SOLVER_UTILS_EXPORT void Update (const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
 
SOLVER_UTILS_EXPORT void Finalise (const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
 
SOLVER_UTILS_EXPORT bool IsTimeDependent ()
 

Static Public Member Functions

static SolverUtils::FilterSharedPtr create (const LibUtilities::SessionReaderSharedPtr &pSession, const std::map< std::string, std::string > &pParams)
 Creates an instance of this class. More...
 

Static Public Attributes

static std::string className
 Name of the class. More...
 

Protected Member Functions

virtual void v_Initialise (const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
 Initialises the benchmark filter and allocates storage. More...
 
virtual void v_Update (const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
 Update recorded times. More...
 
virtual void v_Finalise (const Array< OneD, const MultiRegions::ExpListSharedPtr > &pFields, const NekDouble &time)
 Finalises the benchmark filter and write out recorded data. More...
 
virtual bool v_IsTimeDependent ()
 Identifies that the benchmark filter is time dependent. More...
 

Private Attributes

std::vector< Array< OneD, NekDouble > > m_threshold
 Storage for activation and repolarisation times. More...
 
Array< OneD, int > m_idx
 Number of activations and repolarisations detected for each point. More...
 
Array< OneD, int > m_polarity
 Indicates if the previous event was an activation or repolarisation. More...
 
NekDouble m_startTime
 Time at which to start detecting activations and repolarisations. More...
 
NekDouble m_thresholdValue
 Value at which tissue is considered active. More...
 
NekDouble m_initialValue
 Initial time to use in storage array. More...
 
std::string m_outputFile
 Filename of output files. More...
 
LibUtilities::FieldIOSharedPtr m_fld
 FieldIO object used for writing output files. More...
 

Friends

class MemoryManager< FilterBenchmark >
 

Additional Inherited Members

- Protected Attributes inherited from Nektar::SolverUtils::Filter
LibUtilities::SessionReaderSharedPtr m_session
 

Detailed Description

Records activation and repolarisation times.

This class records the sequence of activation and repolarisation times across the entire domain into a two-dimensional storage structure. At each timestep, the voltage at each point in the domain is examined to identify if it has crossed the threshold value. If so, the time of crossing is recorded. Auxiliary arrays hold the current index of each point (i.e. the number of crossings of the threshold) and the type of the last crossing (activation or repolarisation).

Definition at line 45 of file FilterBenchmark.h.

Constructor & Destructor Documentation

Nektar::FilterBenchmark::FilterBenchmark ( const LibUtilities::SessionReaderSharedPtr pSession,
const std::map< std::string, std::string > &  pParams 
)

Construct the benchmark filter.

Parameters
pSessionSession reader for IO
pParamsParameters of filter

Definition at line 61 of file FilterBenchmark.cpp.

References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), ASSERTL0, m_fld, m_initialValue, m_outputFile, m_startTime, and m_thresholdValue.

64  : Filter(pSession)
65 {
66  ASSERTL0(pParams.find("ThresholdValue") != pParams.end(),
67  "Missing parameter 'ThresholdValue'.");
68  m_thresholdValue = atof(pParams.find("ThresholdValue")->second.c_str());
69  ASSERTL0(pParams.find("InitialValue") != pParams.end(),
70  "Missing parameter 'InitialValue'.");
71  m_initialValue = atof(pParams.find("InitialValue")->second.c_str());
72  ASSERTL0(!(pParams.find("OutputFile")->second.empty()),
73  "Missing parameter 'OutputFile'.");
74  m_outputFile = pParams.find("OutputFile")->second;
75 
76  m_startTime = 0.0;
77  if (pParams.find("StartTime") != pParams.end())
78  {
79  m_startTime = atof(pParams.find("StartTime")->second.c_str());
80  }
81 
83  pSession->GetComm());
84 
85 }
#define ASSERTL0(condition, msg)
Definition: ErrorUtil.hpp:135
NekDouble m_initialValue
Initial time to use in storage array.
SOLVER_UTILS_EXPORT Filter(const LibUtilities::SessionReaderSharedPtr &pSession)
Definition: Filter.cpp:52
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
std::string m_outputFile
Filename of output files.
NekDouble m_startTime
Time at which to start detecting activations and repolarisations.
LibUtilities::FieldIOSharedPtr m_fld
FieldIO object used for writing output files.
NekDouble m_thresholdValue
Value at which tissue is considered active.
Nektar::FilterBenchmark::~FilterBenchmark ( )
virtual

Destructor for the benchmark filter.

Definition at line 91 of file FilterBenchmark.cpp.

92 {
93 
94 }

Member Function Documentation

static SolverUtils::FilterSharedPtr Nektar::FilterBenchmark::create ( const LibUtilities::SessionReaderSharedPtr pSession,
const std::map< std::string, std::string > &  pParams 
)
inlinestatic

Creates an instance of this class.

Definition at line 51 of file FilterBenchmark.h.

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

53  {
56  pParams);
57  return p;
58  }
static boost::shared_ptr< DataType > AllocateSharedPtr()
Allocate a shared pointer from the memory pool.
boost::shared_ptr< Filter > FilterSharedPtr
A shared pointer to a Driver object.
Definition: Filter.h:50
void Nektar::FilterBenchmark::v_Finalise ( const Array< OneD, const MultiRegions::ExpListSharedPtr > &  pFields,
const NekDouble time 
)
protectedvirtual

Finalises the benchmark filter and write out recorded data.

Writes out the crossings to file.

Parameters
pFieldsField storage expansion list.
timeCurrent time.

Implements Nektar::SolverUtils::Filter.

Definition at line 175 of file FilterBenchmark.cpp.

References m_fld, m_outputFile, and m_threshold.

178 {
179  for (int i = 0; i < m_threshold.size() - 1; ++i)
180  {
181  std::stringstream vOutputFilename;
182  vOutputFilename << m_outputFile << "_" << i << ".fld";
183 
184  std::vector<LibUtilities::FieldDefinitionsSharedPtr> FieldDef
185  = pFields[0]->GetFieldDefinitions();
186  std::vector<std::vector<NekDouble> > FieldData(FieldDef.size());
187 
188  Array<OneD, NekDouble> vCoeffs(pFields[0]->GetNcoeffs());
189  pFields[0]->FwdTrans_IterPerExp(m_threshold[i], vCoeffs);
190 
191  // copy Data into FieldData and set variable
192  for(int i = 0; i < FieldDef.size(); ++i)
193  {
194  // Could do a search here to find correct variable
195  FieldDef[i]->m_fields.push_back("m");
196  pFields[0]->AppendFieldData(FieldDef[i], FieldData[i], vCoeffs);
197  }
198 
199  m_fld->Write(vOutputFilename.str(),FieldDef,FieldData);
200  }
201 }
std::string m_outputFile
Filename of output files.
LibUtilities::FieldIOSharedPtr m_fld
FieldIO object used for writing output files.
std::vector< Array< OneD, NekDouble > > m_threshold
Storage for activation and repolarisation times.
void Nektar::FilterBenchmark::v_Initialise ( const Array< OneD, const MultiRegions::ExpListSharedPtr > &  pFields,
const NekDouble time 
)
protectedvirtual

Initialises the benchmark filter and allocates storage.

Implements Nektar::SolverUtils::Filter.

Definition at line 102 of file FilterBenchmark.cpp.

References m_idx, m_initialValue, m_polarity, and m_threshold.

105 {
107  pFields[0]->GetNpoints(), m_initialValue));
108 
109  m_idx = Array<OneD, int> (pFields[0]->GetNpoints(), 0);
110  m_polarity = Array<OneD, int> (pFields[0]->GetNpoints(), -1);
111 }
NekDouble m_initialValue
Initial time to use in storage array.
std::vector< Array< OneD, NekDouble > > m_threshold
Storage for activation and repolarisation times.
Array< OneD, int > m_idx
Number of activations and repolarisations detected for each point.
Array< OneD, int > m_polarity
Indicates if the previous event was an activation or repolarisation.
bool Nektar::FilterBenchmark::v_IsTimeDependent ( )
protectedvirtual

Identifies that the benchmark filter is time dependent.

Returns
This filter is time dependent.

Implements Nektar::SolverUtils::Filter.

Definition at line 207 of file FilterBenchmark.cpp.

208 {
209  return true;
210 }
void Nektar::FilterBenchmark::v_Update ( const Array< OneD, const MultiRegions::ExpListSharedPtr > &  pFields,
const NekDouble time 
)
protectedvirtual

Update recorded times.

Checks each point in the domain to determine if it has crossed the threshold. The direction of crossing is determined. Additional storage is allocated if needed.

Parameters
pFieldsField storage expansion lists
timeCurrent time

Implements Nektar::SolverUtils::Filter.

Definition at line 121 of file FilterBenchmark.cpp.

References m_idx, m_initialValue, m_polarity, m_startTime, m_threshold, m_thresholdValue, Nektar::LibUtilities::ReduceMax, and Vmath::Vmax().

124 {
125  // Only proceed if the start time has passed
126  if (time < m_startTime)
127  {
128  return;
129  }
130 
131  // Examine each point in turn
132  for (int i = 0; i < pFields[0]->GetNpoints(); ++i)
133  {
134  if ((m_polarity[i] == -1 &&
135  pFields[0]->GetPhys()[i] > m_thresholdValue) ||
136  (m_polarity[i] == 1 &&
137  pFields[0]->GetPhys()[i] < m_thresholdValue))
138  {
139  // If APD less than 50ms, remove last activation
140  if (m_polarity[i] == 1 &&
141  time - m_threshold[m_idx[i]][i] < 50)
142  {
143  m_idx[i]--;
145  }
146  else
147  {
148  m_threshold[m_idx[i]][i] = time;
149  m_idx[i]++;
150  }
151  // Update polarity of last crossing
152  m_polarity[i] *= -1;
153  }
154  }
155 
156  // Allocate additional storage if any point has as many crossings as
157  // current storage permits.
158  int max_idx = Vmath::Vmax(pFields[0]->GetNpoints(), m_idx, 1);
159  pFields[0]->GetSession()->GetComm()->AllReduce(max_idx,
161  if (m_threshold.size() == max_idx)
162  {
164  pFields[0]->GetNpoints(), m_initialValue));
165  }
166 
167 }
NekDouble m_initialValue
Initial time to use in storage array.
T Vmax(int n, const T *x, const int incx)
Return the maximum element in x – called vmax to avoid conflict with max.
Definition: Vmath.cpp:756
NekDouble m_startTime
Time at which to start detecting activations and repolarisations.
NekDouble m_thresholdValue
Value at which tissue is considered active.
std::vector< Array< OneD, NekDouble > > m_threshold
Storage for activation and repolarisation times.
Array< OneD, int > m_idx
Number of activations and repolarisations detected for each point.
Array< OneD, int > m_polarity
Indicates if the previous event was an activation or repolarisation.

Friends And Related Function Documentation

friend class MemoryManager< FilterBenchmark >
friend

Definition at line 48 of file FilterBenchmark.h.

Member Data Documentation

std::string Nektar::FilterBenchmark::className
static
Initial value:

Name of the class.

Definition at line 61 of file FilterBenchmark.h.

LibUtilities::FieldIOSharedPtr Nektar::FilterBenchmark::m_fld
private

FieldIO object used for writing output files.

Definition at line 103 of file FilterBenchmark.h.

Referenced by FilterBenchmark(), and v_Finalise().

Array<OneD, int> Nektar::FilterBenchmark::m_idx
private

Number of activations and repolarisations detected for each point.

Definition at line 91 of file FilterBenchmark.h.

Referenced by v_Initialise(), and v_Update().

NekDouble Nektar::FilterBenchmark::m_initialValue
private

Initial time to use in storage array.

Definition at line 99 of file FilterBenchmark.h.

Referenced by FilterBenchmark(), v_Initialise(), and v_Update().

std::string Nektar::FilterBenchmark::m_outputFile
private

Filename of output files.

Definition at line 101 of file FilterBenchmark.h.

Referenced by FilterBenchmark(), and v_Finalise().

Array<OneD, int> Nektar::FilterBenchmark::m_polarity
private

Indicates if the previous event was an activation or repolarisation.

Definition at line 93 of file FilterBenchmark.h.

Referenced by v_Initialise(), and v_Update().

NekDouble Nektar::FilterBenchmark::m_startTime
private

Time at which to start detecting activations and repolarisations.

Definition at line 95 of file FilterBenchmark.h.

Referenced by FilterBenchmark(), and v_Update().

std::vector<Array<OneD, NekDouble> > Nektar::FilterBenchmark::m_threshold
private

Storage for activation and repolarisation times.

Definition at line 89 of file FilterBenchmark.h.

Referenced by v_Finalise(), v_Initialise(), and v_Update().

NekDouble Nektar::FilterBenchmark::m_thresholdValue
private

Value at which tissue is considered active.

Definition at line 97 of file FilterBenchmark.h.

Referenced by FilterBenchmark(), and v_Update().