Damaris v1.11.0 is released

Version v1.11.0 of Damaris has better support for Variables that may not be written every iteration. It also adds a new API function to allow introspection into what plugins the Damaris library has been compiled with (e.g. current possibilities are HDF5, Paraview, Visit and Python)

This is the new client side API call – .

1
2
3
4
5
6
7
8
 
int damaris_has_plugin(DAMARIS_PLUGIN_TYPE plugin);
 
typedef enum {  DAMARIS_HAS_HDF5 = 0,
                DAMARIS_HAS_VISIT,
                DAMARIS_HAS_PARAVIEW,
                DAMARIS_HAS_PYTHON
             } DAMARIS_PLUGIN_TYPE ;

The function lets a programmer check what I/O libraries Damaris has been compiled against, which can be useful if automating the writing of the Damaris configuration file, e.g. when using the ModifyModel class to generate a Damaris XML file.

Download is available from the Damaris download page.

Comments are closed.