source: trunk/LMDZ.GENERIC/utilities/prekspectrum @ 253

Last change on this file since 253 was 253, checked in by emillour, 14 years ago

Generic GCM

  • Massive update to version 0.7

EM+RW

  • Property svn:executable set to *
File size: 620 bytes
Line 
1#!/bin/bash
2
3DWORK_DIR=/san/home/rdword/corrk_data/therm_test2
4KSPEC_DIR=/san/home/rdword/kspectrum/kspec_1
5
6cd $DWORK_DIR
7
8# test for presence of k* in kspec results directory
9FILECHECK=$KSPEC_DIR/results/k001
10if [ -f $FILECHECK ]; then
11    echo -en "There is already k-data in the kspec directory "
12    echo -en $KSPEC_DIR
13    echo -en ", delete or move it before starting!\n"
14    exit 1
15fi
16
17#make_composition_gen.exe
18cp composition.in $KSPEC_DIR/data/
19
20echo -en "kspectrum working directory is:\n"
21echo -en $KSPEC_DIR
22echo -en "\nNow you must submit the parallel job (>> llsubmit run_kspec)\n"
23
24cd $KSPEC_DIR
25
26exit 0
Note: See TracBrowser for help on using the repository browser.