Advanced State Management

From KitwarePublic
Jump to navigationJump to search

Introduction

This tutorial covers different types of state management.

Save State / Load State

ParaView state files are saved by selecting the menu option File → Save State. The pipeline, orientation of the data set, and all view windows are saved. Select File → Load State to open a saved ParaView state file.

Save Data and Save Geometry

ParaView offers two features to manage the complexity of your data sets – Save Data and Save Geometry.


Save Data

The Save Data feature is selected from the main menu: File → Save Data. This feature will save the data output from the selected source/filter. The data type is the same as that produced by the source/filter. For example, the data can be an unstructured grid, image data, etc…

In the example below we have created a simple pipeline using the can.ex2 data set along with a Clip filter. We will then select the Save Data option.


Advanced state management 1.png


After selecting a name for the file that you wish to save the following widow will then appear:


Advanced state management 2.png


The Data Mode is a parameter on how the data is saved in the vtx files. Appended is a good default; it means the data is written in binary format after the XML metadata in the file specified. Other options include Binary and ASCII. Binary means that the data is written in between tags of the XML metadata and ASCII means that all data is converted to ASCII strings – which is a very inefficient way of saving the data, but useful if you have a small data set and want to be able to read all the values in a text editor.

The Ghost Level is only really valid for parallel data sets. It saves extra layers of cells between files that are used to remove inter-file artifacts. However, if all the data is in one process, then this is meaningless.

For most users using the Appended mode along with a Ghost Level of 0 will suffice.

To open our saved data set select File → Open and browse to the .pvd file which was created. Also worth noting is that once the data has been saved the complexity of the data is significantly reduced. In our example above, we applied a clip filter to the data set; therefore when we reload the saved data set you will notice that only the relevant half of the original data set has been restored, thus reducing the size of our data.


Save Geometry

Save Geometry will save the geometry for the entire animation. The saved file will have as many time steps as there were in the animation. All the geometry in the view is saved, not merely the selected source. The saved data is always polydata.

To use this feature select File → Save Geometry. To open our saved data set select File → Open and browse to the .pvd file which was created.


Record Test

Record Test offers the user the ability to capture various commands and actions to be replayed at a later time. To use this feature select the menu item Tools → Record Test. You will be prompted to specify a file to save the recorded data to. At this point any action taken will be recorded and may be later played back by selecting Tools → Play Test. You can also run a test by using the –run-test=filename option when starting ParaView.

This feature is useful to group actions/commands that are common to a data set or a group of actions that can be applied to several different data sets. The latter only makes sense when the recorded commands are compatible with the data set it is being played back on. For example, if you were to record a series of actions specific to a data set with time steps, these actions may or may not be able to be played back on a different data set that has no time steps.

Another good use of this feature is to be able to record the steps needed to recreate bugs. The recorded test file can then be sent to the ParaView developers.


Acknowledgements

Sandia is a multiprogram laboratory operated by Sandia Corporation, a Lockheed Martin Company, for the United States Department of Energy’s National Nuclear Security Administration under contract DE-AC04-94AL85000.