Versions Compared

Key

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

...

No Format
module load misc/cst/2017

Build your simulation on one of the Windows workstations available to you.
 Copy your .cst file to your home directory on the Forge.
Write you job submission file. An example is given at the end of this page


Installation

No Format
CST Main Controller 2017(On gowonda2):
=======================================

mount the iso
./install.sh --record /tmp/cstInstallRecord.txt

/sw/cst/cst_studio_suite_2017/update_with_supfile /sw/cst/src/CST_STUDIO_SUITE_2017_Linux_130120172100230620172100_SP4.sup


CST Solver Server 2017 (on GPU node n023):
==========================================
./install.sh --record /tmp/cstInstallSolverRecord.txt
/sw/cst/cst_studio_suite_2017/update_with_supfile /sw/cst/src/CST_STUDIO_SUITE_2017_Linux_130120172100230620172100_SP4.sup

License server:  gc-prod-ctslic.itc.griffith.edu.au port 27000



 

Sample PBS script

  1. Build your simulation on one of the Windows workstations available to you.
  2.  Copy your .cst file to your home directory on the Forge.
  3. Write you job submission file. An example is here:
No Format
#!/bin/bash
#PBS -N CSTTest
#PBS -m abe
#PBS -M YourEmail@griffith.edu.au
#PBS -l select=1:ncpus=1:mem=12gb,walltime=10:00:00:host=n020
module load  misc/cst/2017
cd  $PBS_O_WORKDIR
cst_design_environment ~/pbs/cst/brick.cst --r --withgpu=2

...