Visualization: Difference between revisions

From Fluids Wiki
Jump to navigation Jump to search
(Moved information about visualization from Graham Tips to here)
Line 14: Line 14:
=== VisIt ===
=== VisIt ===


'''Note:''' as of writing this
'''Note:''' as of Jan 2018:
* you must use VisIt 2.13
* you must use VisIt 2.13
* it is unclear how to take advantage of GPU accelerations
* it is unclear how to take advantage of GPU accelerations
Line 21: Line 21:


=== Paraview ===
=== Paraview ===
'''Note:''' as of Jan 2018:
* you must use ParaView 5.3.0 when using CPU-based computation on Graham
* you must use ParaView 5.4.0 when using GPU-based computation on Graham
See the [https://docs.computecanada.ca/wiki/Visualization Compute Canada Visualization] page for further updates and details.


More information can be gathered at [[ParaView]].
More information can be gathered at [[ParaView]].

Revision as of 12:11, 23 January 2018

Visualization on Graham

All of what you need to know about running Paraview or VisIt on Graham is presented in Graham Visualization.

The general idea is that you run / interact with VisIt/Paraview on your local machine, while have the computing done on Graham. This provides the advantages of:

  • not needing to transfer many and/or large data files to your local machine
  • running VisIt/ParaView on many processors with a large amount of available memory.

The link above provides a fairly thorough guide to getting up-and-running, just remember to replace cedar with graham where appropriate.

Keep in mind that the requested processors go through a slurm allocation (salloc), and so the more processors that you request, the longer that you will have to wait before receiving the allocation.

VisIt

Note: as of Jan 2018:

  • you must use VisIt 2.13
  • it is unclear how to take advantage of GPU accelerations

More information can be gathered at VisIt.

Paraview

Note: as of Jan 2018:

  • you must use ParaView 5.3.0 when using CPU-based computation on Graham
  • you must use ParaView 5.4.0 when using GPU-based computation on Graham

See the Compute Canada Visualization page for further updates and details.

More information can be gathered at ParaView.

Mapped netcdf SPINS file

Netcdf files need their data be represented on a rectilinear grid. Mapped (curvilinear) coordinates are accomplished by writing additional fields to which a visualization software can later designate as the correct grid. In the case of mapped SPINS files converted into a netcdf file (through spins2netcdf) this additional field is called zc (for the z-coordinate or curvilinear z). Below are the steps required to plot a field with the correct mapping.

ParaView

  • Read in netcdf file and select the Output Type: Structured
  • Unselect the checkbox for Spherical Coordinates (this seems to only sometimes be necessary)
  • Click Apply
  • In the Pipeline, select the file just opened and apply the calculator filter to it (either select the calculator icon, or under Tools->Common in menu bar)
  • In the Calculator Properties page:
    • Select Coordinate Result checkbox
    • Change Result Array Name to something useful (such as "grid". This is unnecessary, but helpful if multiple operations are done)
    • In the text box directly below this, input either
      • for 2D: iHat*coordsX+jHat*zc
      • for 3D: iHat*coordsX+jHat*coordsY+kHat*zc
    • Click Apply

VisIt

  • Read in netcdf file and add a plot
  • Add the displace operator to the plot (Operators->Transforms->Displace)
  • Click the arrow to the left of the plot in the Plot List to show the subitems
  • Double click the Displace subitem
    • Select Create new expression in the Displacement variable drop down menu
      • Give expression the name "grid" and Type "Vector Mesh Variable"
      • Input the definition as
        • for 2D: "{0*zc,zc - coord(meshN1xN2)[1]}" where meshN1xN2 must be replace with the mesh variable found under Insert Variable->Meshes
        • for 3D: "{0*zc,0*zc,zc - coord(meshN1xN2xN3)[2]}" where meshN1xN2xN3 must be replace with the mesh variable found under Insert Variable->Meshes
      • Click Apply in the Expressions window
    • Select grid in the Displacement variable drop down menu (under Vectors)
    • Click Apply in the Displace operator attributes window
  • Click Draw in the main menu