previous disabling of the TimeSelection arrays [commit c52b20b..]
resulted in the mesh caching being disabled :(
Simplified code is enabled/disabled by PV3FOAM_TIMESELECTION define.
Might be removed in the future.
Added doc/Doxygen/tools/find-debugNames to help but the problem requires
more attention (Henry/Andy/Mattijs?)
Caveat:
- names defined with nested defines will be missed.
- names defined via typename will be missed.
Cleanup example:
#!/bin/sh
(
cd $WM_PROJECT_DIR
doc/Doxygen/tools/find-debugNames|tee debugs.orig|sed -e 's@ *//.*$@@'>debugs
diff -uw etc/controlDict debugs > debugs.diff
echo "hand-resolve the conflicts - see debugs.diff"
)
- removed legacy foamDiffSourceList, foamPackChanged
- added foamPackDoxygen for separate distribution of docs
handles -prefix option
- misc. cosmetic changes
We can now add the same member function with different lookups
e.g. 'stl' and 'stlb'
By using leading/trailing underscores around the lookup name,
we get a unique name and avoid possible collision with other classes.
- match comments to names of scripts
- remove comments about using C-shell (not true anymore)
- use 'assert' style syntax in places instead of if/then/fi
- wcleanMachine supports multiple arguments
renamed genBlockMesh.C -> blockMeshApp.C for the -doc option
Followed Eugene's suggestions and moved blockMeshDict out of polyMesh/.
Rationale:
blockMeshDict is not a polyMesh or part of a polyMesh, thus it doesn't
really belong in the polyMesh/ dir anyhow. Moving it to constant/ or
constant/<region>/ improves the overview and eases cleanup of polyMesh/ as
well. For compatibility, constant/polyMesh/ or constant/<region>/polyMesh/
will be searched if the new locations fail.