IBAMR
An adaptive and distributed-memory parallel implementation of the immersed boundary (IB) method
|
Class HierarchyAveragedDataManager provides a method of tracking and determining periodic steady states of fields. In particular, this class can be used to determine the average of a field over several instances, for example determining the mean flow of a turbulent flow field. More...
#include </home/runner/work/IBAMR/IBAMR/ibtk/include/ibtk/HierarchyAveragedDataManager.h>
Public Member Functions | |
HierarchyAveragedDataManager (std::string object_name, SAMRAI::tbox::Pointer< SAMRAI::hier::Variable< NDIM > > var, SAMRAI::tbox::Pointer< SAMRAI::tbox::Database > input_db, SAMRAI::tbox::Pointer< SAMRAI::hier::GridGeometry< NDIM > > grid_geom, bool register_for_restart=true) | |
HierarchyAveragedDataManager (std::string object_name, SAMRAI::tbox::Pointer< SAMRAI::hier::Variable< NDIM > > var, SAMRAI::tbox::Pointer< SAMRAI::tbox::Database > input_db, std::set< double > snapshot_time_points, double period_start_time, double period_end_time, double threshold, SAMRAI::tbox::Pointer< SAMRAI::hier::GridGeometry< NDIM > > grid_geom, bool register_for_restart=true) | |
~HierarchyAveragedDataManager ()=default | |
The destructor for class HierarchyAveragedDataManager deallocates patch data as needed. | |
void | clearSnapshots () |
bool | updateTimeAveragedSnapshot (int u_idx, double time, SAMRAI::tbox::Pointer< SAMRAI::hier::PatchHierarchy< NDIM > > hierarchy, const int wgt_idx=IBTK::invalid_index, double tol=1.0e-8) |
bool | updateTimeAveragedSnapshot (int u_idx, double time, SAMRAI::tbox::Pointer< SAMRAI::hier::PatchHierarchy< NDIM > > hierarchy, const std::string &mean_refine_type, const int wgt_idx=IBTK::invalid_index, double tol=1.0e-8) |
bool | isAtPeriodicSteadyState () |
bool | isAtPeriodicSteadyState (double time, const double tol) |
const std::set< double > & | getSnapshotTimePoints () |
double | getTimePoint (double time, double tol) |
SnapshotCache & | getSnapshotCache () |
void | putToDatabase (SAMRAI::tbox::Pointer< SAMRAI::tbox::Database > db) override |
Class HierarchyAveragedDataManager provides a method of tracking and determining periodic steady states of fields. In particular, this class can be used to determine the average of a field over several instances, for example determining the mean flow of a turbulent flow field.
The average field is defined as
Note when the period is equal to 0.0, the average field reduces to
If requested, this class can output visualization files corresponding to the tracked average and convergence criteria (called 'deviation'). Visualization files are written after every call to updateTimeAveragedSnapshot. Side and face centered variables are assumed to represent d-dimensional vector fields, while all other fields output a depth consistent with the provided variable in the constructor.
A common use of this class is to determine an average flow field over the course of a simulation. For example, the below code will take snapshots of a flow field at specified intervals.
IBTK::HierarchyAveragedDataManager::HierarchyAveragedDataManager | ( | std::string | object_name, |
SAMRAI::tbox::Pointer< SAMRAI::hier::Variable< NDIM > > | var, | ||
SAMRAI::tbox::Pointer< SAMRAI::tbox::Database > | input_db, | ||
SAMRAI::tbox::Pointer< SAMRAI::hier::GridGeometry< NDIM > > | grid_geom, | ||
bool | register_for_restart = true |
||
) |
The constructor for class HierarchyAveragedDataManager sets some default values and determines data centering. The expected period and number of snapshots must be set in the input database. This class assumes the snapshots will be taken at equidistant points along the periodic interval.
The input database is searched for the following keys:
IBTK::HierarchyAveragedDataManager::HierarchyAveragedDataManager | ( | std::string | object_name, |
SAMRAI::tbox::Pointer< SAMRAI::hier::Variable< NDIM > > | var, | ||
SAMRAI::tbox::Pointer< SAMRAI::tbox::Database > | input_db, | ||
std::set< double > | snapshot_time_points, | ||
double | period_start_time, | ||
double | period_end_time, | ||
double | threshold, | ||
SAMRAI::tbox::Pointer< SAMRAI::hier::GridGeometry< NDIM > > | grid_geom, | ||
bool | register_for_restart = true |
||
) |
The constructor for class HierarchyAveragedDataManager sets some default values and determines data centering. In this constructor, the times at which snapshots are taken are set by arguments.
The input database is searched for the following keys:
void IBTK::HierarchyAveragedDataManager::clearSnapshots | ( | ) |
Clear the snapshots taken with this class.
|
inline |
Get the SnapshotCache object.
|
inline |
Return the time points this class is storing.
double IBTK::HierarchyAveragedDataManager::getTimePoint | ( | double | time, |
double | tol | ||
) |
Returns the exact data point at which points are being stored in the internal map. Note that if a time point is not found within the specified tolerance, an unrecoverable error occurs.
|
inline |
Return true if all the tracked mean fields are at a steady state.
|
inline |
Return whether the point at the specified time is at a periodic steady state. If multiple time points are found within the provided tolerance, this function returns the closest time that is less than the requested time.
|
overridevirtual |
Write the averaged data manager to a database
Implements SAMRAI::tbox::Serializable.
|
inline |
Update the time averaged snapshot. The update is computed through the relation
This function returns true if the snapshot is at a steady state, or that 1/N*||u - u_avg|| < threshold. Note that a weight patch index should be supplied to accurately compute the norm.
If specified in the constructor, this function also writes visualization files for both the mean field and the deviation.