template<typename AccuracyEvaluationLinePlot_T>
class walberla::field::AccuracyEvaluationLinePlotter< AccuracyEvaluationLinePlot_T >
Class for plotting simulation (and solution) values along a line through the domain.
Accuracy Evaluation Line Plotter
Class for generating a series of plots. Build upon AccuracyEvaluationLinePlot, see Accuracy Evaluation Line Plot !
Do not create objects of class AccuracyEvaluationLinePlotter directly, better use one of the 'makeAccuracyEvaluationLinePlotter' functions below!
Parameters for setting up and controlling the line plotter:
There also exist 'makeAccuracyEvaluationLinePlotter' functions that take configuration file data as an additional parameter in order to parse the configuration file for setting up and controlling the line plotter. The configuration file block looks like as follows:
{
frequency [unsigned integer];
filename [string];
extension [string];
}
Example:
{
frequency 100;
filename AccuracyPlot;
extension txt;
}
Note that the shared pointer returned by all 'makeAccuracyEvaluationLinePlotter' functions can be captured by a SharedFunctor for immediate registration at a time loop (see field::makeSharedFunctor).