|
[Sponsors] |
Cyclic boundaries importing Gambit msh file and interFoam |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
September 6, 2008, 17:00 |
Hello everyone,
First of al
|
#1 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Hello everyone,
First of all, these should be quick questions for a few of you. 1. I'm trying to import a mesh file created in gambit, exported to .msh format and imported into OF-1.4.1-dev using the fluentMeshToFoam utility. Once imported there are a few boundaries with the "_shadow" attached to the end of them. How do I handle them in OF? Right now I have a cyclic boundary called "cyclic" and a shadow bc called "cyclic_shadow". I have them both defined as cyclic base types...is this correct? Does a cyclic BC need a defined value (Uniform/nonuniform?)? 2. I would like to run a case using interFoam with periodic BC's. In order to properly handle pressure do i need to do something similar to channelOodles with creategradP and writeGradP? Will the (VOF method) interfoam solver handle this? Thanks for your help in advance. Dan |
|
September 19, 2008, 14:53 |
Just thought I would respond t
|
#2 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Just thought I would respond to my own post with the solution.
1. If you are using Gambit and want periodic boundaries, just link the two sides (its in the manual), mesh the object, and then define a single bc as those two faces (3d)/edges (2d) as a type "wall". After you import the mesh then go to your constant/polyMesh/boundary file and change the boundary type of your cyclic boundary to type "cyclic". If you define your initial bc's correctly it should work. 2. The short answer to this is yes, you will need to use create and writeGradP, but I am currently having problems passing gamma to the other side of my cyclic boundary. Just thougth this might help someone trying to use gambit and make a domain with cyclic boundaries. Dan |
|
November 24, 2010, 22:18 |
Interfoam across cyclic boundary
|
#3 | |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Quote:
I messed with this last year in OF solely because I was told I would spend my life trying to get Fluent to do this properly (thankfully for that comment my advisor has switched completely to OF since). I was able to get cyclic boundaries to work with interFoam and rasInterFoam. I remember that the problem was with the fact that gravity was lumped into the pressure term and when the liquid drop fell through the bottom and was supposed to come back through the top...the liquid drop just stopped and hung in mid air with small pieces showing at the top of the domain. it was actually pretty funny to see. The solution was to add rho*g to the rhs of the momentum equation (pd = P - rho g z. i.e. the reduced pressure is not periodic, but the absolute pressure. interFoam solves pd, not P) (in addition to all the changes to make it similar to channelOodles). The main bit of code that was really a simple change in UEqn.H was: Code:
fvVectorMatrix UEqn ( fvm::ddt(rho, U) + fvm::div(rhoPhi, U) - fvm::laplacian(muf, U) - (fvc::grad(U) & fvc::grad(muf)) //- fvc::div(muf*(fvc::interpolate(dev(fvc::grad(U))) & mesh.Sf())) == rho*g //added to pull gravity out of pressure term + flowDirection*gradP //added for channel flow ); UEqn.relax(); Lastly, one thing that i noticed was that as I dropped a liquid drop and it traveled through the domain boundaries and appeared again on the top...it kept speeding up. I am pretty sure this was because there was no drag term in the momentum equation...something that I know for the case of the rising bubble has been studied for a while. There are numerous threads on that topic. Anyway, long answer for a simple question...yes its possible to do this in OF. |
||
November 25, 2010, 05:36 |
|
#4 |
Senior Member
Robert Sawko
Join Date: Mar 2009
Posts: 117
Rep Power: 22 |
Thanks for pointing me to this post and also for keeping it up to date. I have an implementation in Fluent for channel where I correct momentum, pressure and phase fraction. This implementation doesn't work, when I turn on gravity. I guess it's due to the reasons you outlined above, but with Fluent I have little chance of investigating the origin of the problem. Your post sounds very encouraging so I'll try to rewrite it to interFoam.
|
|
February 14, 2012, 10:28 |
Cyclic boundary in interFoam
|
#5 |
New Member
Join Date: May 2011
Posts: 15
Rep Power: 15 |
hello chegdan,
I'm arriving 2 years after the discussion but I hope somebody is still watching ! As many others, I'm trying to modify the interfoam solver to an Inter-Cyclic-OpenChannel-Foam one. I model flow over bedform when water depth scale with bedform heigth. It is happenning on steep slopes in mountains river. Here, the gravity component in x-direction is the only energy source in the system. My idea to begin the simulation was to start with an initial volume of water at rest, that will move forward with the action of gravity and come to a steady (water depth/velocity/pressure) when the turbulent dissipation will compensate the gravity source. (see image below at the initial condition) I made the modification you suggested to deal with cyclic conditions for relative and absolute pressure adding the rho*g term. I didn't made the change to keep the flow rate constant (like channelOodle) as it is not constant in my case but going from zero (initial water at rest) to the limit discharge. However, it seems I still have a problem at the cyclic patch, water seems not to go freely back to the input... Look at the images below : Alpha : Pressure : Velocity: Where do you think it is coming from ? Should I try to implement also the constant flow rate ? I guess the bubble case is a bit the same than mine for the transcient behavior ... Maybe I missed something when you said : "separate gravity from pd and add it back into the momentum equation" ... How can I separate the gravity from pd ? in which file ? Also "you need to read in the g field and value of rho" is not clear for me. simply adding rho*g in Ueqn.h is not enough ? Thanks very much ! Joris Last edited by joris.hey; February 14, 2012 at 12:11. |
|
February 15, 2012, 12:31 |
Solution...
|
#6 | |
New Member
Join Date: May 2011
Posts: 15
Rep Power: 15 |
Ok, I guess I found the solution...
In addition to add rho*g in the RHS of UEqn.h , I deleted the line: Quote:
Is it correct ? It seems to work at first look. Cheers, Jors |
||
February 15, 2012, 13:07 |
|
#7 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Joris,
I haven't been in this solver for a little while and its changed a little bit from 1.4.1-dev when I did some fiddling with interfoam. I did notice that they changed the algorithm a bit and now it uses the PIMPLE method (it seemed a little bit simpler a few versions of OF ago). So, with this...I am going to just say be careful when you make quick ad-hoc changes and I cannot confirm if what you did was correct. When you do find an answer, post back that it worked for others to see. |
|
February 15, 2012, 13:59 |
|
#8 |
New Member
Join Date: May 2011
Posts: 15
Rep Power: 15 |
hehe yeah maybe it is a bit violent what I did, but as I'm not really familliar with the FOAM coding...
Also I forgot to say that I changed your proposition Code:
fvVectorMatrix UEqn ( fvm::ddt(rho, U) + fvm::div(rhoPhi, U) - fvm::laplacian(muf, U) - (fvc::grad(U) & fvc::grad(muf)) //- fvc::div(muf*(fvc::interpolate(dev(fvc::grad(U))) & mesh.Sf())) == rho*g //added to pull gravity out of pressure term + flowDirection*gradP //added for channel flow ); UEqn.relax(); Code:
fvVectorMatrix UEqn ( fvm::ddt(rho, U) + fvm::div(rhoPhi, U) - fvm::laplacian(muf, U) - (fvc::grad(U) & fvc::grad(muf)) //- fvc::div(muf*(fvc::interpolate(dev(fvc::grad(U))) & mesh.Sf())) - rho*g //added to pull gravity out of pressure term + flowDirection*gradP //added for channel flow ); UEqn.relax(); I definitely not converge to a finite velocity, and after 10 sec waves developed on the free surface cause the celocity (and the froud number) becomes too high... This is maybe because I used a relatively coarse mesh and I should better use RANS or LES than laminar to model small scales dissipation... The problem with the flow I try to model is that in reality there is a strong dissipation due to the wall friction (the wall roughness is in the same order of magnitude as the flow depth) and it seems a bit strange to model it with a "flat" curved wall. I know that there exists some wall functions in OpenFOAM, I migth have to use it... Again, thanks for advices ! Joris |
|
February 17, 2012, 06:14 |
|
#9 |
New Member
Join Date: May 2011
Posts: 15
Rep Power: 15 |
Ok, here I post the results I got with what I did above. It seems nice.
Water: http://www.youtube.com/watch?v=wEjsM...B1BLS8joo24x_y Velocity: http://www.youtube.com/watch?v=Rr6aQkXUlh8&context=C3f6e459ADOEgsToPDskJj rSjp4uB1BLS8joo24x_y Thanks for helping joris |
|
June 26, 2016, 12:14 |
|
#10 | |
Member
Muhammad Usman
Join Date: Feb 2014
Posts: 91
Rep Power: 0 |
hi i got errors like
UEqn.H:5:23: error: ‘muf’ was not declared in this scope - fvm::laplacian(muf, U) ^ UEqn.H:11:11: error: ‘flowDirection’ was not declared in this scope + flowDirection*gradP ^ UEqn.H:11:25: error: ‘gradP’ was not declared in this scope + flowDirection*gradP ^ Please help he how to declare these variables Quote:
|
||
June 7, 2018, 08:19 |
interFoam cyclic boundaries with non-perfectly (9.8*angle) downward gravity accel.
|
#11 |
New Member
Kahlil Fredrick Cui
Join Date: Apr 2018
Posts: 29
Rep Power: 8 |
Hi guys!
I have come 6 years late to this post, and it sure would be a long shot if you can still see this. I'm also doing a cyclic boundary interfoam where my gravity is multiplied to an angle to simulate a slope. Fluid is already in my domain as initialized from setFields, and it would collapse on to a cyclic wall and would just collapse on itself over and over again.... well at least that's what I wanted it to do. I did the suggestions in this post about separating the gravity term and removing the -gh*fvc::snGrad(rho), and was even able to compile it correctly, but it still doesn't work. OF has made a lot of changes to interFoam since the time these answers were posted so I'm not sure if the results would still be the same My fluid simply disappears from the domain as if it passes through the bottom wall. I've checked the mesh and it seems to be fine. lowering the time step also doesn't work. If it would be of any help, my Ueqn is Code:
surfaceScalarField muEff ( "muEff", mixture.muf() + fvc::interpolate(rho*turbulence->nut()) ); fvVectorMatrix UEqn ( fvm::ddt(rho, U) + fvm::div(rhoPhi, U) - fvm::laplacian(muEff, U) - (fvc::grad(U) & fvc::grad(muEff))//- fvc::div(muf*(fvc::interpolate(dev(fvc::grad(U))) & mesh.Sf())) == rho*g //added to pull gravity out of pressure term ); UEqn.relax(); fvOptions.constrain(UEqn); if (pimple.momentumPredictor()) { solve ( UEqn == fvc::reconstruct ( ( mixture.surfaceTensionForce() - fvc::snGrad(p_rgh) ) * mesh.magSf() ) ); fvOptions.correct(U); } fvVectorMatrix UEqn ( Thank you in advance, and I really do hope you can help me with this. |
|
June 8, 2018, 03:52 |
|
#12 |
New Member
Kahlil Fredrick Cui
Join Date: Apr 2018
Posts: 29
Rep Power: 8 |
Hello again!
After a bit of code editing, the solution to my problem was provided in the codes in the final panels of this thread: interFoam and cyclic boundary condition issue interfoam has undergone quite a number of revisions since this solution was presented, but making it work is fairly manageable. |
|
October 11, 2018, 05:47 |
|
#13 | |
New Member
Jakob Hærvig
Join Date: Sep 2012
Location: Aalborg, Denmark
Posts: 27
Rep Power: 14 |
Hello foamers,
I tried to implement the modifications into the recent interFoam solver provided with OpenFOAM6 (attached). When I simulate a simple bubble rising in a stagnant fluid in a cyclic domain I see strange behaviour in the pressure field when the bubble passes the cyclic boundary. Does anyone know more specifically how to fix this issue? I have attached the simple test case I am running. Best regards, Jakob Quote:
|
||
October 11, 2018, 06:03 |
|
#14 | |
New Member
Jakob Hærvig
Join Date: Sep 2012
Location: Aalborg, Denmark
Posts: 27
Rep Power: 14 |
The problem almost solved itself. I forgot to comment out line 35 in pEqn.H:
Code:
- ghf*fvc::snGrad(rho) Best regards, Jakob Quote:
|
||
January 29, 2020, 16:18 |
|
#15 | |
Senior Member
Join Date: Jul 2019
Posts: 148
Rep Power: 7 |
Quote:
Hi hrvig, Thanks for sharing the solver. I am wondering if the original interFoam solver you edited was from version 6 (OpenFOAM v6). I am having similar issue. In a simple 2D vertical channel flow, with one fluid initially filling the channel and the second fluid is pumped from below. The results are correct except for the outlet boundary, where the fluids just exit from a small potion of the outlet face (I do not use cyclic boundary condition, I have totalPressure for P_rgh, pressureInletOutletVelocity for U and zeroGradiant/inletOutlet for the phase). I have tried to mimic the edits as you have done. It fixed the outlet issue, however, it created other issues in the computational domain. I would greatly appreciate any assistance. |
||
January 29, 2020, 19:08 |
|
#16 | |
Senior Member
Join Date: Jul 2019
Posts: 148
Rep Power: 7 |
Quote:
Hi, I got the same error message: (‘flowDirection’ was not declared in this scope) (‘gradp’ was not declared in this scope) I am wondering if you figured out the way to do that properly. Would appreciate your response. Thanks |
||
February 14, 2023, 04:56 |
|
#17 | |
New Member
Neshat
Join Date: Feb 2017
Posts: 6
Rep Power: 9 |
Quote:
Did you finally apply the LES model? Would you please let me know which wallFunction did you use for the bottom of your bed form? Thanks in advance Neshat |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Importing Mesh file to Gambit | Sri | FLUENT | 0 | February 28, 2007 11:26 |
Importing iges file Gambit error | piyush | FLUENT | 2 | April 28, 2006 09:42 |
Importing a *.dxf file in Gambit | Tudor | FLUENT | 1 | April 11, 2005 14:13 |
importing solidworks2003 file to gambit 1.2 | utku | FLUENT | 3 | June 3, 2004 05:13 |
Importing Acis file to gambit | Habib | FLUENT | 5 | June 25, 2001 06:19 |