Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120429019
script-1.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jul 4, 07:51
Size
808 B
Mime Type
text/x-shellscript
Expires
Sun, Jul 6, 07:51 (2 d)
Engine
blob
Format
Raw Data
Handle
27187524
Attached To
rSCEXAMPLES SCITAS examples on how to run on the clusters
script-1.sh
View Options
#!/bin/bash -l
#SBATCH --job-name ansys-tutor
#SBATCH --nodes 1
#SBATCH --ntasks 28
#SBATCH --cpus-per-task 1
#SBATCH --mem 16G
#SBATCH --time 01:00:00
module purge
module load ansys
# unset SLURM_GTIDS
unset I_MPI_PMI_LIBRARY
echo "================================================================"
echo "Started at `date`"
echo "================================================================"
echo ""
ansys202 -b -dis -np ${SLURM_NTASKS} -i tutor2_carrier_modal.inp -o results.out
# alternative
# mapdl -b -dis -np ${SLURM_NTASKS} -i tutor2_carrier_modal.inp -o results.out
STATUS=$?
echo "================================================================"
echo "Finished at `date`"
echo "================================================================"
echo ""
echo "STATUS = ${STATUS}"
echo ""
Event Timeline
Log In to Comment