STARCCM+ SGE 작업 제출 스크립트 예제
#!/bin/sh
#$ -cwd
#$ -V
#$ -N starccm
#$ -S /bin/sh
#$ -j y
#$ -o job_log.out
#$ -pe mpich_ef 32
#$ -q all.q
#$ -v STARCCM_CMD=”/APP/starccm/STAR-CCM+7.04.011-r8/star/bin/starccm+”
< ?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
# TCP 환경
$STARCCM_CMD -np $NSLOTS -machinefile $TMPDIR/machines -batch <java_mcrofile> <input_file>
# IB 환경
$STARCCM_CMD -np $NSLOTS -machinefile $TMPDIR/machines -mpidriver infiniband:-ibv -batch <java_mcrofile> <input_file>