Abaqus

General Information

Home PageVersionLicensing
www.3ds.com6.11-2
6.14-1
Abaqus is available to students and staff employees at the Faculty of Engineering Science and Technology, NTNU. Contact support-ntnu@notur.no to be added to the abaqus unix group.

The Abaqus product suite offers solutions for a number of engineering problems including dynamic vibration, multibody systems, nonlinear static, thermal coupling, and acoustic-structural coupling using a common model data structure and integrated solver technology.

Usage on Vilje

Load one of the abaqus modules to use Abaqus on Vilje, e.g.:

$ module load abaqus/6.14-1

Sample Abaqus Job Script

#!/bin/bash
###################################################
#
#  Running Abaqus/Explicit double precision job
#
###################################################
#
#PBS -N test
#PBS -A nn1234k
#PBS -l select=2:ncpus=32:mpiprocs=16
#PBS -l walltime=24:00:00
##PBS -l Abaqus=32
#
 
module load abaqus/6.14-1
 
case=$PBS_JOBNAME
 
cd $PBS_O_WORKDIR
 
# Create (if necessary) the working directory
w=/work/$PBS_O_LOGNAME/abaqus/$case
if [ ! -d $w ]; then mkdir -p $w; fi
 
# Copy inputfile and move to working directory
cp $case.inp $w
cd $w

procs=`cat $PBS_NODEFILE | wc -l`

abaqus job=$case cpus=$procs mp_mode=mpi double=both interactive scratch=$w

Further Information

Scroll to Top