LS-Dyna
LS-Dyna is a general-purpose finite element program capable of simulating complex real world problems. It is used by the automobile, aerospace, construction, military, manufacturing, and bioengineering industries.
In order to use this application you will first need to script a submit job. Below is a sample script for the OpenMPI version. Edit it to your specific needs.
#!/bin/bash
#$ -S /bin/bash
#$ -N name_of_your_job
#$ -o /work/abc123/output.log
#$ -cwd
#$ -pe openmpi 8
. /etc/profile.d/modules.sh
module load openmpi/gcc/64/1.10.1
module load lsdyna
mpirun -np 8 ls-dyna_mpp some_input_file
Below is a sample script for the single threaded version. Edit it to your specific needs.
#!/bin/bash
#$ -S /bin/bash
#$ -N name_of_your_job
#$ -o /work/abc123/output.log
#$ -cwd
. /etc/profile.d/modules.sh
module load lsdyna
ls-dyna_single some_input_file
Now submit your job file using qsub
[abc123@login-0-0 ~]$ qsub job_submit_file.sh
Your job 378 (job_submit_file.sh") has been submitted
--
AdminUser - 26 Aug 2016