# 1. Modify the value of INPUT_FILE to be the name of your # Abaqus input file # 2. Modify the value of JOBNAME to be the name of your # Abaqus job file = output files # # If you want an email message to be sent to you when your job ultimately # finishes, edit the -M line to have your email address and change the # next two lines to start with #$ instead of just # # -m eas # -M my_address@mail.server.com # # Name of the input file: INPUT_FILE=sample.inp # Name of the job and output file: JOBNAME=sample-tst # Setup the environment; choose the Abaqus version that's right # for you and change port@lm.udel.edu for your Abaqus license server: vpkg_require abaqus export LM_LICENSE_FILE=port@lm.udel.edu # Setup your Abaqus runtime environment based on serial, openmp or mpi; abaqus_mp_setup verbose # Run the program: if [ -n "$INPUT_FILE" ]; then if [ -n "$JOBNAME" ]; then abaqus job=$JOBNAME input=$INPUT_FILE interactive else echo "ERROR: You must set the JOBNAME variable in your queue script." exit 1 fi else echo "ERROR: You must set the INPUT_FILE variable in your queue script." exit 1 fi