|
[Sponsors] |
March 14, 2011, 11:04 |
Faces of a cell
|
#1 |
Senior Member
Andrea Ferrari
Join Date: Dec 2010
Posts: 319
Rep Power: 17 |
Hi all,
probably a very simple question. How can i access the faces of a particular cell? I would like to loop over all the cell and for every cell[i] over all the face. Thanks Andrea |
|
March 14, 2011, 11:20 |
|
#2 |
Senior Member
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,903
Rep Power: 37 |
Hi Andrea
You can get the information as: Code:
const labelListList & cellFaces = mesh.cellFaces(); Best regards, Niels |
|
March 14, 2011, 11:44 |
|
#3 |
Senior Member
Andrea Ferrari
Join Date: Dec 2010
Posts: 319
Rep Power: 17 |
Hi Niels,
thanks for the answer. I need to know the values of a variable (alpha1 using interFoam) belonging to the faces of a particular cell, and then loop for all the cell. Something like that: forAll(alpha1,celli) { alpha[celli] = sum(alpha[facei]*Sf[facei])/sum(Sf[facei]) } this does not work of course. I dont know where to put the loop on the correct faces belonging to the cell[i]. many thanks for any help andrea |
|
March 14, 2011, 12:00 |
|
#4 |
Senior Member
Bernhard
Join Date: Sep 2009
Location: Delft
Posts: 790
Rep Power: 22 |
Isn't fvc able to calculate what you want? I suppose fvc:div does something similar you what you want? I cannot give you the correct syntax though, but maybe someone else can help you out.
|
|
March 14, 2011, 12:25 |
|
#5 |
Senior Member
Andrea Ferrari
Join Date: Dec 2010
Posts: 319
Rep Power: 17 |
Hi,
basically a need to smooth alpha on every cell and i would like to do that by using alpha on the face times area divided by the total area. So i need to sum alpha on the 4 faces. The divergence is a difference between values on the faces divided by deltax and i dont know if is the same that i need. andrea |
|
March 14, 2011, 13:35 |
|
#6 |
Member
|
Hi Andrea,
Take a look at src/finiteVolume/finiteVolume/fvc/fvcSurfaceIntegrate.C and what they do is very similar to what you want. I also did the smoothed alpha1, but I did not include the boundary value at all. |
|
June 8, 2011, 10:56 |
|
#7 |
New Member
Paweł Kuczyński
Join Date: Feb 2011
Location: Warsaw, Poland
Posts: 19
Rep Power: 15 |
Dear forumers,
I decided to post my question inside this thread, as it is also somehow connected with looping over faces in a given cell. What I try to achieve is to get the face normal vector at every face in the cell, regardless it is a boundary cell or internal. I produced the following code...: Code:
const cell& faces = mesh_.cells()[cellI]; forAll( faces, i ) // loop over all faces in cellID { vector faceINormal = mesh_.Sf()[i] / mesh_.magSf()[i] ; Info << " i = " << i << ", faceINormal = " << faceINormal << endl ; }
__________________
Best regards P. Kuczynski. |
|
April 29, 2013, 12:36 |
|
#8 |
Senior Member
Anne Gerdes
Join Date: Aug 2010
Location: Hamburg
Posts: 168
Rep Power: 16 |
Hey,
have you solved your problem? I also would like to access the face normal vectors of internal faces.... Kind Regards Anne |
|
April 30, 2013, 03:23 |
|
#9 |
New Member
Paweł Kuczyński
Join Date: Feb 2011
Location: Warsaw, Poland
Posts: 19
Rep Power: 15 |
Yes, I solved the problem. The solution I got was correct. I.e. the components of normal vectors for an arbitrary cell can be in general of the same sign.
The reason for this are the normal vector direction rules. In OpenFoam mesh normal vectors: - at boundary faces point out of the domain - at internal faces they point from the cell of lower global ID number to higher. Hope this helps, Best regards, kuczmas.
__________________
Best regards P. Kuczynski. |
|
April 30, 2013, 08:16 |
|
#10 |
Senior Member
Lieven
Join Date: Dec 2011
Location: Leuven, Belgium
Posts: 299
Rep Power: 23 |
Just a small note, I think
Code:
vector faceINormal = mesh_.Sf()[i] / mesh_.magSf()[i]; Code:
vector faceINormal = mesh_.Sf()[faces[i]] / mesh_.magSf()[faces[i]] ; L |
|
April 30, 2013, 09:36 |
|
#11 |
Senior Member
Anne Gerdes
Join Date: Aug 2010
Location: Hamburg
Posts: 168
Rep Power: 16 |
Thank you for this hint. I will keep on trying.
Kind Regards Anne |
|
May 29, 2016, 20:25 |
|
#12 |
Senior Member
Thomas Oliveira
Join Date: Apr 2015
Posts: 114
Rep Power: 12 |
Dear Niels,
Could you please elaborate more on how to access the value of a surface<Type>Field given face label if the face is not internal? I manage to acess the boundary field but I can't find out how to obtain a certain value from it knowing the face label. Best regards, Thomas |
|
May 12, 2017, 19:04 |
|
#13 |
Member
Ashish Kumar
Join Date: Jun 2015
Posts: 33
Rep Power: 11 |
How to identify that a particular facelabel is internal or boundary?
I want to find out the face normal vectors irrespective of whether they are internal or at the boundary |
|
May 13, 2017, 04:59 |
|
#14 |
Senior Member
|
Hi,
@ashish.svm Guess, you have already tried: https://cpp.openfoam.org/v4/a02014.h...c7903e486776a8, and failed. Could you describe difficulties, which using this method? |
|
May 14, 2017, 01:57 |
|
#15 | |
Member
Ashish Kumar
Join Date: Jun 2015
Posts: 33
Rep Power: 11 |
Quote:
|
||
July 12, 2018, 02:22 |
|
#16 | |
Senior Member
krishna kant
Join Date: Feb 2016
Location: Hyderabad, India
Posts: 133
Rep Power: 10 |
Quote:
hi Niels, I am trying to get the cellFaces but it says FvMesh has no function defined as that. I am making a dual grid solver is that the reason why I am facing this problem. The error message shows as : error: ‘class Foam::fvMesh’ has no member named ‘cellFaces’ const labelListList& cellFaces = fluidRegions[0].cellFaces(); |
||
July 12, 2018, 04:16 |
|
#17 |
Senior Member
krishna kant
Join Date: Feb 2016
Location: Hyderabad, India
Posts: 133
Rep Power: 10 |
I am trying to run the same thing but I am getting unusual value for the normals at boundary. My code is:
Info<< "\nOUTPUT FOR FACE NORMAL OF COARSE MESH\n" << endl; forAll(fluidRegions[0].cells(), cellI) { const cell& faces = fluidRegions[0].cells()[cellI]; forAll( faces, i ) // loop over all faces in cellID { int k=faces[i]; vector faceINormal = fluidRegions[0].Sf()[k] / fluidRegions[0].magSf()[k] ; vector faceICenter = fluidRegions[0].Cf()[k]; Info << " k = " << k << " i = " << i << ", faceINormal = " << faceINormal << ", faceICenter = " << faceICenter << endl ; } } OUTPUT FOR FACE NORMAL OF COARSE MESH k = 0 i = 0, faceINormal = (1 0 0), faceICenter = (0.005 0.0025 0.0005) k = 1 i = 1, faceINormal = (0 1 0), faceICenter = (0.0025 0.005 0.0005) k = 6 i = 2, faceINormal = (-7.21083e+303 0 0), faceICenter = (0 0.0025 0.0005) which eventually leds to Floating Point Exception (core dumped) error. |
|
July 13, 2018, 09:20 |
|
#18 |
Senior Member
Thomas Oliveira
Join Date: Apr 2015
Posts: 114
Rep Power: 12 |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[snappyHexMesh] SnappyHexMesh - no layer added | bejbro | OpenFOAM Meshing & Mesh Conversion | 5 | February 1, 2020 21:05 |
DecomposePar unequal number of shared faces | maka | OpenFOAM Pre-Processing | 6 | August 12, 2010 10:01 |
[snappyHexMesh] external flow with snappyHexMesh | chelvistero | OpenFOAM Meshing & Mesh Conversion | 11 | January 15, 2010 20:43 |
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues | michele | OpenFOAM Meshing & Mesh Conversion | 2 | July 15, 2005 05:15 |
Warning 097- | AB | Siemens | 6 | November 15, 2004 05:41 |