|
[Sponsors] |
April 16, 2010, 10:00 |
Particles are not hitting the wall
|
#1 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
There is a bug in simulations with lagrangian particles (basicKinematicParcels in a kinematicCloud) using wall interactions in OpenFOAM 1.6.x. I have defined in kinematicCloudProperties that particles hitting the wall, should stick to it:
Code:
StandardWallInteractionCoeffs { type stick; }
I am using particles with a diameter of 9e-6 which is much smaller as my grid size, so it is conform with the assumptions of OpenFOAM. I have done a simulation without flow and only gravity working on the particles (which I set to (0 -1000 0) to speed it up). I injected the particles somewhere and let them fall to a bottom wall. A video of my simulation is seen here: http://nl.tinypic.com/player.php?v=qp2auu&s=5 Instead of hitting the wall, the particles float above it with a distance of 9.4955e-06. This distance is bigger than the particle diameter, so it is not the distance from wall to particle centre. The U is also not becoming (0 0 0), but has a value that is much bigger which means that U = vector::zero is not called. You can also see in the video that the particles behave strangely when hitting the bottom, the particles are grouping together. This is not a bug in the post processing software as these results are the same in Paraview and TecPlot. I have attached my case with this post. Last edited by CedricVH; April 16, 2010 at 10:32. |
|
April 16, 2010, 15:09 |
|
#2 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
which code are you using?
|
|
April 16, 2010, 16:12 |
|
#3 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
I have made a custom solver (pimpleLagrangianFoam), but it happens with every solver that implements kinematicCloud, such as rhoPisoTwinParcelFoam.
|
|
April 20, 2010, 03:13 |
|
#4 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
If I cant reproduce the result, its gonna be hard to fix it.
Can you send me the code (rhoPisoTwinParcelFoam is new to me, which version of foam is that in?) niklas dot nordin at nequam dot se N |
|
April 20, 2010, 09:10 |
|
#5 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
rhoPisoTwinParcelFoam is in OpenFOAM 1.6.x, but it is not in the src directory. You can find the solver in tutorials/lagrangian/rhoPisoTwinParcelFoam. Before you can use it, you have to compile it with wmake.
In the same directory, you have the case simplifiedSiwek. Open the file constant kinematicCloud1Properties and change the StandardWallInteractionCoeffs from rebound to stick. Then just run rhoPisoTwinParcelFoam on this case. At the last time step, most particles should be stuck to the bottom wall (Y=0). However, when you check the timestep/lagrangian/kinematicCloud1 folder, you can see that their Y value is a little bit bigger than 0 and that their U vector is not (0 0 0) as you should expect. |
|
April 21, 2010, 06:02 |
|
#6 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
When doing a git pull today, I saw that the developers had made a change in the surfaceInterpolation.C file and I was already hoping that this would have solved my problem
However, this is not the case (and yes, I have recompiled everything) Is there anyone able to reproduce this problem with the testcase of the rhoPisoTwinParcelFoam solver? You should first update your OpenFOAM 1.6.x installation with git pull to make this solver work correctly (bugreport of Alberto Passalacqua). |
|
April 21, 2010, 06:06 |
|
#7 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
open
src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcel.C and find the line that reads Code:
dt *= p.trackToFace(p.position() + dt*U_, td); Code:
if (mag(U_) > VSMALL) { dt *= p.trackToFace(p.position() + dt*U_, td); } Code:
vector Unew = Ures.value(); label facei = this->face(); if (facei != -1) { bool internalFace = this->cloud_.internalFace(facei); if (!internalFace) { label patchi = this->patch(facei); const polyPatch& patch = mesh.boundaryMesh()[patchi]; bool keep = true; td.cloud().patchInteraction().correct(patch, facei, keep, Unew); } } The first modification is because when you set the particle velocity to zero on the face. At the next trackToFace it will not move, but it will reach its end position, and this will make the algorithm believe that it has left the face and no longer belong to it. the second modification is just to make sure that the forces acting on the particle does not move it, but keeps it there. |
|
April 21, 2010, 07:35 |
|
#8 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
Wow, thank you very much Niklas! It works perfectly!
As a super moderator, do you have any contacts with OpenCFD? It would be nice if this bugfix could be implemented in the offcial git version of OpenFOAM 1.6.x! |
|
April 21, 2010, 07:47 |
|
#9 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
Great.
Im sure Graham will see this when he gets back from his course and come up with a better solution Im not 100% sure how the addition of td.cloud().patchInteraction().correct(patch, facei, keep, Unew); in calcVelocity will influence particles that just bounce on the wall (if it will do the interaction twice) in which case another solution has to be implemented, but that requires interactionType knowledge from outside the wallInteraction class, so I'd wait for an official fix. |
|
April 28, 2010, 06:22 |
|
#10 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
I don't think that the second part of your code works properly as facei always stays -1. When I run a case and a particle hits the wall, it is not associated with a boundary face.
When I call this code on a cloud: Code:
forAllConstIter(passiveParticleCloud, aCertainCloud, iter) { label partPatch = iter().patch(iter().face()); Info << "Particle position: " << iter().position() << endl; Info << "Particle face: " << iter().face() << endl; Info << "Particle patch: " << partPatch << endl; } Code:
Particle position: (0.0227693 4.5e-06 0.05) Particle face: -1 Particle patch: -1 Particle position: (0.0388337 4.5e-06 0.05) Particle face: -1 Particle patch: -1 ... I think that these functions work with the particle centre and do not take it's size into account. Maybe a fix in the official git release? |
|
April 28, 2010, 07:46 |
|
#11 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
did you do a restart in ascii mode?
ascii mode does not write face info, so a restart removes particles from faces. |
|
April 28, 2010, 07:50 |
|
#12 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
I don't know what you mean. I just started the case from scratch. The writeFormat in my controlDict file is set to ascii, but I don't know if that has anything to do with it.
|
|
April 28, 2010, 07:58 |
|
#13 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
ok. so that isnt the problem then.
It's always good to run lagrangian simulations in binary mode. Then I dont know what's goinf on and I cant really say whats wrong (if anything) since I dont know where in the code you print statements are. If you put an info statement inside the if (facei != -1) { does it write something then? |
|
April 28, 2010, 08:08 |
|
#14 |
Member
Cedric Van Holsbeke
Join Date: Dec 2009
Location: Belgium
Posts: 81
Rep Power: 16 |
The code I posted was in a very simple (and not very correct) functionObject. However, changing the writeFormat in my controlDict file to binary solved the problem!
This is a very strange behaviour and it should be warned for. It's not correct that changing the output format gives different results. Thank you very much for your help! I really appreciate it! |
|
April 28, 2010, 08:39 |
|
#15 |
Super Moderator
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29 |
I agree that it can appear as strange behaviour.
The reason facei (if I remember correctly) is not passed on in ascii mode is because if you save it in ascii, you have a finite representation of the position. and this is equivalent of moving it. It can therefore be abit dangerous to do restarts when you have lagrangian data, since the position that was written no longer have to be inside the cell (or on a face). |
|
May 10, 2010, 08:00 |
|
#16 | |
New Member
Graham Macpherson
Join Date: Mar 2009
Posts: 8
Rep Power: 17 |
Quote:
Andy has put a fix for this into our internal development version of the particle tracking, but it isn't backwards compatible with current cases. Therefore, this fix will come out with the next release. Thanks for reporting it, best regards, Graham |
||
May 7, 2014, 07:58 |
|
#17 |
New Member
Giulio
Join Date: Apr 2014
Location: Milano
Posts: 17
Rep Power: 12 |
Hi, I'm having similar problems running icoUncoupledKinematicParcelFoam on version 2.3.
the case is a water inpinjment study for a 3d wing: when I run the lagrangian tracking I get a certain number of unactive particles, but when I look at the positions file most of them seem to be stuck in a cell which not own a boundary face. I've tried to change mesh refinement, I switched off wall function and change integration time step but nothing worked. Giulio |
|
June 22, 2014, 14:06 |
|
#18 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Greetings Giulio,
For some reason I've had your post on my to-do list, to keep in mind to have a look into this as soon as I could... probably because I was curious... Problem is that the description you've given isn't enough for me to try and replicate this issue with one of OpenFOAM's tutorials, nor am I able to assess if this was a bug that has already been solved in OpenFOAM 2.3.x or not. Therefore, can you provide more information on how to reproduce the same error you're getting? Or at least an example case where this issue can be reproduced? Best regards, Bruno
__________________
|
|
June 24, 2014, 04:29 |
|
#19 |
New Member
Giulio
Join Date: Apr 2014
Location: Milano
Posts: 17
Rep Power: 12 |
Dear Bruno,
here I attach 2 picture showing the problem, the first picture is the visualization of the particles after the simulation run, you can see that at the leading edge of the wing the distribution in homogeneous. The second instead is showing you the problem: I wrote a simple routine which reads which particles is active and which is not, then it takes the label of the cell from the positions file and compare that label with those enlisted in the owner file, starting from line = NInternalFaces, so I will find the label of the boundary cell where my particle is stuck. This produces an inhomogeneous distribution which is not correct. So at the end it turns out that some particles are considered unactive but their position is not near the wall (I verified this by reading and jumping from file to file) This seems to be a problem related to the 3D case, because in our 2D simulation all worked fine Sorry, I'm not working on this anymore, so I've to search and try to figure out where I saved all the data on my hard drive if you need meshes or dictionaries I used. Best regards, Giulio
__________________
Giulio Gori Phd candidate, Politecnico di Milano |
|
June 28, 2014, 15:08 |
|
#20 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Giulio,
Thanks for the feedback! Well, from your description and images, I can try to create a case to attempt and reproduce the same issue. But if my guess is correct, this is one of those hard cases to reproduce the same error. My guess is that the particles that were deactivated got welded into their location because of two possible scenarios:
If not, I'll try to reproduce this sometime in August. Best regards, Bruno
__________________
|
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Commercial meshers] Fluent3DMeshToFoam | simvun | OpenFOAM Meshing & Mesh Conversion | 50 | January 19, 2020 16:33 |
Particles do not hit the wall | CedricVH | OpenFOAM | 0 | April 15, 2010 09:21 |
Errors running allwmake in OpenFOAM141dev with WM_COMPILE_OPTION%3ddebug | unoder | OpenFOAM Installation | 11 | January 30, 2008 21:30 |
Multicomponent fluid | Andrea | CFX | 2 | October 11, 2004 06:12 |
Near wall particles | Staffan | FLUENT | 2 | October 2, 2000 09:47 |