#!/bin/bash #--------------------------------------------------------------------------------# # This file is part of PALM. # # PALM is free software: you can redistribute it and/or modify it under the terms # of the GNU General Public License as published by the Free Software Foundation, # either version 3 of the License, or (at your option) any later version. # # PALM is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # PALM. If not, see . # # Copyright 1997-2012 Leibniz University Hannover #--------------------------------------------------------------------------------# # # Current revisions: # ----------------- # # Former revisions: # ----------------- # $Id: batch_nc2vdf 1068 2012-11-26 10:15:04Z maronga $ # # 1067 2012-11-26 10:13:14Z maronga # Initial revision # # Description: # ------------ # Start script for nc2vdf in batch mode on UV in hannover/berlin. A config file # (nc2vdf.config) must be present in the executing directory. #--------------------------------------------------------------------------------# #PBS -N convert #PBS -j oe #PBS -l walltime=12:00:00 #PBS -l nodes=1:ppn=1 #PBS -l feature=uv #PBS -l partition=hannover #PBS -q smpq eval `/sw/swdist/bin/modulesinit` echo "Start $(date)" cd $PBS_O_WORKDIR nc2vdf nc2vdf.config echo "Ende $(date)"