Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

You can check your group membership by calling groups.
In order to run STAR-CCM+ you have to specify the parameters -licpath and -podkey, as shown in the example script below.

Introduction and courses

As product overview look here. This documentation describes only the specifics of installation and usage of STAR-CCM+ at HLRN. Introductory courses for STAR-CCM+ as well as courses for special topics are offered by CD-adapco and their regional offices, e.g. in Germany. Siemens PLM. It is strongly recommended to take at least an introductory course (please contact Siemens PLM Software). As student you can join the Siemens Xcelerator Academy for Academics - for free.

Documentation and materials

...

Codeblock
languagebash
titleThis is an example for a parallel job
#!/bin/bash
#SBATCH -t 00:10:00
#SBATCH --nodes=2
#SBATCH --partition cpu-genoa:all
#SBATCH --ntasks-per-node=192
#SBATCH --job-name=StarCCM
#SBATCH --mail-type=ALL

module load starccm/14.04.011-r8

## create the host list for starccm+
srun hostname -s | sort | uniq -c | awk '{ print $2":"$1 }' > starhosts.${SLURM_JOB_ID}

export CDLMD_LICENSE_FILE=1999@flex.cd-adapco.com
export PODKEY=<type your podkey here - we can provide one for you - under the above mentioned terms>
export MYCASE=<type your sim file name>

## run starccm+
starccm+ -dp -np ${SLURM_NTASKS} -batch ${MYCASE} \
 -power -podkey ${PODKEY} -licpath ${CDLMD_LICENSE_FILE} \
 -machinefile starhosts.${SLURM_JOB_ID} 

echo '#################### StarCCM+ finished ############'
rm starhosts.$SLURM_JOB_ID

...