surfaceFeatureExtract: Redirect script to surfaceFeatures

to avoid further confusion from users migrating from very old OpenFOAM versions.

The surfaceFeatureExtract utility has been superseded and replaced by by the
more general surfaceFeatures utility.

surfaceFeatures reads a surfaceFeaturesDict input file with a much
simpler, more convenient format.  Example surfaceFeaturesDict files
can be found in the tutorial and template cases, e.g. located as
follows:
find \$FOAM_TUTORIALS -name surfaceFeaturesDict
find \$FOAM_ETC -name surfaceFeaturesDict
This commit is contained in:
Henry Weller
2021-07-05 09:04:53 +01:00
parent 78977d3259
commit 0389d98f10

48
bin/surfaceFeatureExtract Executable file
View File

@ -0,0 +1,48 @@
#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration | Website: https://openfoam.org
# \\ / A nd | Copyright (C) 2021 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
# surfaceFeatureExtract
#
# Description
# Script to inform the user that surfaceFeatureExtract has been superseded
# and replaced by the more general surfaceFeatures utility.
#
#------------------------------------------------------------------------------
cat <<EOF
The surfaceFeatureExtract utility has been superseded and replaced by by the
more general surfaceFeatures utility.
surfaceFeatures reads a surfaceFeaturesDict input file with a much
simpler, more convenient format. Example surfaceFeaturesDict files
can be found in the tutorial and template cases, e.g. located as
follows:
find \$FOAM_TUTORIALS -name surfaceFeaturesDict
find \$FOAM_ETC -name surfaceFeaturesDict
EOF
#------------------------------------------------------------------------------