#!/bin/bash


#!/bin/bash

#PBS -S /bin/bash
#PBS -N job-VIV
#PBS -o output.txt
#PBS -e error.txt
#PBS -l walltime=02:00:00
#PBS -l select=1:ncpus=8:mpiprocs=8:mem=1gb
#PBS -P projetvf

# Module load
module purge
module load sgi-mpt/2.14

# Go to the directory where the job has been submitted
cd $PBS_O_WORKDIR
# Ensure the correct command is found:
export PATH=/home/lzhang/Code_Saturne/5.0.8/code_saturne-5.0.8/arch/Linux_x86_64/bin:$PATH

# Run command:
\code_saturne run --param tuto_viv.xml 
