Help:Abaqus

From CECS wiki
Jump to navigation Jump to search

General description for the software goes here.

Vendor homepage
http://www.3ds.com/
Software availability
CATER, Dr. Kassab
CentOS and Redhat based machines
Other related software
command to type to run
/share/apps/abaqus/Commands/
View online documentation
http://burke.mmae.ucf.edu/ucfonly/abaqus/docs/ (on campus only)

Additional notes[edit]

There is a free student version.

Please ask for help if you need to use StarCCM+ / abaqus integration in parallel.

Sample slurm submission script[edit]

#!/bin/bash
#SBATCH -c 8

SCRATCH_DIR=/scratch/$USER-$JOB_ID
mkdir $SCRATCH_DIR
 
/share/apps/abaqus/Commands/abaqus double inp=inputfile.inp scratch=$SCRATCH_DIR job=$JOB_ID mp_mode=mpi cpus=$SLURM_CPUS_PER_TASK 

rmdir $SCRATCH_DIR

Sample sge submission script[edit]

## SGE options
#$ -cwd
#$ -l mem_free=2G
#$ -pe mpich-one 8
#$ -S /bin/bash

SCRATCH_DIR=/scratch/$USER-$JOB_ID
mkdir $SCRATCH_DIR
 
/share/apps/abaqus/Commands/abaqus double inp=inputfile.inp scratch=$SCRATCH_DIR job=$JOB_ID mp_mode=mpi cpus=$NSLOTS   

rmdir $SCRATCH_DIR