~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to demo/ode/homotopy/economy/run-tests.sh

  • Committer: Johannes Ring
  • Date: 2008-03-05 22:43:06 UTC
  • Revision ID: johannr@simula.no-20080305224306-2npsdyhfdpl2esji
The BIG commit!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
alpha='5'
 
4
betalist='1 2 3 4'
 
5
mlist='1 2 3'
 
6
 
 
7
for beta in $betalist; do
 
8
 
 
9
    echo "beta = $beta"
 
10
 
 
11
    for m in $mlist; do
 
12
        
 
13
        echo "  m = $m"
 
14
        prefix="ces-$m-$m-$alpha-$beta"
 
15
        ./dolfin-ode-homotopy-ces $m $m $alpha $beta > $prefix.log
 
16
        mv solution.data $prefix.data
 
17
 
 
18
    done
 
19
 
 
20
done