Ansys Learning Forum › Forums › Discuss Simulation › Fluids › Reg: Submission script to submit job on HPC › Reply To: Reg: Submission script to submit job on HPC
May 7, 2024 at 1:55 pm
Swapnil
Subscriber
Yes, I have added all the required participants (Fluent Transient structural) and I have added interface and data transfers as well. I think the issue is with the partitioning algorithm.
I need to run the simulation on HPC (distributed memory type) cluster with 20 cores for fluent and 4 cores for transient structural. I have checked the manual but I am not clear about which partition algorithm should I use and how to specify the additional arguments and parallel fraction.Â
I am using the following submission script:
#!/bin/bash
#PBS -o logfile.log
#PBS -e errorfile.err
#PBS -l walltime=40:00:00
#PBS -l select=1:ncpus=24
tpdir=
echo $PBS_JOBID | cut -f 1 -d .
tempdir=$HOME/scratch/job$tpdir
mkdir -p $tempdir
cd $tempdir
cp -R $PBS_O_WORKDIR/* .
module load ansys2023r2
/lfs/sware/ansys2023r2/ansys_inc/v232/SystemCoupling/bin/systemcoupling -R Scycpl.py
mv ../job$tpdir $PBS_O_WORKDIR/.
Â
could you please suggest the required changes?