starccm
1. How to Access the Software
module load TECHNICS module load starccm |
2. Example Batch Script
Parallel Job (MPI)
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=STARCCM ### File/Path where output will be written to, %J is the job id #SBATCH --output=STARCCM.%J ### Request the time you need for execution. The full format is D-HH:MM:SS ### You must at least specify minutes or days and hours and may add or ### leave out any other parameters #SBATCH --time=80 #### Request the memory you need for your job. You can specify this ### in either MB (1024M) or GB (4G). #SBATCH --mem-per-cpu=3900M ### load modules module load TECHNICS starccm ### Change to the work directory, if needed #cd /home/user/workdirectory ### you need to set the LM_PROJECT environment variable with the PoD-key of your institute export LM_PROJECT=<PoD-key> ### licence export LICPATH=<Lic Server> ### use OmniPath interface export I_MPI_FABRICS="shm:ofi" export I_MPI_OFI_PROVIDER=psm2 ### start non-interactive batch job starccm+ -np $SLURM_NTASKS -machinefile $R_SLURM_HOSTLISTFILE -mpi intel -rsh ssh -licpath $LICPATH -power starccmfile.sim |