60d7073794
From https://github.com/Juanvvc/c172p-detailed.git Commit df6b2c5f4f75d000c5f5ef9c6cc4446784348f20
17 lines
365 B
Bash
Executable file
17 lines
365 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright (C) 2012 - 2015 Anders Gidenstam (anders(at)gidenstam.org)
|
|
# This file is licensed under the GPL license version 2 or later.
|
|
#
|
|
# Usage: run_experiment.sh <base dir> <name base>
|
|
|
|
# Setup paths for gerris.
|
|
. /opt/Gerris/setpaths.sh
|
|
|
|
BASEDIR=$1
|
|
BASE=$2
|
|
|
|
cd ${BASEDIR}
|
|
|
|
for dir in $BASE*; do
|
|
(cd ${dir}; rm f; gerris3D buoyancy3D.gfs)
|
|
done;
|