ParaView

From OSUPDOCS
Revision as of 13:43, 28 January 2022 by Nairnj (talk | contribs)
Jump to navigation Jump to search

ParaView is free andadvanced software with many options for visualization, especially when doing 3D calculations.

Getting Started

This section gives the basic steps needs to start using ParaView to visualize material point method output for NairnMPM.

  1. Download and install ParaView. It is available for many platforms and can run in parallel (hence the name) if installed on a multiprocessor system or cluster of computers.
  2. Run someNairnMPM calculations. You have two options for visualizing results in ParaView:
    1. After a simulation is done, use the "Extract Particle VTKs..." option to extract results of any simulation to particle VTK files. Include the data you want to visualize. it works best if you include "meansize" which means the simulation include "size" in the archived results. These VTK files can be used create particle plots.
    2. Include the VTKArchive Custom Task to save results as VTK legacy files. Save the quantities you might want to plot and one of them should be mass (because it is used in many plot options). These VTK files can be used to create mesh plots.
  1. Run from NairnMPM calculations that use the VTKArchive Custom Task to save results as VTK legacy files. Save the quantties you might want to plot and one of them should be mass (because it is used in many plot options)
  2. Run ParaView, choose the open command and select the block of VTK legacy files that were just created. The files will be found in the archived results folder with the naming stlye "MPM_#.vtk" where "MPM" is the root name you used for the calculation's archived files and "#" is the step number. ParaView will let you select these as a block to open them all at once, or expand the block and select a single file. You need to open as a block to get movies of results.
  3. ParaView does not actually read files when they are opened. To read them, click the "Apply" button in the object inspector. When it is done reading, a wire frame surroinding the analysis space should appear in the plot area, but still not plot.
  4. These are numerous types of plots you can create. To try one, click the "Contour" icon. In the object inspector, set it to countour by mass. In the isosurfaces section, set the contour value to some number less than the maximum mass. The optimal value will depend on the structure of your model. You need a lowed number to visualize porous objects or a higher number for solid objects. You can also add several numbers to create contours at several values of mass.
  5. Finally, use the "Coloring" menu (in tool bar or in object inspector) to choose archived component to apply color the the mass surface. If you pick a tensor or vector, you can pick which component to use in the second menu.
  6. If you loading the VTK files as a block, you can use the movies controls to animate the results.

These instructions gets just one type of plot. Once you have data in the ParaView, you can explore all its other options for plotting.

Thresholded Plots

Particle Plots in ParaView

Using the VTKArchive Custom Task always gets grid-based plots. By extracting particle data using ExtractMPM, you can also use ParaView to view particle-based plots. Here is an example to get started with particle plots in ParaView:

  1. Run the TwoDisks.fmcmd example in nairn-mpm-fea/NairnMPM/input/Scripted_Input using its #analysis$="3D MPM" option.
  2. Use ExtractMPM in the create subfolder in the Results folder with the following command line:
    ExtractMPM -V -q sxx -q velx -q dispx -s -o TwoSpheres USAVG-uGIMP.*
    

    where USAVG-uGIMP. is the root for the archive files (and should be changed if you results are different). This command will extract particle data (with the listed quantites) to a series of VTK files names "TwoSpheres_#.vtk" where "#" is the step number. The -s option is needed to get the step number in the file name, which ParaView uses to correctly order the results.

  3. Run ParaView, open the block of saved VTK files, and click "Apply" in the object inspector to load. The files will be read, but nothing will be plotted yet.

You now have two options for particle plots: plot point sprites or plot glyphs at each material point. Point sprites are simple and fast. Glyphs are better and have more options.

Particle Plots using Point Gaussians

To plot using point sprites, do the following:

  1. In the opened file, choose "Point Gaussian" from the "Representation" menu.
  2. For best results, set the radius to a constant radius and enter particle size (usually half the background grid element length)..
  3. Also set opacity to constant value of one (or to some custom value if desired). By editing the color map, you can enable opacity mapping to threshold various points based on their plotted value.
  4. Set coloring to the calculation result you want to visualize.

Particle Plots using Glyphs

To plot particles with glyphs, do the following:

  1. To see the particles, click or use menu command to add Glyphs.
  2. Then in the glyph object inspector:
    • Set "Glyph Type" to box or sphere (whichever you prefer)
    • Set "Orientation Array" to "No Orientation Array" (otherwise boxes might rotate)
    • Set "Scale Array" to "meansize" and "Scale Factor" to 2 (because archive mean size is particle radius). If you did not archive particle size and extract it to the VTK file, the "meansize" will not be available. In this case, set "Scale Array" to "No Scale Array" and set "Scale Factor" to half the grid size. This approach only works when all particle are the same size.
    • Set "Glyph Mode" to "All Points"
  3. Click "Apply" to get the particle plot.

You should have gotten a plot of two spheres which each particle plotted as a small sphere. You can explore all the ParaView options for ways to visualize the results. For example, you can color by any of the properties extracted to the file, create cropping planes, animate the results with the movie controls, or plot different style Glyphs at each material point.