Initial hpc batch submission script and clean whitespace in umat.
This commit is contained in:
parent
e19f869a1e
commit
684f81980d
3 changed files with 1032 additions and 1005 deletions
|
@ -1,3 +1,4 @@
|
|||
Journal Article: https://zenodo.org/records/11184080
|
||||
Journal Article: https://doi.org/10.1016/j.jmbbm.2014.01.007
|
||||
|
||||
Supporting Data - including original software versions: https://zenodo.org/records/11184080
|
||||
|
||||
Supporting Data - including original software versions: https://doi.org/10.1016/j.jmbbm.2014.01.007
|
File diff suppressed because it is too large
Load diff
25
JMBBM13b/batch_submission/lxp_system_test.sh
Normal file
25
JMBBM13b/batch_submission/lxp_system_test.sh
Normal file
|
@ -0,0 +1,25 @@
|
|||
#!/bin/bash -l
|
||||
|
||||
#SBATCH -J AbaqusUMatCheck
|
||||
#SBATCH -A myaccount
|
||||
#SBATCH --nodes=1
|
||||
#SBATCH --time=00:05:00
|
||||
#SBATCH -p cpu
|
||||
#SBATCH --qos test
|
||||
# disable multithreading. Please check both cases to see which gives better performance
|
||||
#SBATCH --hint=nomultithread
|
||||
#SBATCH --ntasks-per-node=128
|
||||
#SBATCH --cpus-per-task=1
|
||||
#SBATCH -o %x-%j.log
|
||||
|
||||
### Load ABAQUS module
|
||||
module load abaqus/2023
|
||||
module load intel-compilers
|
||||
|
||||
### Configure environment variables, need to unset SLURM's Global Task ID for ABAQUS's PlatformMPI to work
|
||||
unset SLURM_GTIDS
|
||||
|
||||
### Set input file and job (file prefix) name here
|
||||
job_name=${SLURM_JOB_NAME}
|
||||
|
||||
abaqus job=${job_name} input=CDIE_1E.inp user=UCrys_HCP_Only double=both interactive
|
Loading…
Reference in a new issue