To log onto hpc.utep.edu from your Linux home: > ssh -l gsewell hpc.utep.edu Use "passwd" to change password Add /shared/cps5320/bin and /shared/mpi/bin to your PATH in .bash_profile: PATH=$PATH:/shared/cps5320/bin:/shared/mpi/bin -----------------> To create PDE2D program example using interactive driver: > pde2d example -----------------> To run PDE2D program example.f interactively: > runpde2d example -----------------> (Alternatively) To run PDE2D program example.f in batch: First compile PDE2D program example.f and create executable example.exe: > c.pde2d example To run PDE2D program example.exe in batch mode: > bsub < bsub_job where batch file bsub_job may look like this: ------ #BSUB -n 2 #BSUB -W 30:00 #BSUB -q medium_priority #BSUB -o /home/gsewell/output.txt #BSUB -e /home/gsewell/output.txt cd /home/gsewell r.pde2d example 1 ------ (Note: The second argument to r.pde2d is the number of processors, it defaults to 1.) To monitor your batch jobs: > bjobs -----------------> Postprocessing (after running PDE2D interactively or batch): Output will be in file output.txt, PostScript graphical output will be in example.ps. To convert PostScript file to PDF: > ps2pdf example.ps example.pdf To move PostScript graphical output file example.ps back to Linux home: > scp example.ps sewell@elpaso.math.utep.edu:example.ps To view PostScript file example.ps at Linux home (??): > okular example.ps