STAR-CCM+

General Information

Home page Versions Module dependencies Licensing
MPT
www.cd-adapco.com 10.02.012 mpt/2.11 Users must have a valid licence
10.02.012-r8 (double precision) mpt/2.11
11.04.012-r8 (double precision) mpt/2.14

STAR-CCM+ is a software package for solving problems involving flow (of fluids or solids), heat transfer and stress.

Usage on Vilje

Load one of the starccm+ modules to use STAR-CCM+ on Vilje, e.g.:

$ module load starccm+/10.02.012

Sample STAR-CCM+ Job Script

#!/bin/bash
###################################################
#
#  StarCCM+ job
#
###################################################
#
#PBS -N test
#PBS -A nn1234k
#PBS -l select=2:ncpus=32:mpiprocs=16
#PBS -l walltime=24:00:00
#
 
module load starccm+/10.02.012
module load mpt/2.11
 
#
# Setting up real time license on demand.
# Users must specify their <licensekey>
#
export LM_PROJECT=<licensekey>
export CDLMD_LICENSE_FILE=1999@flex.cd-adapco.com
 
export SGI_MPI_HOME=$MPI_ROOT
 
case=$PBS_JOBNAME
 
cd $PBS_O_WORKDIR
 
# Create (if necessary) the working directory
w=/work/$PBS_O_LOGNAME/starccm+/$case
if [ ! -d $w ]; then mkdir -p $w; fi
 
# Copy inputfile and move to working directory
cp $case.sim $w
cd $w
 
procs=`cat $PBS_NODEFILE | wc -l`
 
starccm+ -batch -power -rsh ssh -mpi sgi -pio -machinefile $PBS_NODEFILE -np $procs $case.sim

Further Information

Scroll to Top