You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Information

Purpose:  Fluid Dynamics & Engineering
Latest version: 12.06.011
License: Proprietary License here
Website: https://www.plm.automation.siemens.com/global/en/products/simcenter/STAR-CCM.htmlext-link

STAR-CCM+ is a multiphysics simulation package.

Built around a core for simultaneous resolution of computational fluid dynamics and heat transfer, STAR-CCM+ includes multiphase simulation, polyhedral meshing of solids and fluids, a fuel cells package, phase changes, chemical reactions, electromagnetics, etc.


License

To run this program, the user must provide their own license.




SLURM Submit script example

For more information use the Job Script Generator.

starccm_example.slm
#!/bin/bash
#SBATCH -J starccm_example
#SBATCH -e starccm_example.err
#SBATCH -o starccm_example.out
#SBATCH -p std
#SBATCH --nodes=1
#SBATCH --ntasks=1
#SBATCH --mem=4G

module load apps/starccm/12.06.011
 
INPUT_DIR=${SLURM_SUBMIT_DIR}
OUTPUT_DIR=${SLURM_SUBMIT_DIR}

cd $SCRATCH
cp -r $INPUT_DIR/* $SCRATCH
starccm starccm_example.inp starccm_example.out
cp ./* $OUTPUT_DIR


Sbatch options:

  • -JSpecify a name for the job allocation. The default is the name of the batch script.
  • -e: Specify a name for the error output file.
  • -o: Specify a name for the output file.
  • -p: Specify the name of the partition (queue) where the job will be submited. The default is std.
  • --nodes: Number of nodes requested for allocation
  • --ntasks: Number of processes requested for allocation
  • --mem-per-cpu: Memory allocated per core.




  • No labels