We’re putting the final touches on our new badges platform. Badge issuance remains temporarily paused, but all completions are being recorded and will be fulfilled once the platform is live. Thank you for your patience.

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

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?