Personal Notes - postProcessing
Posted June 23, 2018 at 00:15 by student666
Tags functions, post processing, sampling
OF 5.x-dev
Function to be added on controlDict, maybe there's a postProcess utility, but I haven't find any.
This is for sampling fields on surfaces as stl
Function to be added on controlDict, maybe there's a postProcess utility, but I haven't find any.
This is for sampling fields on surfaces as stl
Code:
pressureAverageOnTriSurface_left //name of the folder where .dat is saved
{
name left; //dumb entry ??
type surfaceFieldValue;
libs ("libfieldFunctionObjects.so");
writeControl timeStep;
writeInterval 1;
writeFields false; //write folder at each write interval
log true;
operation average; //banana
fields (p); //banana
regionType sampledSurface; //banana
surfaceFormat stl; //banana
sampledSurfaceDict
{
type sampledTriSurfaceMesh;
surface left.stl;
source cells; //banana
interpolate true;
}
}
Total Comments 0



