Skip to content
Snippets Groups Projects
user avatar
Mark Olesen authored
- as part of the cleanup of dictionary access methods (c6520033c9c4)
  made the dictionary class single inheritance from IDLList<entry>.

  This eliminates any ambiguities for iterators and allows
  for simple use of range-for looping.

  Eg,
      for (const entry& e : topDict))
      {
          Info<< "entry:" << e.keyword() << " is dict:" << e.isDict() << nl;
      }

   vs

      forAllConstIter(dictionary, topDict, iter))
      {
          Info<< "entry:" << iter().keyword()
              << " is dict:" << iter().isDict() << nl;
      }
5527b00b
Name Last commit Last update
doc
etc
src
tutorials
.gitignore
Allwclean
Allwmake
README.md

About

A collection of visualization interfaces for OpenFOAM, primarily VTK/ParaView based.

paraview-plugins

Reader plugins for ParaView which are sometimes termed paraFoam (even although that is just a script).

The readers are partly historical and partly with features that are not yet supported by the regular OpenFOAM readers from VTK.

However, they are also lacking some features that the regular OpenFOAM readers from VTK have.

runTimePostProcessing

An insitu visualization function-object using VTK with pre-defined functionality for geometry and scenes.

catalyst

An insitu visualization function-object using ParaView/Catalyst.