mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: simple dataCloud function object (issue #1044)
- writes positions and a single field (eg, diameter) in plain ASCII files, suitable for importing in a spreadsheet or manipulation with scripting tools. - code integrated from https://develop.openfoam.com/Community/OpenFOAM-addOns
This commit is contained in:
@ -54,6 +54,7 @@ maxDeltaT 1;
|
||||
functions
|
||||
{
|
||||
#include "vtkCloud"
|
||||
// #include "dataCloud"
|
||||
#include "runTimePostProcessing"
|
||||
}
|
||||
|
||||
|
||||
@ -0,0 +1,13 @@
|
||||
// -*- C++ -*-
|
||||
// Minimal example of using the dataCloud function object.
|
||||
dataCloud
|
||||
{
|
||||
type dataCloud;
|
||||
libs ("liblagrangianFunctionObjects.so");
|
||||
log true;
|
||||
|
||||
cloud coalCloud1;
|
||||
field d;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user