|
[Sponsors] | |||||
|
|
|
#1 |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Hello,
Is there an accurate way to compute the surface area of a rising bubble as it deforms? I'm trying to compute the effective diameter using volume-surfaceArea ratio. I already computed the volume using (1-gamma[cellI])*mesh.V()[cellI]. Or is there an alternative way to compute the diameter? Thanks in advance. |
|
|
|
|
|
|
|
|
#2 |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Hi Foamers,
I'm still expecting a response on how to compute bubble surface area at the interface. I read on page 29 of OF2.1.1 programmer's guide that Sf() is the access function for face area vector so I called the area of each mesh using mesh.sf()[cellI] but it won't even compile. Below is what I tried even though I should use an averaged value between 0<alpha1<1 of neighboring cells instead of (1-alpha1) to represent the interface (I don't know how to do this either). (1-alpha1[cellI])*mesh.Sf()[cellI] Any suggestions on how to go about computing this area? Thanks. |
|
|
|
|
|
|
|
|
#3 |
|
Senior Member
Bernhard
Join Date: Sep 2009
Location: Delft
Posts: 513
Rep Power: 9 ![]() |
I am not sure if you can calculate this accurately with simple integration. Maybe by integration of (1-gamma)*gamma, which is only non-zero at the interface (assuming you use interFoam). Howver, you will still get a volume, and not an area. Maybe if you divide this by the average interface thickness you get an estimate.
An alternative procedure, is to store the gamma=0.5 isosurface, and calculate the surface area of such a system by some external tools (I could not tell you how, however). |
|
|
|
|
|
|
|
|
#4 |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Thanks. I'll give your idea a little more thought.
|
|
|
|
|
|
|
|
|
#5 | |
|
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 3,131
Rep Power: 30 ![]() ![]() |
Quote:
My proposal: let OpenFOAM calculate a sampledSurface on the iso-surface of 0.5 (or whatever threshold you think is appropriate) then sum up area of the faces in that sampledSurface. The easiest way to do this (I think, but I'm extremely biased on this topic) is with swak4Foam: there is even a demo-case (a variation of the capillaryRise-case) where this (calculation of the interface-area) is done
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request |
||
|
|
|
||
|
|
|
#6 | |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Quote:
|
||
|
|
|
||
|
|
|
#7 |
|
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 3,131
Rep Power: 30 ![]() ![]() |
Examples/other/capillaryRise
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request |
|
|
|
|
|
|
|
|
#8 |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Thanks. I saw this link you gave from your Talk:Tip Surface elevation in time discussion. I've searched but all the links I found won't open for some reason. Few of these links are given below. That's why I requested you to provide the working link to the case. Thanks.
http://openfoam-extend.hg.sourceforg.../capillaryRise http://openfoam-extend.hg.sourceforg...em/controlDict |
|
|
|
|
|
|
|
|
#9 | |
|
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 3,131
Rep Power: 30 ![]() ![]() |
Quote:
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request |
||
|
|
|
||
|
|
|
#10 |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Oh, I get. I thought you meant that it was located at an online page. I've seen the case in the swak4Foam download that I use. I'll follow it to compute the interfacial area. Thanks for your awesome work on swak4Foam.
On a side note, I already some ran cases that takes days to complete. Is there a way to do some post processing using this tool without having to rerun my cases? |
|
|
|
|
|
|
|
|
#11 | |
|
Member
Tayo
Join Date: Aug 2012
Location: Gainesville, FL
Posts: 76
Rep Power: 2 ![]() |
Quote:
Hi Bernard, I followed your advice to create an iso-surface with alpha=0.5 and used this to compute the surface area of the bubble. I did a little test run copying the additional code from system/controlDict file of your capillaryRise example and added to my 2D bubble test case but I have few questions here: 1) The surface area computed is quite large (3.32e-4) at 1st time step compared to (7.85e-5) obtained if you check with pi*R^2 as initialized. I used "area()" instead of your "area()/0.001" in my controlDict expression. I initialized with funkysetFields with radius of 0.005. This bring me to why you used "area/0.001" in the surface expression? My guess is you probably divided by the cellsize. I checked your blockmesh and the z-axis mesh width is 0.001. So I simply used "area()" instead. 2) How can I compute the volume in swak4Foam, do I simply use "volume()"? I want to compare with using (1-alpha[cellI])*mesh.V()[cellI]. 3) can I compute the bubble center velocity similarly? Thanks. libs ( "libOpenFOAM.so" // keeps paraFoam happy "libtwoPhaseInterfaceProperties.so" "libinterfaceProperties.so" "libsimpleSwakFunctionObjects.so" "libswakFunctionObjects.so" ); functions ( createInterface { type createSampledSurface; outputControl timeStep; outputInterval 1; surfaceName interface; surface { type isoSurface; isoField alpha1; isoValue 0.5; interpolate true; } surface { type swakExpression; valueType surface; surfaceName interface; verbose true; expression "area()/0.001"; accumulations ( sum ); ); Last edited by tayo; October 31, 2012 at 09:17. |
||
|
|
|
||
|
|
|
#12 | ||
|
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 3,131
Rep Power: 30 ![]() ![]() |
Quote:
About the discrepancy in size: no idea. Of course the isoSurface is naive about what you want to achive. So if in your simulation you have a bubble and a water surface then an iso-value of 0.5 will pick up the bubble AND the surface (that would explain the order-of-magnitude error). A bit creative playing around with the expressionField-functionObject might help here Quote:
That depends on how you define the bubble center. The iso-surface will only help you if you define it by the surface. If you define it by the volume something like "sum(pos()*vol()*(1-alpha1))/(sum(vol()*(1-alpha1)))" calculated on the internalField might be what you want
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request |
|||
|
|
|
|||
|
|
|
#13 |
|
Member
Mieszko Młody
Join Date: Mar 2009
Location: POLAND, USA
Posts: 94
Rep Power: 6 ![]() |
Hi
I am not sure if swak4FOAM is something I need, but I have a question which seems to be related to this thread. Do you know maybe how to extract isosurface of the field (e.g. field T, isosurface for T = 0) during runtime ? I would need it coordinate in my solver. Thanks ZM |
|
|
|
|
|
|
|
|
#14 | |
|
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 3,131
Rep Power: 30 ![]() ![]() |
Quote:
BTW: T is NOT the temperature, right? Because then that isosurface wouldn't exist anyway
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request |
||
|
|
|
||
|
|
|
#15 |
|
Member
Mieszko Młody
Join Date: Mar 2009
Location: POLAND, USA
Posts: 94
Rep Power: 6 ![]() |
Thanks for your replay.
T is just some random field. But I need to do this during runtime, in my solver, for farther calculations in my solver. Not just passively to write on disc ... Best |
|
|
|
|
|
|
|
|
#16 |
|
Assistant Moderator
Bernhard Gschaider
Join Date: Mar 2009
Posts: 3,131
Rep Power: 30 ![]() ![]() |
Then swak4Foam might be your thing. Have for instance a look in the swak-distribution at Examples/other/capillaryRise which calculates the properties of the surface. It is also possible to have these values feed back to boundary conditions etc (for details see the presentations that are linked from the swak-page in the Wiki). All this functionality is available in function-objects: the advantage is that you don't have to modify the solver (disadvantage is that you can only influence/measure at the end of a time-step. But functionality from swak can also be incorporated into a solver. But usually the functionObjects are sufficient)
__________________
Note: I don't use "Friend"-feature on this forum out of principle. Ah. And by the way: I'm not on Facebook either. So don't be offended if I don't accept your invitation/friend request |
|
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Water subcooled boiling | Attesz | CFX | 7 | January 5, 2013 03:32 |
| Rising bubble with interFoam | tayo | OpenFOAM | 14 | September 28, 2012 08:57 |
| Layers don't fully surround surface | EVBUCF | OpenFOAM Native Meshers: snappyHexMesh and Others | 14 | August 20, 2012 04:31 |
| Cross section and surface area factor | Fabiana | CFX | 0 | January 9, 2006 23:51 |
| CFX4.3 -build analysis form | Chie Min | CFX | 5 | July 12, 2001 23:19 |