|
[Sponsors] |
areaAverage sampledSurface - what does it do exactly? |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
August 22, 2019, 14:12 |
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. |
|
August 23, 2019, 05:11 |
|
#2 |
Member
Hosein
Join Date: Nov 2011
Location: Germany
Posts: 94
Rep Power: 15 |
Hii there,
you may find it here "https://github.com/OpenFOAM/OpenFOAM-dev/blob/61c9bc2ee31289bc2a91a1fa60f075361fc8e61d/src/functionObjects/field/fieldValues/surfaceFieldValue/surfaceFieldValueTemplates.C" it is : Code:
const scalarField magSf(mag(Sf)); result = sum(magSf*values)/sum(magSf); |
|
August 23, 2019, 07:57 |
|
#3 | |
New Member
Join Date: Jan 2017
Posts: 24
Rep Power: 9 |
Quote:
Thanks for this! |
||
Tags |
area average, data, plane, sampling, surface |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
areaAverage sampledSurface - what does it do exactly? | er99 | OpenFOAM Post-Processing | 1 | September 5, 2019 11:54 |
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 |