functionObjects, foamCalcFunctions, fvOptions: Standardized keywords for selecting fields and objects

Generally fields and objects are selected using the 'field[s]' and
'object[s]' keywords but this was not consistent between all
functionObject, fvOptions etc. and now fixed by applying the following
renaming:

fieldName -> field
fieldNames -> fields
objectName -> object
objectNames -> objects
This commit is contained in:
Henry Weller
2016-05-21 20:15:21 +01:00
parent c5e05bb79a
commit 2037fc02cf
15 changed files with 19 additions and 28 deletions

View File

@ -68,7 +68,7 @@ Foam::functionObjects::writeVTK::~writeVTK()
bool Foam::functionObjects::writeVTK::read(const dictionary& dict)
{
dict.lookup("objectNames") >> objectNames_;
dict.lookup("objects") >> objectNames_;
return true;
}