mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
opened up function obect interface
This commit is contained in:
@ -175,9 +175,8 @@ public:
|
||||
);
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
virtual ~probes();
|
||||
//- Destructor
|
||||
virtual ~probes();
|
||||
|
||||
|
||||
// Member Functions
|
||||
@ -188,6 +187,18 @@ public:
|
||||
return name_;
|
||||
}
|
||||
|
||||
//- Return names of fields to probe
|
||||
virtual const wordList& fieldNames() const
|
||||
{
|
||||
return fieldNames_;
|
||||
}
|
||||
|
||||
//- Return locations to probe
|
||||
virtual const vectorField& probeLocations() const
|
||||
{
|
||||
return probeLocations_;
|
||||
}
|
||||
|
||||
//- Cells to be probed (obtained from the locations)
|
||||
const labelList& cells() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user