openfoam/applications/utilities/preProcessing
Mark Olesen c6520033c9 ENH: rationalize dictionary access methods
- use keyType::option enum to consolidate searching options.
  These enumeration names should be more intuitive to use
  and improve code readability.

    Eg,   lookupEntry(key, keyType::REGEX);
    vs    lookupEntry(key, false, true);

  or

    Eg,   lookupEntry(key, keyType::LITERAL_RECURSIVE);
    vs    lookupEntry(key, true, false);

- new findEntry(), findDict(), findScoped() methods with consolidated
  search options for shorter naming and access names more closely
  aligned with other components. Behave simliarly to the
  methods lookupEntryPtr(), subDictPtr(), lookupScopedEntryPtr(),
  respectively. Default search parameters consistent with lookupEntry().

    Eg, const entry* e = dict.findEntry(key);
    vs  const entry* e = dict.lookupEntryPtr(key, false, true);

- added '*' and '->' dereference operators to dictionary searchers.
2018-10-15 16:16:12 +02:00
..
applyBoundaryLayer ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
boxTurb Merge remote-tracking branch 'origin/master' into develop 2018-08-29 13:51:40 +01:00
changeDictionary ENH: rationalize dictionary access methods 2018-10-15 16:16:12 +02:00
createExternalCoupledPatchGeometry ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
createZeroDirectory ENH: use dictionary::readEntry for detection of input errors (#762, #1033) 2018-10-05 10:15:13 +02:00
dsmcInitialise ENH: Utilities - add -region option when creating meshes 2018-01-16 12:10:20 +00:00
engineSwirl ENH: use vector::normalise and VectorSpace::normalised for clarity 2018-08-10 15:18:29 +02:00
faceAgglomerate STYLE: add nBoundaryFaces() method to primitiveMesh 2018-09-27 10:17:30 +02:00
foamUpgradeCyclics ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
mapFields ENH: more stringent checks for fileName concatenation 2018-10-11 10:07:11 +02:00
mapFieldsPar ENH: use dictionary::readEntry for detection of input errors (#762, #1033) 2018-10-05 10:15:13 +02:00
mdInitialise ENH: Utilities - add -region option when creating meshes 2018-01-16 12:10:20 +00:00
setAlphaField ENH: use restricted dictionary lookup for utilities (issue #762) 2018-07-24 08:08:30 +02:00
setFields STYLE: add nBoundaryFaces() method to primitiveMesh 2018-09-27 10:17:30 +02:00
viewFactorsGen STYLE: add nBoundaryFaces() method to primitiveMesh 2018-09-27 10:17:30 +02:00
wallFunctionTable ENH: use restricted dictionary lookup for utilities (issue #762) 2018-07-24 08:08:30 +02:00