source: palm/trunk/SCRIPTS/batch_nc2vdf @ 1110

Last change on this file since 1110 was 1068, checked in by maronga, 11 years ago

last commit documented

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1#!/bin/bash
2#--------------------------------------------------------------------------------#
3# This file is part of PALM.
4#
5# PALM is free software: you can redistribute it and/or modify it under the terms
6# of the GNU General Public License as published by the Free Software Foundation,
7# either version 3 of the License, or (at your option) any later version.
8#
9# PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License along with
14# PALM. If not, see <http://www.gnu.org/licenses/>.
15#
16# Copyright 1997-2012  Leibniz University Hannover
17#--------------------------------------------------------------------------------#
18#
19# Current revisions:
20# -----------------
21#
22# Former revisions:
23# -----------------
24# $Id: batch_nc2vdf 1068 2012-11-26 10:15:04Z maronga $
25#
26# 1067 2012-11-26 10:13:14Z maronga
27# Initial revision
28#
29# Description:
30# ------------
31# Start script for nc2vdf in batch mode on UV in hannover/berlin. A config file
32# (nc2vdf.config) must be present in the executing directory.
33#--------------------------------------------------------------------------------#
34
35#PBS -N convert
36#PBS -j oe
37#PBS -l walltime=12:00:00
38#PBS -l nodes=1:ppn=1
39#PBS -l feature=uv
40#PBS -l partition=hannover
41#PBS -q smpq
42
43
44eval `/sw/swdist/bin/modulesinit`
45
46
47
48
49
50echo "Start $(date)"
51
52cd $PBS_O_WORKDIR
53
54nc2vdf nc2vdf.config
55
56
57echo "Ende $(date)"
Note: See TracBrowser for help on using the repository browser.