mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'develop-pre-release' of develop.openfoam.com:Development/OpenFOAM-plus into develop-pre-release
This commit is contained in:
@ -53,6 +53,7 @@ functions
|
||||
{
|
||||
#include "sampling"
|
||||
// #include "samplingDebug"
|
||||
// #include "sampleCellCentres"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,34 @@
|
||||
// -*- C++ -*-
|
||||
|
||||
sampleSets
|
||||
{
|
||||
type sets;
|
||||
libs ("libsampling.so");
|
||||
log on;
|
||||
enabled true;
|
||||
|
||||
writeControl timeStep;
|
||||
writeInterval 10;
|
||||
|
||||
setFormat vtk;
|
||||
setFormat csv;
|
||||
interpolationScheme cell;
|
||||
|
||||
// fields ( U p );
|
||||
|
||||
fields ( U );
|
||||
|
||||
sets
|
||||
(
|
||||
centres
|
||||
{
|
||||
type cellCentre;
|
||||
// axis xyz; // default: xyz
|
||||
|
||||
// bounds (-0.2 -1 -1) (-0.195 0 1);
|
||||
bounds (-0.025 -1 -1) (-0.0225 0 1); // single cell layer
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user