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

Compare with Current View Page History

« Previous Version 4 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.html extlink-icon

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.

 


 

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 --cpus-per-task=1
#SBATCH --mem=4G

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

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

 

 


 

  • No labels