Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
OpenFOAM-plus
Commits
e5ce82ae
Commit
e5ce82ae
authored
Jan 17, 2019
by
Mark Olesen
Browse files
CONFIG: drop config support for deprecated ensight reader library
parent
0b32ddf3
Changes
5
Hide whitespace changes
Inline
Side-by-side
etc/README.md
View file @
e5ce82ae
...
...
@@ -14,7 +14,6 @@ These source the following files in the `config.sh/` or
*
`aliases`
: aliases for interactive shells
*
`unset`
: sourced to clear as many OpenFOAM environment settings as possible
*
`mpi`
: MPI communications library settings
*
`ensight`
: application settings for EnSight
*
`paraview`
: application settings for ParaView
*
`scotch`
: application settings for compiling against scotch
*
`metis`
: application settings for compiling against metis
...
...
etc/config.csh/ensight
deleted
100644 → 0
View file @
0b32ddf3
#----------------------------------*-sh-*--------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
# \\/ M anipulation |
#-------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM, licensed under GNU General Public License
# <http://www.gnu.org/licenses/>.
#
# File
# etc/config.csh/ensight
# - sourced by OpenFOAM-*/etc/cshrc
#
# Description
# Setup for ENSIGHT
#
#------------------------------------------------------------------------------
# Fallback value
if
(!
$?
CEI_HOME
)
then
setenv CEI_HOME /usr/local/ensight/CEI
endif
if
(
-r
$CEI_HOME
)
then
# Special treatment for 32bit OpenFOAM and 64bit Ensight
if
(
$WM_ARCH
-
`
uname
-m
`
==
linux-x86_64
)
setenv CEI_ARCH linux_2.6_32
# Add to path
setenv PATH
${
CEI_HOME
}
/bin:
${
PATH
}
setenv ENSIGHT9_INPUT dummy
setenv ENSIGHT9_READER
$FOAM_LIBBIN
else
unsetenv CEI_HOME
endif
#------------------------------------------------------------------------------
etc/config.csh/setup
View file @
e5ce82ae
...
...
@@ -139,7 +139,6 @@ _foamEtc -config settings
_foamEtc
-config
mpi
_foamEtc
-config
paraview
--
"
$FOAM_SETTINGS
"
# Pass through for evaluation
_foamEtc
-config
vtk
_foamEtc
-config
ensight
## _foamEtc -config ADIOS
## _foamEtc -config ADIOS2
_foamEtc
-config
CGAL
...
...
etc/config.sh/ensight
deleted
100644 → 0
View file @
0b32ddf3
#----------------------------------*-sh-*--------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM, licensed under GNU General Public License
# <http://www.gnu.org/licenses/>.
#
# File
# etc/config.sh/ensight
# - sourced by OpenFOAM-*/etc/bashrc
#
# Description
# Setup for ENSIGHT
#
#------------------------------------------------------------------------------
# Fallback value
[
-d
"
$CEI_HOME
"
]
||
export
CEI_HOME
=
/usr/local/ensight/CEI
if
[
-r
$CEI_HOME
]
then
# Special treatment for 32bit OpenFOAM and 64bit Ensight
[
"
$WM_ARCH
-
$(
uname
-m
)
"
=
linux-x86_64
]
&&
export
CEI_ARCH
=
linux_2.6_32
# Add to path if required
if
[
"
$CEI_HOME
/bin/ensight"
!=
"
$(
command
-v
ensight
)
"
]
then
export
PATH
=
$CEI_HOME
/bin:
$PATH
fi
export
ENSIGHT9_INPUT
=
dummy
export
ENSIGHT9_READER
=
$FOAM_LIBBIN
else
unset
CEI_HOME
fi
#------------------------------------------------------------------------------
etc/config.sh/setup
View file @
e5ce82ae
...
...
@@ -119,7 +119,6 @@ _foamEtc -config settings
_foamEtc
-config
mpi
_foamEtc
-config
paraview
--
"
$@
"
# Pass through for evaluation
_foamEtc
-config
vtk
_foamEtc
-config
ensight
_foamEtc
-config
gperftools
## _foamEtc -config ADIOS
## _foamEtc -config ADIOS2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment