Files
openfoam/bin/deprecated/surfaceMeshTriangulate
Mark Olesen 855faae858 STYLE: surfaceMeshTriangulate renamed to surfaceMeshExtract
- the utility had automatic triangulation removed some time ago, but
  never changed its name.

- catch old uses with a surfaceMeshTriangulate deprecated script
2018-12-21 18:37:39 +01:00

28 lines
907 B
Bash
Executable File

#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 2018 OpenCFD Ltd.
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM, licensed under GNU General Public License
# <http://www.gnu.org/licenses/>.
#
# File
# surfaceMeshTriangulate
#
# Description
# Renamed surfaceMeshTriangulate to surfaceMeshExtract (2018-12-21)
#
#------------------------------------------------------------------------------
echo
echo "FOAM FATAL"
echo "${0##*/} has been superceded by surfaceMeshExtract (DEC-2018)"
exit 1
#------------------------------------------------------------------------------