Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (2)
STYLE: docs
· e8830a5c
Mark OLESEN
authored
May 18, 2018
e8830a5c
COMP: adjust for change of HashSet::eraseMany() to HashSet::erase()
· eaa7f683
Mark OLESEN
authored
May 30, 2018
eaa7f683
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
eaa7f683
...
...
@@ -5,13 +5,12 @@ Library and function object for embedding ParaView Catalyst into OpenFOAM.
## Requirements
1.
OpenFOAM.com development version (11-May-2018 or newer) or OpenFOAM-v1806.
2.
ParaView or ParaView Catalyst 5.5 or newer, compiled with
mpi and
python
support.
2.
ParaView or ParaView Catalyst 5.5 or newer, compiled with
python support
(optionally with MPI
support
)
.
It is highly recommended to patch the ParaView 5.5 sources (eg,
using the OpenFOAM ThirdParty makeParaView script) to ensure that
they properly handle outputting results in directories other than
the main simulation directory:
It is highly recommended to patch the ParaView 5.5 sources (eg, using the
OpenFOAM ThirdParty makeParaView script) to ensure that they properly handle
outputting results in directories other than the main simulation directory:
*
[MR2433]
*
[MR2436]
...
...
@@ -31,4 +30,3 @@ Licensed under GNU General Public License <http://www.gnu.org/licenses/>.
[
MR2433
]:
https://gitlab.kitware.com/paraview/paraview/merge_requests/2433
[
MR2436
]:
https://gitlab.kitware.com/paraview/paraview/merge_requests/2436
src/catalyst/catalystTools.C
View file @
eaa7f683
...
...
@@ -151,7 +151,7 @@ Foam::label Foam::catalyst::dataQuery::query(vtkCPProcessor* coproc)
}
HashSet
<
fileName
>
oldChannels
(
currChannels
);
oldChannels
.
erase
Many
(
inputNames
);
oldChannels
.
erase
(
inputNames
);
if
(
oldChannels
.
size
())
{
...
...
tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/catalyst
View file @
eaa7f683
...
...
@@ -4,7 +4,7 @@ functions
{
catalyst
{
#includeEtc "
<etc>/
caseDicts/insitu/catalyst/catalyst.cfg"
#includeEtc "caseDicts/insitu/catalyst/catalyst.cfg"
scripts
(
...
...