#!/bin/bash
#PBS -q infinijazz
#===	requested shell"
#PBS -S /bin/bash
#===	mail to user at abortion of job
#PBS -M stephan.henne@empa.ch 
#PBS -m a
#===	combine std out and std err
#PBS -j oe
#===	name of script
#PBS -N FLEXPART_CTP 
#===	export all environment variables to nodes?
#PBS -V
#===	requested maximum time
#PBS -l walltime=72:00:00
#PBS -l mem=6gb
#PBS -l nodes=1:ppn=8
#===


export OMP_NUM_THREADS=8
export OMP_STACKSIZE=100M

EXE_DIR="/home/hes134/FLEXPART80CTP"

cd $EXE_DIR

EXE="$EXE_DIR/FLEXPART80CTP_beta /mnt/storage/hes134/LORAT3/input/passive/ /mnt/storage/hes134/LORAT3/output/passive/20000201/ /mnt/storage/hes134/ecmwf_data/en/ /mnt/storage/hes134/ecmwf_data/en/AVAILABLE"

echo $EXE 

$EXE
