|
| Probes ()=default |
|
| Probes (NcFile &file, const Topology &grid, const ProbesParams ¶ms) |
| Construct from parameter struct.
|
|
template<class ListClass , class ... Params> |
void | static_write (const ListClass &records, Params &&... ps) |
| Directly write results of a list of callback functions to file.
|
|
template<class ListClass , class ... Params> |
void | buffer (double time, const ListClass &probe_list, Params &&... ps) |
| Write (time-dependent) results of a list of callback functions to internal buffer.
|
|
void | flush () |
| Flush the buffer to file.
|
|
template<class ListClass , class ... Params> |
void | write (double time, const ListClass &probe_list, Params &&... ps) |
| Same as buffer followed by flush .
|
|
template<class
NcFile, class Topology>
struct dg::file::Probes< NcFile, Topology >
Facilitate output at selected points.
This class is a high level synthetic diagnostics package. Typically, it works together with the dg::file::parse_probes
function
Instead of writing to file every time one desires probe outputs, an internal buffer stores the probe values when the buffer
member is called. File writes happen only when calling flush
- Note
- in an MPI program all processes in the
file.communicator()
have to create the class and call its methods.
-
It is the topology of the simulation grid that is needed here, i.e. the Topology from which to interpolate, not the topology of the 1d probe array. The class automatically constructs the latter itself.
- Attention
- Because the paraview NetCDF reader is faulty, it is recommended that
Probes
is constructed only after all other root dimensions in the file are defined. This is because of the dimension numbering in NetCDF-4.
template<class
NcFile , class Topology >
template<class ListClass , class ... Params>
Directly write results of a list of callback functions to file.
Each item in the list consists of a name, attributes and a callback function that is called with result
as first argument and the given list of Params as additional arguments.
for ( auto& record : records)
{
record.name;
record.atts;
record.function( result, ps...);
}
The host vector has the size of the grid given in the constructor of the Probes class. The callback function is supposed to write its result into the given host vector.
The result is then interpolated to the probe positions and stored in the netcdf file in the probes group under the given variable name, with the long name as attribute ("long_name") and the "dim" probes dimension.
- Note
- The netcdf file must be open when this method is called.
-
If
param.probes
was false
in the constructor this function returns immediately
- Template Parameters
-
ListClass | A Type whose ListClass::value_type equals a Record class (e.g. dg::file::Record ) The Signature ListClass::value_type::Signature must have either void as return type or a primitive type. The latter indicates a scalar output and must coincide with Topology::ndim() == 0 . If the return type is void then the first argument type must be a Vector type constructible from Topology::host_vector e.g. a dg::DVec . |