Programmierpraktikum NPDGL I
|
Interface for data output. Mehr ...
#include <interfaces.hh>
Öffentliche Methoden | |
template<class DofVectorType > | |
void | write (const DofVectorType &data, unsigned int timeStep=0, double time=0.0) const |
executes the Dof vector data output |
Interface for data output.
This interface should be used for implementations that store Dof vector data into
void DataOutputInterface::write | ( | const DofVectorType & | data, |
unsigned int | timeStep = 0 , |
||
double | time = 0.0 |
||
) | const [inline] |
executes the Dof vector data output
DofVectorType | The data type. This class needs to be derived from a DofVectorInterface. |
data | data object that shall be visualized or written to a persistent object. |
timeStep | an optional time step number if discrete function is time-dependent. |
time | an optional time instant if discrete function is time-dependent. |
Erneute Implementation in DataOutput::GnuplotOneD und DataOutput::Empty.