mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge remote-tracking branch 'origin/develop' into integration-foundation
This commit is contained in:
@ -324,7 +324,7 @@ protected:
|
||||
// Protected Member Functions
|
||||
|
||||
//- The volume mesh or surface registry being used
|
||||
const objectRegistry& obr() const override;
|
||||
const objectRegistry& obr() const;
|
||||
|
||||
//- Return the local list of face IDs
|
||||
inline const labelList& faceId() const;
|
||||
@ -471,10 +471,10 @@ public:
|
||||
inline fileName outputDir() const;
|
||||
|
||||
//- Read from dictionary
|
||||
virtual bool read(const dictionary& dict) override;
|
||||
virtual bool read(const dictionary& dict);
|
||||
|
||||
//- Calculate and write
|
||||
virtual bool write() override;
|
||||
virtual bool write();
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -255,10 +255,10 @@ public:
|
||||
// Public Member Functions
|
||||
|
||||
//- Read from dictionary
|
||||
virtual bool read(const dictionary& dict) override;
|
||||
virtual bool read(const dictionary& dict);
|
||||
|
||||
//- Calculate and write
|
||||
virtual bool write() override;
|
||||
virtual bool write();
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -58,6 +58,12 @@ Usage
|
||||
setFormat | Output format | yes |
|
||||
\endtable
|
||||
|
||||
Note
|
||||
If max is not provided it will use the field's min and max as the bin
|
||||
extremes. If max is provided but not min it will use 0. The set written
|
||||
contains two columns, the first the volume averaged values, the second
|
||||
the raw bin count.
|
||||
|
||||
See also
|
||||
Foam::functionObject
|
||||
Foam::functionObjects::fvMeshFunctionObject
|
||||
|
||||
Reference in New Issue
Block a user