#!/bin/bash
#-------------------------------------------------------------------------------
#
# Batch options for PBS or Torque (example: Clamart2 cluster)
# ===============================
#
#PBS -l nodes=1:ppn=1
#PBS -l walltime=0:10:00
#
#PBS -j eo
#PBS -N oraclesreactif
#
# -l nodes=    : number of nodes
# -l ppn=      : number of process per node
# -l walltime= : wall clock time (hh:mm:ss)
# -q queue     : queue name
# -N name      : job name
# -j eo        : to combine standard output and error
#
#-------------------------------------------------------------------------------

# Change to submission directory
if test -n "$PBS_O_WORKDIR" ; then cd $PBS_O_WORKDIR ; fi

# Ensure the correct command is found:
export PATH="/home/robin/work/serra/CS_2.1.4/bin":$PATH

# Run command:
\code_saturne run

