|
[Sponsors] |
[mesh manipulation] Odd cyclic boundary... please help! |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
August 15, 2012, 10:32 |
Odd cyclic boundary... please help!
|
#1 |
Member
Jack
Join Date: Aug 2012
Posts: 47
Rep Power: 14 |
Hi,
I am having some trouble with an imported gmsh file for a simpleFoam run on a T106A aerofoil. I have included the velocity profile photo. The idea is that the geometry represents a turbine cascade, so the top and bottom both have cyclic boundaries imposed. I started by copying the aerofoil2d example then using my geometry by performing gmshToFoam and altering the files in 0 and the constant/polymesh/boundary. I use OF 2.1.1, and I changed the type of boundary to cyclic and used the matchNeighbour to associate the two together. I then in 0 set type to cyclic (without specifying any value) for U, p, nut, nuTilda. After calling simpleFoam I got the error saying the boundaries don't match by nearly 2% (although I know that not to be the case), so I increased matchTolerance appropriately. The sim runs and produces the attached profile. The flow angle is 45degs above horizontal. I expected the higher speed to continue onto the underside - however there is clearly not a match between the upper and lower surfaces. ________ It looks also as if little pockets of lower speed occur at the boundaries. and get pushed through the flow. I was wondering if most of my problems occur because when I create the mesh in gmsh, gmsh doesn't realise that I intend to use cyclic boundaries and so the points don't match up? Or if I haven't set the case up properly I have used a constant resolution throughout the space to try and minimise this. Any help would be greatly appreciated, thank you very much! Jack |
|
August 15, 2012, 11:08 |
|
#2 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Jack,
I see that you are using simpleFoam with cyclics. Solvers that use cyclics (like channelFoam) prescribe a body force to maintain flow. With simpleFoam, it will "die out" since it is used to model pressure driven flow. You will need to add a body force. Fortunately there is some help on the forum (http://www.cfd-online.com/Forums/ope...implefoam.html on post 9) but it was found that you have to use Upwind and lower your relaxation factors in order to maintain stability. As an alternative, you can use the mapped boundary condition (example in tutorials/pisoFoam/les/pitzDailyMapped). The difference in the cyclic and mapped is that the cyclic is two way coupled and will require a body force, while the mapped patch is one-way coupled and can be used to set an average velocity/flowrate. Hope this helps. |
|
August 15, 2012, 22:03 |
|
#3 |
Member
Jack
Join Date: Aug 2012
Posts: 47
Rep Power: 14 |
Hi Dan,
Thanks - although this wasn't the problem. It was more a logistical problem with unordered faces (I am new to OF). The channel example uses a PG to drive the flow, in my above example the cyclic directions are not in the direction of the flow, so the flow is still driven by the the inflow. And the cyclics work fine now Ps. Anyone coming to this thread for problems on cyclics, I found my solution by: Creating a createPatchDict file in the system folder, via this syntax: https://unihub.ru/tools/ofservice/br...atchDict?rev=2 run createPatch Update files in 0/ to use the newly created patches. Hope this helps anyone struggling to use imported and/or unstructured meshes with cyclic bcs. |
|
August 16, 2012, 10:51 |
|
#4 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Excellent that you figured it out and it was simple...and better that you came back and answered your post!
|
|
August 20, 2012, 03:31 |
|
#5 | |
New Member
Thomas S
Join Date: Aug 2012
Posts: 11
Rep Power: 14 |
Quote:
Can you please post here the syntax for your createPatchDict? I am not able to open the link. Thank you! |
||
August 20, 2012, 21:12 |
|
#6 |
New Member
Thomas S
Join Date: Aug 2012
Posts: 11
Rep Power: 14 |
Here it is:
| ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 1.7.1 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object createPatchDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Tolerance used in matching faces. Absolute tolerance is span of // face times this factor. To load incorrectly matches meshes set this // to a higher value. matchTolerance 1E-3; // Do a synchronisation of coupled points after creation of any patches. // Note: this does not work with points that are on multiple coupled patches // with transformations. pointSync true; // Patches to create. patchInfo ( { name topAndBottom; dictionary { type patch; } constructFrom patches; patches ( auto0 auto2 ); } { name inlet; dictionary { type patch; } constructFrom patches; patches ( auto1 ); } { name outlet; dictionary { type patch; } constructFrom patches; patches ( auto3 ); } { name wing; dictionary { type wall; } constructFrom patches; patches ( auto4 ); } { name back; dictionary { type empty; } constructFrom patches; patches ( auto5 ); } { name front; dictionary { type empty; } constructFrom patches; patches ( auto6 ); } ); |
|
May 9, 2013, 23:49 |
|
#7 | |
Member
sqing
Join Date: Sep 2012
Location: Dalian
Posts: 77
Rep Power: 14 |
Quote:
May I know your inlet and outlet boundary conditions of your case? I'm also simulating a turbine cascade with the following BCs: inlet: fixed total pressure and total temperature outlet:fixed static pressure I'm not sure that I have set the P file correctly. So I want to know your bcs and how you set them. regards Sunxing |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Wind turbine simulation | Saturn | CFX | 60 | July 17, 2024 06:45 |
Centrifugal fan | j0hnny | CFX | 13 | October 1, 2019 14:55 |
Question about adaptive timestepping | Guille1811 | CFX | 25 | November 12, 2017 18:38 |
Problem in setting Boundary Condition | Madhatter92 | CFX | 12 | January 12, 2016 05:39 |
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues | michele | OpenFOAM Meshing & Mesh Conversion | 2 | July 15, 2005 05:15 |