|
[Sponsors] |
Averaging due to parallel running - cuttingPlane |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
December 8, 2010, 08:42 |
Averaging due to parallel running - cuttingPlane
|
#1 |
Member
Tobias Holzinger
Join Date: Mar 2009
Location: Munich, Germany
Posts: 46
Rep Power: 17 |
Dear All,
I am actually implementing a boundary condition that accesses some Field values like p, U, rho from cutting planes inside the mesh. As only the average of the cut Field is of interest, I have to create some kind of weighting factor for each processor part. So far the Code looks like this: Code:
// Create the cutting Planes point planeLocation = planeLocations[planeI]; plane extPlane(planeLocation,orientPatch); cuttingPlane cuttedPlane(extPlane,this->dimensionedInternalField().mesh()); vector averageUPRho(0.0,0.0,0.0); scalar weigthPatch; // Compute the the cut of each processor if (cuttedPlane.cut()== 1) { averageUPRho.component(0)= (average(cuttedPlane.sample(Ufield)) & orientPatch); // The mean Velocity in normal Direction averageUPRho.component(1)= average(cuttedPlane.sample(pfield));// The mean Pressure averageUPRho.component(2)=average(cuttedPlane.sample(rhofield));// The mean Density weigthPatch= cuttedPlane.size(); // The weighting factor } else { weigthPatch=0; } rhoMean=sum(averageUPRho*weigthPatch)/sum(weigthPatch); unfortunately I weight by the number of faces and not by their Area (magSf for patches works ... not for planes?). How can I acces them?? Any hints? |
|
December 8, 2010, 11:35 |
|
#2 |
Senior Member
Laurence R. McGlashan
Join Date: Mar 2009
Posts: 370
Rep Power: 23 |
I notice that sampledPlane inherits from sampledSurface and cuttingPlane. sampledSurface has an area() function. Would that help you? Could you create a sampledPlane from your plane?
__________________
Laurence R. McGlashan :: Website |
|
December 8, 2010, 11:54 |
|
#3 |
Member
Tobias Holzinger
Join Date: Mar 2009
Location: Munich, Germany
Posts: 46
Rep Power: 17 |
It worked...
just adding / editing 2 lines... Code:
... cuttingPlane cuttedPlane(extPlane,this->dimensionedInternalField().mesh()); sampledPlane smpPl("smpPl",this->dimensionedInternalField().mesh(),extPlane); .... averageUPRho.component(2)=average(cuttedPlane.sample(rhofield)); weigthPlane= sum(smpPl.magSf()); } ... Last edited by woody; December 8, 2010 at 12:19. |
|
December 8, 2010, 12:58 |
|
#4 |
Senior Member
Laurence R. McGlashan
Join Date: Mar 2009
Posts: 370
Rep Power: 23 |
You can replace weightPlane with smpPI.area()
Also because samplePlane inherits from cuttingPlane, you probably don't need cuttedPlane and can just use smpPI?
__________________
Laurence R. McGlashan :: Website |
|
December 9, 2010, 04:33 |
|
#5 | |
Member
Tobias Holzinger
Join Date: Mar 2009
Location: Munich, Germany
Posts: 46
Rep Power: 17 |
Hi Laurence,
Thanks for the reply... area() unfortunately passes the total plane magnitude, not only the part a processor contains .... Quote:
Thanks so far... |
||
Tags |
area, averaging, cuttingplane, parallel processing |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Running decomposePar / reconstructPar as parallel apps? | carcass | OpenFOAM Running, Solving & CFD | 3 | January 17, 2024 08:19 |
Segmentation fault when running dieselFoam or dieselEngineFoam in parallel | francesco | OpenFOAM Bugs | 4 | May 2, 2017 22:59 |
Issue with running in parallel on multiple nodes | daveatstyacht | OpenFOAM | 7 | August 31, 2010 18:16 |
Error while running in PARALLEL | Ravi Duggirala | FLUENT | 4 | August 3, 2010 11:01 |
Parallel CFD Conference Abstracts Due Feb 5th | Pat Fox | Main CFD Forum | 1 | January 21, 1999 15:01 |