module avail
.
The current version is 2024.HF4. To set the Abaqus environment, load the default module
module load abaqus
Do not use Abaqus on a login node.
Abaqus should be run from the /share directory. The standard output, standard error, and by default all generated data from the job will be placed in the directory where the bsub command was issued. Running Abaqus from the /home directory can quickly fill a users' quota.
Here is an example batch script. For more information on submitting batch scripts, see the documentation on running jobs.
To run Abaqus in batch mode using an Abaqus input file called Deform.inp, create a text file called submit.sh containing:
#!/bin/bash #BSUB -W 20 #BSUB -n 2 #BSUB -R span[hosts=1] #BSUB -o out.%J #BSUB -e err.%J module load abaqus abq2024hf4 job=Deform cpus=2 interactive
The job can be submitted as
bsub < submit.sh
The argument interactive must be used or LSF will exit and the job will continue to run. LSF will not know the job is still running.
The script submit.sh requests 2 cores for 20 minutes. The span argument requires the 2 cores to be on the same node. Check the documentation on running jobs to customize the batch script.
cd /share/$GROUP/$USER
module load abaqus abaqus cae -mesa
cd /share/$GROUP/$USER
module load abaqus abaqus cae -mesa
Last modified: September 24 2024 11:32:31.