|
[Sponsors] |
areaAverage sampledSurface - what does it do exactly? |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
August 22, 2019, 13:26 |
areaAverage sampledSurface - what does it do exactly?
|
#1 |
New Member
Join Date: Jan 2017
Posts: 24
Rep Power: 9 |
Hi all,
I have inherited a code which includes the following sampling lines below within the controlDict file. Does anyone know how the plane areaAverage operation works in OpenFOAM? What's the equation which describes this particular operation? Would really appreciate your help! Thanks in advance. Code:
{ type surfaceRegion; libs ("libfieldFunctionObjects.so"); enabled true; writeControl runTime; writeInterval 0.001; log false; writeFields false; writeArea false; surfaceFormat none; regionType sampledSurface; name Mean; sampledSurfaceDict { type plane; basePoint (0.1524 0 0); normalVector (1 0 0); } operation areaAverage; fields ( rho ); } Last edited by er99; August 22, 2019 at 16:32. |
|
September 5, 2019, 11:54 |
|
#2 |
Member
Join Date: Sep 2018
Posts: 53
Rep Power: 8 |
Hi, the areaAverage operation is defined in (for OpenFOAM 6):
src/functionObjects/field/fieldValues/surfaceFieldValue/surfaceFieldValueTemplates.C Here's the piece of code for areaAverage: Code:
case opAreaAverage: { const scalarField magSf(mag(Sf)); result = sum(magSf*values)/sum(magSf); break; } |
|
Tags |
area average, data, plane, sampling, surface |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[swak4Foam][DyM] "Fatal Error: incorrect size" while regenerating sampledSurface | floquation | OpenFOAM Running, Solving & CFD | 1 | October 1, 2019 14:08 |
weightedAreaAverage for sampledSurface | Flou | OpenFOAM Post-Processing | 1 | August 27, 2018 12:26 |
areaAverage pressure along streamwise direction | canopus | OpenFOAM Post-Processing | 1 | March 28, 2016 17:13 |
[swak4Foam] different values between swakExpression & faceSource areaAverage | Paebin | OpenFOAM Community Contributions | 7 | December 23, 2015 12:29 |
areaAverage of arbitary plane | LilumDaru | OpenFOAM Post-Processing | 0 | June 23, 2015 05:15 |