...
Codeblock | ||||||
---|---|---|---|---|---|---|
| ||||||
#!/bin/bash #SBATCH -t -partition cpu-genoa:test #SBATCH --time 01:00:10:00 #SBATCH --nodes=2 #SBATCH --ntasks-per-node=192 #SBATCH --job-name=StarCCM module load starccm ## 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+ -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 |
Codeblock | ||||||
---|---|---|---|---|---|---|
| ||||||
#!/bin/bash #SBATCH --partition cpu-genoa:all:test #SBATCH --time 01:00:00 #SBATCH --nodes=2 #SBATCH --ntasks-per-node=192 #SBATCH --job-name=StarCCM module load starccm ## 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+ -np ${SLURM_NTASKS} -batch ${MYCASE} \ -power -podkey ${PODKEY} -licpath ${CDLMD_LICENSE_FILE} \ -machinefile starhosts.${SLURM_JOB_ID} echo '#################### StarCCM+ #SBATCH --mail-type=ALLfinished ############' rm starhosts.$SLURM_JOB_ID |
Codeblock | ||||||
---|---|---|---|---|---|---|
| ||||||
#!/bin/bash #SBATCH --partition cpu-genoa:test #SBATCH --time 01:00:00 #SBATCH --nodes=2 #SBATCH --ntasks-per-node=192 #SBATCH --job-name=StarCCM module load starccm ## create the host list for starccmStarCCM+ 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+ -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 | ||||||
Info | ||||||
Known Issues
To check if the license server of CD-adapco is accessible type:
telnet flex.cd-adapco.com 1999
This test (Trying ...) is positiv if the server answers (within a second):
Escape character is '^]'
Typically, after some minutes, a negative test outcome is indicated by:
telnet ... Connection timed out
Tutorial Cases
...
Tutorial case files can be found in /sw/eng/starccm/<version>/STAR-CCM+<version>/doc/startutorialsdata
resp. (with solutions) in /sw/eng/starccm/<version>/STAR-CCM+<version>/tutorials
, verification data in /sw/eng/starccm/<version>/STAR-CCM+<version>/VerificationData
.