Difference between revisions of "ParaView"

From UFRC
Jump to navigation Jump to search
Line 7: Line 7:
 
|{{#vardefine:intel|}} <!-- "11.1" - Compiler Module Choice -->
 
|{{#vardefine:intel|}} <!-- "11.1" - Compiler Module Choice -->
 
|{{#vardefine:mpi|}} <!-- "openmpi/1.3.4"- MPI Module Choice -->
 
|{{#vardefine:mpi|}} <!-- "openmpi/1.3.4"- MPI Module Choice -->
|{{#vardefine:exe|}} <!--RUNNING -->
+
|{{#vardefine:exe|1}} <!--RUNNING -->
 
|{{#vardefine:conf|}} <!--CONFIGS-->
 
|{{#vardefine:conf|}} <!--CONFIGS-->
 
|{{#vardefine:pbs|}} <!--PBS SCRIPTS-->
 
|{{#vardefine:pbs|}} <!--PBS SCRIPTS-->
Line 24: Line 24:
  
 
<!--Modules-->
 
<!--Modules-->
==Required Modules==
+
==Environment Modules==
[[Modules|modules documentation]]
+
Run <code>module spider {{#var:app}}</code> to find out what environment modules are available for this application.
===Serial===
+
See [[Modules|modules documentation]] for details.
* gcc/4.7.2
 
* paraview
 
 
 
===Parallel===
 
* gcc/4.7.2
 
* openmpi
 
* paraview
 
  
 
<!--Add additional HPC_FOO_BIN and other ENV VARIABLES below-->
 
<!--Add additional HPC_FOO_BIN and other ENV VARIABLES below-->
Line 43: Line 36:
  
 
{{#if: {{#var: exe}}|==How To Run==
 
{{#if: {{#var: exe}}|==How To Run==
DOUBLE_CLICK_TO_WRITE_INSTRUCTIONS_ON_RUNNING_THE_ACTUAL_BINARY
+
 
 +
When running paraview analyses on HiPerGator it may be necessary to set up a virtual X11 environment with Xvfb. Use the following code between the module load and the paraview code execution
 +
export DISPLAY=:$RANDOM
 +
Xvfb :1 -screen 0 1024x768x16 &
 +
 
 
|}}
 
|}}
 
<!--Configuration-->
 
<!--Configuration-->

Revision as of 15:18, 24 July 2018

Description

ParaView website  

ParaView is an open-source, multi-platform data analysis and visualization application. ParaView users can quickly build visualizations to analyze their data using qualitative and quantitative techniques. The data exploration can be done interactively in 3D or programmatically using ParaView’s batch processing capabilities.

Environment Modules

Run module spider ParaView to find out what environment modules are available for this application. See modules documentation for details.

System Variables

  • HPC_{{#uppercase:ParaView}}_DIR - installation directory
  • HPC_{{#uppercase:ParaView}}_BIN - executable program directory
  • HPC_{{#uppercase:ParaView}}_LIB - library directory

How To Run

When running paraview analyses on HiPerGator it may be necessary to set up a virtual X11 environment with Xvfb. Use the following code between the module load and the paraview code execution

export DISPLAY=:$RANDOM
Xvfb :1 -screen 0 1024x768x16 &