Files
OpenFOAM-6/bin/foamCloneCase
2018-07-06 21:42:54 +01:00

160 lines
4.5 KiB
Bash
Executable File

#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration | Website: https://openfoam.org
# \\ / A nd | Copyright (C) 2015-2018 OpenFOAM Foundation
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM 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.
#
# OpenFOAM 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 OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
#
# Script
# foamCloneCase
#
# Description
# Create a new case directory that includes time, system and constant
# directories from a source case.
# The time directory is the first time directory by default
# - requires foamListTimes v2.3.x and newer
#
#------------------------------------------------------------------------------
usage() {
cat<<USAGE
Usage: ${0##*/} [OPTION] <source case> <target name>
options:
-help print the usage
-latestTime clone the latest time directory
-no-orig do not copy 0.orig directory
-no-scripts do not copy shell scripts
-template search for source case directory in template directory paths
Create a new <targetCase> case directory that includes time, system and constant
directories, and shell scripts, of <sourceCase> directory.
The time directory is the first time directory by default. If no time directory
exists, or it is 0, an exitsting 0.orig directory is copied by default.
Template directory paths are:
USAGE
for _tp in $TEMPLATE_DIRS ; do echo " $_tp" ; done
echo ""
}
error() {
exec 1>&2
while [ "$#" -ge 1 ]; do echo "$1"; shift; done
usage
exit 1
}
cpIfPresent() {
[ -e "$1" ] && echo "$1 to ... ${1##*/}" && cp -r "$1" "$2"
}
ver=$WM_PROJECT_VERSION
tmp_dir=templates
TEMPLATE_DIRS="
${HOME}/.OpenFOAM/appTemplates/$ver
${HOME}/.OpenFOAM/$ver/$tmp_dir
${HOME}/.OpenFOAM/$tmp_dir
${WM_PROJECT_SITE:-$WM_PROJECT_INST_DIR/site}/$ver/$tmp_dir
${WM_PROJECT_SITE:-$WM_PROJECT_INST_DIR/site}/$tmp_dir
$WM_PROJECT_DIR/etc/$tmp_dir"
templateDir() {
for t in $TEMPLATE_DIRS
do
[ -d "$t/$1" ] && echo "$t/$1" && exit 0
done
exit 1
}
time_option="head -1"
no_orig=""
no_scripts=""
template=""
# parse options
while [ "$#" -gt 0 ]
do
case "$1" in
-h | -help)
usage && exit 0
;;
-l | -latestTime)
time_option="tail -1"
shift 1
;;
-no-orig)
no_orig="true"
shift 1
;;
-no-scripts)
no_scripts="true"
shift 1
;;
-template)
template="true"
shift 1
;;
-*)
error "unknown option: '$*'"
;;
*)
break
;;
esac
done
[ $# -eq 2 ] || error "Incorrect arguments specified"
srcDir="$1"
[ -z "$template" ] || \
srcDir="$(templateDir "$1")" || \
error "'$1' not found in template directories"
foamListTimes -case "$srcDir" >/dev/null 2>&1 || \
error "'$srcDir' is not a valid case directory"
tgtDir=$2
[ -e "$tgtDir" ] && \
error "'$tgtDir' file/directory already exists, delete and re-run"
echo "Making $tgtDir case directory"
mkdir "$tgtDir"
echo "Copying directories from $srcDir to $tgtDir:"
cpIfPresent "$srcDir/system" "$tgtDir"
cpIfPresent "$srcDir/constant" "$tgtDir"
time_dir="$(foamListTimes -withZero -case "$srcDir" | $time_option)"
[ -n "${time_dir}" ] && \
cpIfPresent "$srcDir/${time_dir}" "$tgtDir"
[ "${time_dir}" = "0" -o -z "${time_dir}" ] && [ -z "$no_orig" ] && \
cpIfPresent "$srcDir/0.orig" "$tgtDir"
[ "$no_scripts" ] || \
scripts="$(find "$srcDir" -maxdepth 1 -type f -exec file {} \; | \
grep "shell script" | \
cut -d: -f1)"
[ "$scripts" ] && echo "Copying scripts from $srcDir to $tgtDir:" && \
for s in $scripts ; do cpIfPresent "$s" "$tgtDir" ; done
#------------------------------------------------------------------------------