mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: add probes sampleOnExecute option (#2358)
- supports sampling/probing of values to obtain min/max/average/size at execution intervals without writing any output or generating output directories. - 'verbose' option for additional output
This commit is contained in:
@ -36,46 +36,40 @@ Volume3_v_fins
|
||||
|
||||
probesFins
|
||||
{
|
||||
type probes;
|
||||
type probes;
|
||||
libs (sampling);
|
||||
writeControl timeStep;
|
||||
writeInterval 1;
|
||||
interpolationScheme cell;
|
||||
region v_fins;
|
||||
setFormat raw;
|
||||
log true;
|
||||
valueOutput false;
|
||||
writeFields false;
|
||||
region v_fins;
|
||||
|
||||
fields ( T );
|
||||
|
||||
probeLocations
|
||||
(
|
||||
(0.118 0.01 -0.125)
|
||||
(0.118 0.03 -0.125)
|
||||
);
|
||||
|
||||
fields ( T );
|
||||
}
|
||||
|
||||
probesFluid
|
||||
{
|
||||
type probes;
|
||||
type probes;
|
||||
libs (sampling);
|
||||
writeControl timeStep;
|
||||
writeInterval 1;
|
||||
interpolationScheme cell;
|
||||
region domain0;
|
||||
setFormat raw;
|
||||
region domain0;
|
||||
log true;
|
||||
valueOutput false;
|
||||
writeFields false;
|
||||
verbose true;
|
||||
|
||||
fields (T U);
|
||||
|
||||
probeLocations
|
||||
(
|
||||
(0.118 0.035 -0.125)
|
||||
(0.118 0.07 -0.125)
|
||||
);
|
||||
|
||||
fields ( T U);
|
||||
}
|
||||
#remove (_volFieldValue _surfaceFieldValue)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user