ENH: functionObjects improvements.

- readFields works seamlessly on-the-fly and as postprocessor
- new surfaceInterpolateFields to create interpolated field
- writeRegisteredObject only check upon writing, not upon startup
- add min,max to faceSource
This commit is contained in:
mattijs
2010-04-12 17:04:40 +01:00
parent f1e7cae646
commit 9bf63117ae
17 changed files with 668 additions and 83 deletions

View File

@ -45,13 +45,14 @@ namespace Foam
fieldValues::cellSource::sourceTypeNames_;
template<>
const char* NamedEnum<fieldValues::cellSource::operationType, 5>::
const char* NamedEnum<fieldValues::cellSource::operationType, 7>::
names[] =
{
"none", "sum", "volAverage", "volIntegrate", "weightedAverage"
"none", "sum", "volAverage",
"volIntegrate", "weightedAverage", "min", "max"
};
const NamedEnum<fieldValues::cellSource::operationType, 5>
const NamedEnum<fieldValues::cellSource::operationType, 7>
fieldValues::cellSource::operationTypeNames_;
}