Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Helium currently offers TecPlot 360  for use on the clusteris currently available. One may use the Matlab TecPlot environment by loading the appropriate module: 

[user@helumuser@hpc:~]$ module load tecplot_2013R1 

...

SGE TecPlot script: tecplot.sh

 
#!/bin/bash
# -------------------------------------
#$ -N TecPlot-test        # Job Name
#$ -j y                   # combine stderr & stdout into stdout
#$ -o $JOB_NAME.o$JOB_ID  # Name of the output file (eg. myMPI.oJobID)TecPlot360-Scripting-Guide.pdf
#$ -q UI                  # Queue
#$ -cwd                   # Start job in submission directory
# -------------------------------------
# Note the -b -mesa (b = batch, -mesa to turn of GL rendering)
tec360 -b -mesa cylinder.mcr

 

...